Help us improve
Share bugs, ideas, or general feedback.
From bynder
Stand up, populate, and govern the Bynder Brand Guidelines module — sections, pages, content blocks, downloadables, embedded assets, and the publish/draft workflow. Covers IA principles for brand documentation, content patterns (do/don't, color, typography, voice), Bynder mechanics (block types, asset embeds, permissions), and the API for syncing guidelines with a code-based design system. Use this skill when setting up Brand Guidelines for the first time, restructuring an existing guideline set, syncing guidelines with a design-system source of truth, planning a brand launch / refresh in Bynder, or driving Brand Guidelines adoption as part of an optimization engagement.
npx claudepluginhub bpainter/composable-dxp-claude-marketplace --plugin bynderHow this skill is triggered — by the user, by Claude, or both
Slash command
/bynder:bynder-brand-guidelinesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill puts you in the role of someone who runs Brand Guidelines as a real product — structured, governable, in sync with the design system, and adopted by the people who need it. Default posture: Brand Guidelines is the front door for non-technical contributors, and a Bynder implementation that doesn't activate it is leaving most of the platform's value on the table.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
This skill puts you in the role of someone who runs Brand Guidelines as a real product — structured, governable, in sync with the design system, and adopted by the people who need it. Default posture: Brand Guidelines is the front door for non-technical contributors, and a Bynder implementation that doesn't activate it is leaving most of the platform's value on the table.
The Brand Guidelines module is a first-class Bynder surface, not a CMS knockoff. It has its own permission model, its own publish/draft state, its own URL surface, and direct embedding from the asset bank — meaning logos, color samples, photography examples, and downloadables stay automatically in sync with source-of-truth assets.
Pair with bynder-asset-model for the metaproperties that drive embedded-asset selection, bynder-permissions-workflow for who can edit guidelines vs. consume them, and bynder-portal-architect if multi-brand requires guideline-set duplication. For an optimization engagement where Brand Guidelines is under-utilized, route through bynder-optimization-audit first.
Most brand guidelines map to a recognizable structure:
1. Brand foundation
1.1 Mission, vision, values
1.2 Brand personality / voice
1.3 Audience
2. Logo and identity
2.1 Primary logo
2.2 Logo variations (mono, reversed, lockups)
2.3 Clear space and minimum size
2.4 Misuse (do/don't)
3. Color
3.1 Primary palette (with hex / RGB / CMYK / Pantone)
3.2 Secondary palette
3.3 Accessibility (WCAG combinations)
3.4 Application examples
4. Typography
4.1 Primary typeface (display + body)
4.2 Type scale and hierarchy
4.3 Web vs. print specifications
4.4 Web font licensing and download
5. Photography and imagery
5.1 Photography style and direction
5.2 Approved photographers / stock sources
5.3 Treatment (filters, crops, focal points)
5.4 Browse approved photography (embedded asset bank filter)
6. Voice and copy
6.1 Tone principles
6.2 Voice examples (do/don't)
6.3 Vocabulary preferences and forbidden words
6.4 Channel-specific voice (web, email, social)
7. Templates and downloads
7.1 Presentation templates
7.2 Email signature
7.3 Document templates
7.4 Brand asset bundles by channel
8. Governance
8.1 How to request brand approval
8.2 Who owns what
8.3 Update cadence
Adapt to client brand — but resist the urge to ship a 200-section monster. Brand teams want a guideline they can point partners at, not a textbook.
Bynder's structure:
Logo, Color, Typography).Primary Palette under Color).Build pages as block compositions. A Color > Primary Palette page is typically: heading text → swatch grid → usage notes text → accessibility note → downloadable swatch file (asset embed). That composition is reproducible and editable; a screenshot of the palette is not.
| Pattern | Block composition |
|---|---|
| Do/don't comparison | Two-column layout → image (embed) + heading "Do" / image + heading "Don't" |
| Color swatch grid | Color swatch blocks in a grid layout, with a downloadable below |
| Logo variations | Image embeds (from asset bank) with caption text + clear-space overlay note |
| Photography style | Filter-driven asset embed (shows current approved photography) + style notes |
| Template gallery | Asset cards (PowerPoint, Keynote, Google Slides templates) with download buttons |
| FAQ / governance | Accordion / collapsible text blocks |
The filter-driven asset embed is the killer feature. Set the embed to "show all assets where property_AssetCategory = Photography AND property_RightsStatus = Cleared" and the guideline auto-updates as the photography library evolves.
Brand Guidelines has its own permission model, separate from the asset bank.
Slalom default: gate reader access to authenticated users (employees, partners) unless the brand is intentionally public-facing. Limit editor access to the brand-ops team (3–5 people max). Use section-editor scopes for distributed brand teams.
Guidelines have a publish state independent of the asset bank.
Archive section, or a dated download bundle).Embedded assets stay live — when you swap an approved photograph in the asset bank, the guideline reflects it. Two embed modes:
property_AssetType = Logo AND property_Status = Approved). Good for photography galleries, evolving libraries.Use specific embeds for canonical assets (logo, primary color swatch) and filter embeds for living content (current photography, latest templates).
Block type that wraps an asset (or asset bundle / collection) with a download button. Track downloads in Analytics — high-traffic downloadables are leading indicators of guideline relevance.
The high-leverage move: keep color, type scale, and spacing values single-sourced.
Pattern:
// pseudo: nightly-sync-tokens.ts
import { tokens } from './design-tokens';
await bynderRequest('/brandguidelines/pages/{color-page-id}/blocks/', {
method: 'PUT',
body: JSON.stringify(
tokens.color.primary.map(c => ({
type: 'colorSwatch',
label: c.name,
hex: c.hex,
rgb: c.rgb,
cmyk: c.cmyk,
}))
),
});
Inverse pattern (use when the brand team owns tokens and the engineering team pulls):
Pick one direction per token category — colors might be Bynder-sourced, type scale code-sourced. What you cannot afford is "both". Pick a master.
See bynder-foundations.md and api-surface.md for the Brand Guidelines API endpoints.
# Brand Guidelines Structure: [Brand]
## Goals
[Audience, frequency of update, expected adoption surfaces.]
## Section / page outline
1. [Section name]
1.1 [Page name] — [block composition summary]
1.2 [Page name] — ...
2. [Section name]
...
## Embedded asset strategy
[Per page: specific embed vs. filter-driven; metaproperty filters used.]
## Permission plan
- Editors: [list]
- Section editors: [list with scopes]
- Readers: [authenticated org / public / partner]
## Sync-with-design-system plan
[Direction per token category: Bynder-sourced or code-sourced. Tooling.]
## Adoption levers
[Microsoft Teams / Slack search integration, email signature with guideline link, partner onboarding kit.]
## Update cadence
[Quarterly review, brand-refresh windows, ownership.]
bynder-portal-architect covers the multi-brand split.bynder-asset-model.bynder-permissions-workflow.bynder-portal-architect.bynder-js-sdk (with Brand Guidelines fallback to plain fetch since the SDK doesn't wrap Brand Guidelines yet).bynder-marketplace-connectors.../../references/bynder-foundations.md../../references/api-surface.md