โ† All skills
Tencent SkillHub ยท Developer Tools

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/clawd-anatomy.md, references/unicode-blocks.md, scripts/patch_binary.py, scripts/extract_clawd.py, scripts/patch_color.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

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): โ–โ–›โ–ˆโ–ˆโ–ˆโ–œโ–Œ โ–โ–œโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–›โ–˜ โ–˜โ–˜ โ–โ–

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.md for block characters Technical details: See references/clawd-anatomy.md for rendering internals Design gallery: See assets/clawd-variants.txt for inspiration

Notes

Changes are overwritten by npm update Always create backups before modifying Test with claude --version after changes Some terminals have limited Unicode support

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Scripts
  • SKILL.md Primary doc
  • references/clawd-anatomy.md Docs
  • references/unicode-blocks.md Docs
  • scripts/extract_clawd.py Scripts
  • scripts/patch_binary.py Scripts
  • scripts/patch_color.py Scripts