Generate custom logos with adaptive brainstorming and full brand kit export. Scans project context (README, package.json, CSS, existing assets) to inform design. Outputs favicons (16-512 + ICO), social images (OG, Twitter), dark/light/mono SVG variants, and an HTML preview.
Generate custom SVG logos through adaptive brainstorming, then export a full brand asset kit.
<HARD-GATE> You MUST complete the Context Scan and Brainstorm phases before generating any SVG code. Do NOT skip straight to logo creation even if the user provides detailed descriptions upfront — always validate understanding first. </HARD-GATE>Check if sharp is installed in the skill's scripts directory:
[ -d ~/.claude/skills/logo-generator/scripts/node_modules/sharp ] || (cd ~/.claude/skills/logo-generator/scripts && npm install)
Run this silently at the start of every invocation. If it fails, warn the user and continue — the script has a macOS qlmanage+sips fallback.
Automatically scan the current working directory for branding signals. Do NOT ask the user for any of this — just read it.
| Source | What to extract |
|---|
package.json / Cargo.toml / pyproject.toml | Project name, description, keywords |
README.md / README | Project name, tagline, description |
CLAUDE.md | Project conventions, tech stack |
tailwind.config.* / theme.config.* | Brand colors, font choices |
*.css (first 3 files) | CSS custom properties with color values |
public/ / assets/ / static/ | Existing logos, favicons, brand images |
.svg / .png files in root | Existing logo files |
manifest.json / site.webmanifest | App name, theme color |
# Quick scan — run these and read results
ls package.json README.md CLAUDE.md tailwind.config.* manifest.json site.webmanifest 2>/dev/null
Use Glob for: **/*.svg, **/favicon*, **/logo*
Use Grep for: --theme-color, --primary, --brand, color: in CSS files
After scanning, build an internal summary:
CONTEXT:
name: [found or "unknown"]
description: [found or "none"]
colors_found: [list of hex codes with where they came from]
existing_logos: [paths to any existing logo/favicon files]
tech_stack: [detected from config files]
has_branding: [yes/partial/no]
Adjust depth based on context richness and any arguments ($ARGUMENTS) provided.
Skip most questions. Present what you found:
"I scanned your project and found: [name], described as [description]. I see brand colors [colors] in your [source]. You already have [existing assets].
Based on this, here are 3 logo concepts..."
Jump directly to Phase 3 (Concept Proposals) unless the user provided --refresh or --rebrand in arguments, in which case ask what they want to change.
Ask 2-3 targeted questions to fill gaps. Use AskUserQuestion with options:
Question 1 (if no colors found):
What color palette fits your brand?
A) Professional blues/grays — trust, reliability
B) Bold warm tones (red, orange, gold) — energy, action
C) Nature greens/earth tones — growth, sustainability
D) Purple/violet — creativity, premium
E) Monochrome — minimal, modern
F) I have specific colors in mind → [ask for hex codes]
Question 2 (if no description/personality found):
What personality should the logo convey?
A) Technical/developer-focused — clean, precise
B) Playful/friendly — approachable, fun
C) Premium/luxury — refined, elegant
D) Bold/disruptive — strong, attention-grabbing
E) Organic/natural — flowing, warm
Full guided session. Ask these one at a time:
What type of logo?
A) Icon/symbol only — a standalone mark (like Apple, Nike)
B) Lettermark — stylized initials (like IBM, HBO)
C) Wordmark — the full name styled (like Google, Coca-Cola)
D) Combination — icon + text together (like Slack, Spotify)
E) Surprise me — pick what fits best
If $ARGUMENTS contains descriptive text (not flags), treat it as style/brand hints that can skip some questions. For example:
/logo-generator modern fintech app called PayFlow → name=PayFlow, personality=technical/premium, skip those questions/logo-generator --refresh → scan existing logo, propose updates/logo-generator → full scan + adaptive questionsPresent 2-3 distinct logo concepts as text descriptions. Each concept should include:
### Concept [N]: [Name]
**Style:** [geometric / organic / typographic / abstract / etc.]
**Composition:** [what shapes/elements, how they're arranged]
**Colors:** [specific hex codes and where each is used]
**Rationale:** [why this works for the brand]
**Scalability note:** [how it holds up at 16x16]
Ask the user to pick one, mix elements, or request new directions.
Once a concept is approved, generate production SVGs.
Scalability rules (the logo MUST work at 16x16):
Technical rules:
0 0 512 512 (square, high-res base)<path> elements, or use only basic geometric letterforms built from <rect>, <circle>, <polygon>, <path> primitives<image> or <use> elements referencing external files<feGaussianBlur>, <feDropShadow>)<defs> for reusable gradients/patternscurrentColor or CSS variablesGenerate 3 variants:
logo.svg — Primary logo, intended for light backgroundslogo-dark.svg — Optimized for dark backgrounds (not just inverted — thoughtfully adjusted)logo-mono.svg — Single color (#000000), suitable for watermarks/stampsWrite all three SVGs to a temp location first (e.g., /tmp/logo-gen/).
Generate an HTML preview file from the SVGs:
node ~/.claude/skills/logo-generator/scripts/generate-assets.js \
--svg /tmp/logo-gen/logo.svg \
--svg-dark /tmp/logo-gen/logo-dark.svg \
--svg-mono /tmp/logo-gen/logo-mono.svg \
--output /tmp/logo-gen/preview \
--preview-only \
--brand-name "[name]" \
--primary-color "[hex]" \
--bg-color "[hex]"
Tell the user:
"Preview generated. Open
/tmp/logo-gen/preview/logo-preview.htmlin your browser to see all variants and sizes. Let me know if you'd like any changes, or say 'export' to generate the full asset kit."
If the user requests changes:
Once approved, run the full export:
node ~/.claude/skills/logo-generator/scripts/generate-assets.js \
--svg /tmp/logo-gen/logo.svg \
--svg-dark /tmp/logo-gen/logo-dark.svg \
--svg-mono /tmp/logo-gen/logo-mono.svg \
--output "[target_dir]" \
--brand-name "[name]" \
--primary-color "[hex]" \
--bg-color "[hex]"
Determine output path in this order:
./public/ exists → use ./public/./assets/ exists → use ./assets/brand/./static/ exists → use ./static/./public/[target_dir]/
├── logo.svg # Primary SVG
├── logo-dark.svg # Dark background variant
├── logo-mono.svg # Monochrome variant
├── favicon.ico # Multi-size ICO (16, 32, 48)
├── favicon-16x16.png
├── favicon-32x32.png
├── favicon-48x48.png
├── favicon-64x64.png
├── favicon-192x192.png
├── favicon-512x512.png
├── apple-touch-icon.png # 180x180
├── og-image.png # 1200x630 (logo centered on brand color bg)
├── twitter-card.png # 1200x600
├── site.webmanifest # PWA manifest
└── logo-preview.html # Visual preview of everything
Print a summary:
✓ Brand kit exported to [target_dir]/
Files generated:
3 SVG variants (light, dark, mono)
7 favicon PNGs (16-512) + ICO
1 Apple touch icon
2 social images (OG + Twitter card)
1 PWA manifest
1 HTML preview
Add to your HTML <head>:
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<meta property="og:image" content="/og-image.png">
<meta name="twitter:image" content="/twitter-card.png">
cd ~/.claude/skills/logo-generator/scripts && npm install