# Send Clawd Modifier to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawd-modifier",
    "name": "Clawd Modifier",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/masonc15/clawd-modifier",
    "canonicalUrl": "https://clawhub.ai/masonc15/clawd-modifier",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawd-modifier",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawd-modifier",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/clawd-anatomy.md",
      "references/unicode-blocks.md",
      "scripts/patch_binary.py",
      "scripts/extract_clawd.py",
      "scripts/patch_color.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawd-modifier",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T15:59:35.445Z",
      "expiresAt": "2026-05-08T15:59:35.445Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawd-modifier",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawd-modifier",
        "contentDisposition": "attachment; filename=\"clawd-modifier-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawd-modifier"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawd-modifier"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawd-modifier",
    "downloadUrl": "https://openagent3.xyz/downloads/clawd-modifier",
    "agentUrl": "https://openagent3.xyz/skills/clawd-modifier/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawd-modifier/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawd-modifier/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: masonc15
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T15:59:35.445Z
- Expires at: 2026-05-08T15:59:35.445Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawd-modifier)
- [Send to Agent page](https://openagent3.xyz/skills/clawd-modifier/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawd-modifier/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawd-modifier/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawd-modifier)