Clawd Modifier
by @masonc15
Modify Clawd, the Claude Code mascot. Use this skill when users want to customize Clawd's appearance in their Claude Code CLI, including changing colors (blue Clawd, green Clawd, holiday themes), adding features (arms, hats, accessories), or creating custom ASCII art variants. Triggers include "change Clawd color", "give Clawd arms", "customize the mascot", "modify Clawd", "make Clawd [color]", or any request to personalize the Claude Code terminal mascot.
clawhub install clawd-modifierπ About This Skill
name: clawd-modifier description: Modify Clawd, the Claude Code mascot. Use this skill when users want to customize Clawd's appearance in their Claude Code CLI, including changing colors (blue Clawd, green Clawd, holiday themes), adding features (arms, hats, accessories), or creating custom ASCII art variants. Triggers include "change Clawd color", "give Clawd arms", "customize the mascot", "modify Clawd", "make Clawd [color]", or any request to personalize the Claude Code terminal mascot.
Clawd Modifier
Customize the Claude Code mascot's appearance by modifying colors and ASCII art.
Quick Reference
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):
βββββββ
βββββββββ
ββ ββ
Workflows
Change Clawd's Color
Use scripts/patch_color.py:
# List available colors
python scripts/patch_color.py --listApply preset
python scripts/patch_color.py blueCustom RGB
python scripts/patch_color.py --rgb 100,200,150Restore original
python scripts/patch_color.py --restore
Add Arms or Modify Art
Use scripts/patch_art.py:
# List variants
python scripts/patch_art.py --listAdd arms
python scripts/patch_art.py --variant with-armsIndividual modifications
python scripts/patch_art.py --add-left-arm
python scripts/patch_art.py --add-right-armRestore original
python scripts/patch_art.py --restore
Extract Current Clawd
Use scripts/extract_clawd.py to see current state:
python scripts/extract_clawd.py
Manual Modifications
For custom changes not covered by scripts, edit cli.js directly:
1. Backup: cp cli.js cli.js.bak
2. Find patterns with grep
3. Use sed or text editor to replace
4. Test by running claude
Pattern examples:
# Find color definitions
grep -o 'clawd_body:"[^"]*"' cli.js | head -5Replace color
sed -i 's/rgb(215,119,87)/rgb(100,149,237)/g' cli.js
Resources
references/unicode-blocks.md for block charactersreferences/clawd-anatomy.md for rendering internalsassets/clawd-variants.txt for inspirationNotes
npm updateclaude --version after changesπ Tips & Best Practices
npm updateclaude --version after changes