brand

Manages brand voice, visual identity, and asset validation with design token synchronization.

Updated May 9, 2026
One-click install
npx skills add https://github.com/Aeonxuu/southtownslandservice_v2 --skill brand-aeonxuu
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: brand
Source: https://github.com/Aeonxuu/southtownslandservice_v2/tree/main/.claude/skills/brand
Command: npx skills add https://github.com/Aeonxuu/southtownslandservice_v2 --skill brand-aeonxuu

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Keeping brand voice, colors, typography, and marketing assets consistent across content and design systems requires manual cross-checking of guidelines, which leads to off-brand colors, wrong fonts, and inconsistent messaging. ## Core Features & Use Cases - Brand Context Injection: Extract colors, typography, voice traits, and image-generation prompts from brand-guidelines.md into a formatted prompt context or JSON. - Design Token Sync: Convert brand guideline colors into design-tokens.json and regenerate design-tokens.css with full color scales and semantic references. - Asset Validation: Check marketing assets against naming conventions, file size limits, formats, and manifest registration. - Use Case: After updating brand colors in docs/brand-guidelines.md, run the sync script to propagate the new palette into design tokens and CSS variables, then validate a new campaign banner before approval. ## Quick Start Ask the AI to update the brand theme to a new color palette and sync it to all design system files.

Frequently Asked Questions about brand

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I sync brand guidelines to design tokens?▼

Edit docs/brand-guidelines.md with your new colors, then run node scripts/sync-brand-to-tokens.cjs. It extracts hex values from the guideline tables, generates full color scales, updates design-tokens.json, and regenerates design-tokens.css.

How to validate marketing asset naming conventions?▼

Run node scripts/validate-asset.cjs with the asset path. It checks the filename against the {type}_{campaign}_{description}_{timestamp} pattern, verifies file size and format limits, and confirms the asset is registered in .assets/manifest.json.

Can I extract brand colors from an image file?▼

The extract-colors.cjs script loads your brand palette from the guidelines and generates an ImageMagick histogram command for the image. Extracted colors are compared against the palette using RGB distance to compute a compliance percentage.

What file format does the brand guidelines source use?▼

Brand guidelines are written in Markdown at docs/brand-guidelines.md, using structured tables for colors, typography, and voice traits. A starter template is provided in templates/brand-guidelines-starter.md with placeholder values.

Why does color extraction fail on my brand guidelines file?▼

Extraction fails when the guidelines file is missing at docs/brand-guidelines.md or when color tables lack six-digit hex codes. Ensure sections like Primary Colors and Secondary Colors contain hex values in table rows.