Complete visual content system for Claude Code. Default aesthetic - light backgrounds, teal/burnt orange accents, hand-drawn sketch style.
npx skills add https://github.com/aplaceforallmystuff/claude-art-skill --skill art
Complete visual content system supporting multiple brand aesthetics.
The art skill supports multiple visual identities. Before generating any visual, determine which aesthetic applies.
HERO-IMAGE-TEMPLATE.md)CRITICAL: Some content types intentionally use different aesthetics than their host site.
| Content Type | Detection Pattern | Aesthetic to Use | DO NOT Use |
|--------------|------------------|------------------|------------|
| Satirical/Parody Content | User explicitly says "satire", "parody", "joke product" | Match the satire target's aesthetic (e.g., corporate B2B for business parody) | Host site's aesthetic |
| Easter Eggs | Path contains easter-eggs/, explicitly marked as easter egg | Depends on easter egg theme, ask user if unclear | Host site's default |
Rule: When content-type override detected, DO NOT check host site style guides. The content is intentionally divergent.
Every aesthetic MUST define a Base Prompt Prefix — a locked consistency block that gets prepended to every image generation prompt for that aesthetic. This ensures visual cohesion across a set of illustrations.
What the prefix locks down:
Where to find each prefix:
.md) contains a "Base Prompt Prefix" section with the locked valuesAESTHETIC.md) inherit from their parent brand and override only what changesWhen creating new aesthetics via aesthetic-definer: The agent MUST produce a base prompt prefix as part of the output. An aesthetic without a consistency lock is incomplete.
| Brand | Aesthetic File | Style |
|-------|---------------|-------|
| Default | ~/.claude/skills/art/aesthetic.md | Hand-drawn sketch, cream backgrounds, teal/orange accents |
To add a new aesthetic: Create a new file at ~/.claude/skills/art/aesthetics/[name].md using the default aesthetic as a template. See aesthetics/README.md for the required format.
Read the matching aesthetic file BEFORE writing any prompt or generating any image. The aesthetic file is the source of truth for that brand's colors, style parameters, anti-patterns, and prompt integration phrases.
| Content Type | Workflow |
|--------------|----------|
| Blog headers / Editorial | workflows/workflow.md |
| Adaptive orchestrator | workflows/visualize.md |
| Flowcharts / Sequences | workflows/mermaid.md |
| Architecture diagrams | workflows/technical-diagrams.md |
| Classification grids | workflows/taxonomies.md |
| Chronological | workflows/timelines.md |
| 2x2 matrices | workflows/frameworks.md |
| X vs Y | workflows/comparisons.md |
| Screenshot markup | workflows/annotated-screenshots.md |
| Step-by-step | workflows/recipe-cards.md |
| Sketchnotes / visual notes | workflows/sketchnotes.md |
| Quote cards | workflows/aphorisms.md |
| Idea territories | workflows/maps.md |
| Big numbers | workflows/stats.md |
| Sequential panels | workflows/comics.md |
| Edit existing image | workflows/image-editing.md |
Default model: nano-banana-2 (Gemini 3.1 Flash Image)
bun run ~/.claude/skills/art/tools/generate-image.ts \
--model nano-banana-2 \
--prompt "[PROMPT]" \
--size 2K \
--aspect-ratio 1:1 \
--output /path/to/output.png
| Model | When to Use |
|-------|-------------|
| nano-banana-pro | Maximum quality, professional asset production, complex multi-turn editing |
Nano Banana 2 (default):
gemini-3.1-flash-image-previewNano Banana Pro:
gemini-3-pro-image-previewAPI keys in: ~/.claude/.env
GOOGLE_API_KEY - Required for both modelsREMOVEBG_API_KEY - Background removal (optional)Use --size 512px for fast, cheap previews before committing to full resolution:
# 1. Preview at 512px (fast, low cost)
bun run ~/.claude/skills/art/tools/generate-image.ts \
--prompt "[PROMPT]" --size 512px --output /tmp/preview.png
# 2. Happy? Regenerate at full size
bun run ~/.claude/skills/art/tools/generate-image.ts \
--prompt "[PROMPT]" --size 2K --output /path/to/final.png
Add --thinking to give the model more reasoning time for complex compositions:
bun run ~/.claude/skills/art/tools/generate-image.ts \
--prompt "Complex multi-element scene..." \
--thinking high --output /path/to/output.png
| Level | Use When |
|-------|----------|
| minimal | Default — balances quality and latency |
| high | Complex layouts, precise positioning, multi-element scenes |
Only works with nano-banana-2. Thinking is always on (minimal by default). Use high when composition accuracy matters more than speed.
Learned from 2026-01-16 portfolio diagram session:
| Pitfall | Problem | Fix |
|---------|---------|-----|
| Hex codes in prompts | #1A8A9B renders as visible text | Use "teal color" not "#1A8A9B" |
| Vague flow direction | Arrows go random directions | Explicitly state "LEFT TO RIGHT" or "TOP TO BOTTOM" |
| Duplicate labels | Text appears both inside and below elements | Specify "SINGLE label BELOW only, not inside" |
| Implicit positioning | Elements placed confusingly | Use "horizontal row" or "vertical column" explicitly |
| Assumed numbering | Numbers placed inconsistently | State "numbered 1-7 in sequence" |
Pre-flight checklist for architecture diagrams:
Before generating images for a specific website, CHECK for style guides:
# Check project root for style documentation
ls HERO-IMAGE-TEMPLATE.md # Site-specific image style
ls STYLE-GUIDE.md # Design system
If found, the site's style guide OVERRIDES the default aesthetic.
Default aesthetic.md applies when: No site-specific style guide exists.
When generating multiple images for the same page/section:
# All diagrams: 800x500For detailed prompting techniques: ~/.claude/skills/art/nano-banana-guide.md
Applies to both Nano Banana 2 and Nano Banana Pro — same prompt patterns, same API structure.
Includes:
[Action] the [Subject] by [Specific Change]. The goal is [Desired Outcome].What does user need?
├─ Unsure which approach? → VISUALIZE (analyzes & orchestrates)
├─ Flowchart/sequence/state diagram? → MERMAID
├─ Abstract metaphor for article? → Editorial (workflow.md)
├─ System/architecture with labels? → Technical Diagram
├─ Categories in grid? → Taxonomy
├─ Change over time? → Timeline
├─ 2x2 matrix or mental model? → Framework
├─ Side-by-side contrast? → Comparison
├─ Markup existing screenshot? → Annotated Screenshot
├─ Step-by-step process? → Recipe Card
├─ Sketchnote or visual meeting notes? → Sketchnote
├─ Quote as social visual? → Aphorism
├─ Idea territories as map? → Conceptual Map
├─ Single striking number? → Stat Card
├─ Multi-panel story? → Comic
└─ Edit/modify/transform existing image? → IMAGE EDITING
| Platform | Dimensions | Max Size | Notes |
|----------|------------|----------|-------|
| YouTube thumbnail | 1280x720 (16:9) | 2MB | Use --size 1080p or compress after |
| LinkedIn post | 1200x627 | 5MB | |
| Twitter/X post | 1200x675 (16:9) | 5MB | |
| Newsletter header | 1200x600 | 1MB | Email platform limit |
| Instagram square | 1080x1080 | 8MB | |
If generated image exceeds size limit:
# Compress PNG with pngquant
pngquant --quality=65-80 --force --output compressed.png original.png
# Or convert to optimized JPEG
convert original.png -quality 85 compressed.jpg
Source: Personal_AI_Infrastructure Art Skill
Assimilated: 2026-01-04
Adapted: PAI's dark/neon aesthetic → warm/cream aesthetic
For complete visual styling rules, ALWAYS read: ~/.claude/skills/art/aesthetic.md
Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling
Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.
Take aplaceforallmystuff/art from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.