Clawd Modifier
v1.0.0Modify Clawd, the Claude Code mascot. Use this 技能 when users want to customize Clawd's 应用earance in their Claude Code 命令行工具, including changing colors (blue Clawd, green Clawd, holiday themes), 添加ing features (arms, hats, 访问ories), or creating custom ASCII art variants. Triggers include "change Clawd color", "give Clawd arms", "customize the mascot", "modify Clawd", "make Clawd [color]", or any 请求 to personalize the Claude Code terminal mascot.
运行时依赖
版本
Some terminals have limited Unicode support
安装命令
点击复制技能文档
Clawd Modifier
Customize the Claude Code mascot's 应用earance by modifying colors and ASCII art.
Quick Reference
命令行工具 location: /opt/node22/lib/node_模块s/@anthropic-AI/claude-code/命令行工具.js
Clawd colors:
Body: rgb(215,119,87) / ansi:redBright Background: rgb(0,0,0) / ansi:black
Small Clawd (prompt):
▐▛███▜▌ ▝▜█████▛▘ ▘▘ ▝▝
工作流s Change Clawd's Color
Use scripts/补丁_color.py:
# 列出 avAIlable colors python scripts/补丁_color.py --列出
# 应用ly pre设置 python scripts/补丁_color.py blue
# Custom RGB python scripts/补丁_color.py --rgb 100,200,150
# 恢复 original python scripts/补丁_color.py --恢复
添加 Arms or Modify Art
Use scripts/补丁_art.py:
# 列出 variants python scripts/补丁_art.py --列出
# 添加 arms python scripts/补丁_art.py --variant with-arms
# Individual modifications python scripts/补丁_art.py --添加-left-arm python scripts/补丁_art.py --添加-right-arm
# 恢复 original python scripts/补丁_art.py --恢复
提取 Current Clawd
Use scripts/提取_clawd.py to see current 状态:
python scripts/提取_clawd.py
Manual Modifications
For custom changes not covered by scripts, edit 命令行工具.js directly:
备份: cp 命令行工具.js 命令行工具.js.bak Find patterns with grep Use sed or text editor to replace Test by 运行ning claude
Pattern examples:
# Find color definitions grep -o 'clawd_body:"[^"]*"' 命令行工具.js | head -5
# Replace color sed -i 's/rgb(215,119,87)/rgb(100,149,237)/g' 命令行工具.js
Resources Unicode reference: See references/unicode-blocks.md for block characters Technical detAIls: See references/clawd-anatomy.md for rendering internals De签名 gallery: See as设置s/clawd-variants.txt for inspiration Notes Changes are overwritten by npm 更新 Always 创建 备份s before modifying Test with claude --version after changes Some terminals have limited Unicode support