Create cohesive brand identities, logos, and visual systems with design guidance and asset templates.
Works with
Covers logo design process from discovery through concept development, with support for wordmarks, lettermarks, and icon-plus-wordmark combinations
Includes complete color palette systems with accessibility guidelines, typography scales, and semantic color definitions
Provides ready-to-use React components and SVG templates for logos, social media posts, business cards, and favicons
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionbrand-designerExecute the skills CLI command in your project's root directory to begin installation:
Fetches brand-designer from daffy0208/ai-dev-standards and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate brand-designer. Access via /brand-designer in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
22
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
22
stars
I help you create cohesive brand identities, logos, and visual brand systems.
Brand Identity:
Visual Assets:
Brand Strategy:
Questions to Answer:
Example Brief:
## Brand Brief: TechStart
**Industry:** SaaS, developer tools
**Target Audience:** Software developers, 25-40 years old
**Brand Values:** Innovation, simplicity, reliability
**Personality:** Modern, technical, approachable
**Competitors:** GitHub, GitLab, Vercel
**Logo Requirements:**
- Works in monochrome
- Scales from 16px (favicon) to billboard
- Modern, not trendy (should age well)
- Unique, memorable
Concept 1: Wordmark
Clean, modern typography
Focus on the company name
Example: Google, Facebook, Netflix
Concept 2: Lettermark
Initials in a distinctive way
Good for long company names
Example: IBM, HBO, CNN
Concept 3: Icon + Wordmark
Symbol + company name
Most versatile option
Example: Nike, Apple, Twitter
Example SVG Logo (React Component):
// components/brand/Logo.tsx
interface LogoProps {
variant?: 'full' | 'icon' | 'wordmark'
color?: 'primary' | 'white' | 'black'
size?: number
}
export function Logo({ variant = 'full', color = 'primary', size = 40 }: LogoProps) {
const colors = {
primary: '#0066CC',
white: '#FFFFFF',
black: '#000000'
}
const fillColor = colors[color]
if (variant === 'icon') {
return (
<svg width={size} height={size} viewBox="0 0 40 40" fill="none">
<circle cx="20" cy="20" r="18" fill={fillColor} />
<path
d="M15 20 L25 15 L25 25 Z"
fill="white"
/>
</svg>
)
}
if (variant === 'wordmark') {
return (
<svg width={size * 4} height={size} viewBox="0 0 160 40" fill="none">
<text
x="0"
y="30"
fontFamily="Inter, sans-serif"
fontSize="24"
fontWeight="700"
fill={fillColor}
>
TechStart
</text>
</svg>
)
}
// Full logo (icon + wordmark)
return (
<svg width={size * 5} height={size} viewBox="0 0 200 40" fill="none">
<circle cx="20" cy="20" r="18" fill={fillColor} />
<path d="M15 20 L25 15 L25 25 Z" fill="white" />
<text
x="50"
y="30"
fontFamily="Inter, sans-serif"
fontSize="24"
fontWeight="700"
fill={fillColor}
>
TechStart
</text>
</svg>
)
}
Usage:
// Different logo variations
<Logo variant="full" />
<Logo variant="icon" size={32} />
<Logo variant="wordmark" color="white" />
// config/brand-colors.ts
export const brandColors = {
// Primary (main brand color)
primary: {
50: '#E6F0FF',
100: '#CCE0FF',
200: '#99C2FF',
300: '#66A3FF',
400: '#3385FF',
500: '#0066CC', // Main brand color
600: '#0052A3',
700: '#003D7A',
800: '#002952',
900: '#001429'
},
// Secondary (accent color)
secondary: {
50: '#FFF4E6',
100: '#FFE9CC',
200: '#FFD399',
300: '#FFBD66',
400: '#FFA733',
500: '#FF9100', // Main accent
600: '#CC7400',
700: '#995700',
800: '#663A00',
900: '#331D00'
},
// Neutral (grays)
neutral: {
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827'
},
// Semantic colors
success: '#10B981',
warning: '#F59E0B',
ePrerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
heyman333/atelier-ui
bencium/bencium-claude-code-design-skill
anthropics/claude-code
mblode/agent-skills
github/awesome-copilot
sickn33/antigravity-awesome-skills
We added brand-designer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
brand-designer reduced setup friction for our internal harness; good balance of opinion and flexibility.
Keeps context tight: brand-designer is the kind of skill you can hand to a new teammate without a long onboarding doc.
I recommend brand-designer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Solid pick for teams standardizing on skills: brand-designer is focused, and the summary matches what you get after install.
Useful defaults in brand-designer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
brand-designer has been reliable in day-to-day use. Documentation quality is above average for community skills.
Keeps context tight: brand-designer is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in brand-designer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend brand-designer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 47