/install clawd-modifier
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:
- Body:
rgb(215,119,87)/ansi:redBright - Background:
rgb(0,0,0)/ansi:black
Small Clawd (prompt):
▐▛███▜▌
▝▜█████▛▘
▘▘ ▝▝
Workflows
Change Clawd's Color
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
Add Arms or Modify Art
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
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:
- Backup:
cp cli.js cli.js.bak - Find patterns with grep
- Use sed or text editor to replace
- Test by running
claude
Pattern 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
Resources
- Unicode reference: See
references/unicode-blocks.mdfor block characters - Technical details: See
references/clawd-anatomy.mdfor rendering internals - Design gallery: See
assets/clawd-variants.txtfor inspiration
Notes
- Changes are overwritten by
npm update - Always create backups before modifying
- Test with
claude --versionafter changes - Some terminals have limited Unicode support
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clawd-modifier - 安装完成后,直接呼叫该 Skill 的名称或使用
/clawd-modifier触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Clawd Modifier 是什么?
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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2222 次。
如何安装 Clawd Modifier?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawd-modifier」即可一键安装,无需额外配置。
Clawd Modifier 是免费的吗?
是的,Clawd Modifier 完全免费(开源免费),可自由下载、安装和使用。
Clawd Modifier 支持哪些平台?
Clawd Modifier 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Clawd Modifier?
由 masonc15(@masonc15)开发并维护,当前版本 v1.0.0。