Help & Support
Elevate Your Agents with AgentExchange Solutions
Have Questions?
Experience CMS Brand Create
- assets/
- references/
- SKILL.md
Create a Brand for the Brand Toolkit
Generates a Digital Experience brand — one brand.json file — from a user's
description, and writes it where the VS Code Brand Toolkit will discover it,
so the user can immediately load, edit, and preview the brand.
A brand is a single JSON object of design tokens: colors (colorScheme), a font
catalog and base font (fontFamily / baseFontFamily), size/spacing/border
scales, per-role typography, and buttonStyleGroup definitions. Most of it is
fixed structure with internal references; you create a brand by starting from a
known-good template and changing only the leaf values (colors, font choice,
border radius, base size) plus a unique name.
The Brand Toolkit owns everything downstream: it computes derived hover colors,
compiles the --tm-* CSS, and manages the active-brand config on Save. Your job
is just the brand.json.
Related: This skill creates a new brand definition. To apply an existing brand's voice, tone, and guidelines to generated content, use the
experience-cms-brand-applyskill instead.
Reference material
Read each reference when its step arrives — don't inline everything up front:
assets/brand-template.json— the known-good full brand to clone. This is your starting point for EVERY brand. Copy it, then change leaves.references/brand-anatomy.md— which fields are literals you should edit vs references you must leave intact; thecolorSchemeguide; the font catalog and which fonts actually render in the preview; the derived-colors rule. Read before editing values.references/disk-contract.md— exactly where the file goes (.digitalExperience/brands/<slug>.brand.json), the title→slug rule, and what the toolkit generates so you don't. Read before writing the file.
Interactive flow
Walk these steps in order. When you have an interactive user, ask before assuming and confirm the design back before writing; in a single-turn, headless, or CLI run with no user to answer, state the choices you inferred and write in the same run rather than waiting for a confirmation that cannot arrive (see Step 3). Steps 1–5 create the brand file and complete the task. After they finish, an optional post-completion action — opening the Brand Toolkit to preview/edit — is described in "After completion" below; it is not part of the required workflow.
Step 1: Gather the brand intent
Find out what the brand should feel like. If the user already gave a description ("a dark, premium fintech brand in deep purple"), extract from it; otherwise ask briefly for:
- Name — a short, human-readable brand name (becomes
sfdc_cms:title, must be unique in the project). If they don't offer one, propose one from the vibe. - Primary/brand color — the signature accent. Accept a hex, a named color, or
a description ("Salesforce blue", "warm coral"). Convert to a
#rrggbbhex. - Light or dark — does the page background read light or dark? This sets
rootandcontrast. - Personality (optional) — corners (sharp vs rounded), font feel (clean sans,
classic serif, techy mono), density. Map these to
borderRadius,fontFamilychoice, andbaseFontSize.
If a logo or image is provided, sample its dominant color for primaryAccent and
judge light/dark from its background. Keep it to a couple of questions — infer the
rest from the vibe and confirm in Step 3.
Step 2: Build the brand from the template
- Read
assets/brand-template.json— this is your base. Readreferences/brand-anatomy.mdso you know which leaves are safe to change. - Copy the template and override ONLY leaf values:
sfdc_cms:title→ the unique brand name.colorScheme.root/contrast→ per light or dark (e.g. light:#ffffff/#000000; dark: a dark bg /#ffffff).colorScheme.primaryAccent→ the brand color.colorScheme.primaryAccentContrast→ black or white, whichever is legible on the accent.colorScheme.neutral→ a mid gray that reads onroot.baseFontFamily(and, to match, thetypography.heading.*.fontFamilyentries) → a reference to a catalog key whose font actually renders in the preview (see the anatomy doc's font list).- Optional personality:
borderRadius.round.value,borderWeight.thin.value,baseFontSize.value,fontWeight.normal.
- Do NOT: add
*Derivedcolor keys, drop or rename any section/key, replace a{!$brand....}reference with a literal, or use a font name outside the renderable catalog. The structure must stay identical to the template. - Sanity-check contrast:
contrastonroot, andprimaryAccentContrastonprimaryAccent, must be legible. Prefer black/white for the contrast colors.
Step 3: Confirm the design (or, if headless, state it and proceed)
Assemble a compact summary of the concrete choices — name, the four or five hex colors (with a note on light/dark), the font, and any corner/size/weight tweaks. Then branch on whether a user can actually answer:
- Interactive run (a user can reply): show the summary and ask the user to confirm or adjust. Iterate here rather than after the file is on disk.
- Single-turn / headless / CLI / CI run (no user to confirm): do not pause for a confirmation that cannot arrive. State the choices you inferred and proceed straight to Step 4, writing the file in the same run.
When you can't tell which mode you're in, prefer stating your choices and proceeding over stalling — a written brand the user can adjust beats a hang.
Step 4: Write the brand file
Follow references/disk-contract.md:
- Derive
<slug>from the confirmed title using the exact slug rule in that doc. - Ensure
<workspaceRoot>/.digitalExperience/brands/exists. - If
<slug>.brand.jsonalready exists and this is a NEW brand, append the lowest free numeric suffix (_2,_3, …). - Write the brand object (unwrapped body, 2-space pretty-printed) to
<workspaceRoot>/.digitalExperience/brands/<slug>.brand.json. - Do NOT write the
.cssoractiveBrand.json— the toolkit generates those on Save.
Step 5: Validate the file
Run the verification checklist in references/disk-contract.md (valid JSON;
unwrapped body; present + unique sfdc_cms:title; slug matches title; no
hand-authored *Derived keys; fonts renderable).
After completion (optional): Open the Brand Toolkit to preview and edit
The numbered workflow above is complete once Step 5 passes — the brand file is the deliverable and stands on its own. This section is a separate, optional action, not a workflow step, and only applies inside VS Code. Opening the Brand Toolkit is just a convenience for previewing/editing. Skip it entirely (the brand is already done — just tell the user where the file was written) when any of these hold:
- The user isn't working in VS Code, or asked for the brand file only / "just create it" / "don't open anything" / a headless, scripted, or CI context.
- There's no
.digitalExperienceproject / VS Code workspace around the file (e.g. you wrote to a standalone folder outside a Salesforce DX project). - You can't tell you're in an interactive VS Code session (e.g. a plain CLI or
agent run with no desktop) — don't fire the launcher speculatively; a
vscode://deep link can otherwise cold-start or error out. When unsure, ask the user whether to open the Brand Toolkit rather than assuming.
Only when the user is in VS Code and wants to preview/edit, open the Brand Toolkit (Theme Preview) panel by running the terminal command that matches the user's operating system. All three open the SAME deep link — only the OS launcher differs; run exactly one (the one for the current OS):
- macOS:
open "vscode://salesforce.salesforcedx-vscode-ui-preview/open-brand-manager" - Linux:
xdg-open "vscode://salesforce.salesforcedx-vscode-ui-preview/open-brand-manager" - Windows (PowerShell):
Start-Process "vscode://salesforce.salesforcedx-vscode-ui-preview/open-brand-manager"
VS Code routes the link to the Live Preview (ui-preview) extension, which opens the Brand Toolkit panel. Then tell the user:
The Brand Toolkit is open in VS Code. Your new brand "
Related Skills
Salesforce
Extracts, retrieves, and applies CMS brand guidelines (voice, tone, style, colors, typography) to generated content. Use this skill ANY TIME a user request involves branding, brand voice, brand tone, brand guidelines, brand identity, brand styling, or app
Categories
Agentforce Content
Salesforce
Searches for and retrieves existing visual media (images, logos, icons, photos, graphics, banners, thumbnails, hero images, backgrounds) from sources such as Salesforce CMS, Data 360 or any other source. Use this skill ANY TIME a user request involves fin