From sundial-org-awesome-openclaw-skills-4
Customizes Clawd mascot in Claude Code CLI by changing colors (blue, green, holidays), adding arms/hats/accessories, or modifying ASCII art using Python scripts like patch_color.py and patch_art.py.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Customize the Claude Code mascot's appearance by modifying colors and ASCII art.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Customize the Claude Code mascot's appearance by modifying colors and ASCII art.
CLI location: /opt/node22/lib/node_modules/@anthropic-ai/claude-code/cli.js
Clawd colors:
rgb(215,119,87) / ansi:redBrightrgb(0,0,0) / ansi:blackSmall Clawd (prompt):
▐▛███▜▌
▝▜█████▛▘
▘▘ ▝▝
Use scripts/patch_color.py:
# List available colors
python scripts/patch_color.py --list
# Apply preset
python scripts/patch_color.py blue
# Custom RGB
python scripts/patch_color.py --rgb 100,200,150
# Restore original
python scripts/patch_color.py --restore
Use scripts/patch_art.py:
# List variants
python scripts/patch_art.py --list
# Add arms
python scripts/patch_art.py --variant with-arms
# Individual modifications
python scripts/patch_art.py --add-left-arm
python scripts/patch_art.py --add-right-arm
# Restore original
python scripts/patch_art.py --restore
Use scripts/extract_clawd.py to see current state:
python scripts/extract_clawd.py
For custom changes not covered by scripts, edit cli.js directly:
cp cli.js cli.js.bakclaudePattern examples:
# Find color definitions
grep -o 'clawd_body:"[^"]*"' cli.js | head -5
# Replace color
sed -i 's/rgb(215,119,87)/rgb(100,149,237)/g' cli.js
references/unicode-blocks.md for block charactersreferences/clawd-anatomy.md for rendering internalsassets/clawd-variants.txt for inspirationnpm updateclaude --version after changes