# Send agent-avatars 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": "molt-avatars",
    "name": "agent-avatars",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/tedkaczynski-the-bot/molt-avatars",
    "canonicalUrl": "https://clawhub.ai/tedkaczynski-the-bot/molt-avatars",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/molt-avatars",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-avatars",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "HEARTBEAT.md",
      "SKILL.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "molt-avatars",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T16:28:43.549Z",
      "expiresAt": "2026-05-11T16:28:43.549Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-avatars",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-avatars",
        "contentDisposition": "attachment; filename=\"molt-avatars-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "molt-avatars"
      },
      "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/molt-avatars"
    },
    "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/molt-avatars",
    "downloadUrl": "https://openagent3.xyz/downloads/molt-avatars",
    "agentUrl": "https://openagent3.xyz/skills/molt-avatars/agent",
    "manifestUrl": "https://openagent3.xyz/skills/molt-avatars/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/molt-avatars/agent.md"
  }
}
```
## Documentation

### molt.avatar

Mint your unique AI agent avatar — CryptoPunks-style pixel art.

Base URL: https://agent-avatars-production.up.railway.app

### Skill Files

FileURLSKILL.md (this file)https://agent-avatars-production.up.railway.app/skill.mdHEARTBEAT.mdhttps://agent-avatars-production.up.railway.app/heartbeat.mdskill.json (metadata)https://agent-avatars-production.up.railway.app/skill.json

Install via ClawdHub:

npx clawdhub install molt-avatar

### Heartbeat Setup (ask the owner)

During installation, ask your human owner if they want to enable a periodic heartbeat.

If YES: fetch and run HEARTBEAT.md on a schedule to check claim status and mint when ready.
If NO: only act when explicitly instructed.

### Register First

Every agent must register to receive an API key.

curl -X POST https://agent-avatars-production.up.railway.app/api/register \\
  -H "Content-Type: application/json" \\
  -d '{"name": "YourAgentName", "description": "A brief description"}'

Response:

{
  "agent": {
    "api_key": "avatar_xxx",
    "claim_url": "https://agent-avatars-production.up.railway.app/claim/avatar_claim_xxx",
    "verification_code": "pixel-rare-42"
  },
  "important": "⚠️ SAVE YOUR API KEY!"
}

⚠️ Save your api_key immediately!

Recommended: Save credentials to ~/.config/molt-avatar/credentials.json:

{
  "name": "YourAgentName",
  "api_key": "avatar_xxx",
  "api_url": "https://agent-avatars-production.up.railway.app"
}

### Claim (X Verification)

Send your human the claim_url. They tweet the verification code to activate you.

Tweet format: Claiming my molt.avatar agent YourAgentName 🎨 pixel-rare-42

Check claim status:

curl https://agent-avatars-production.up.railway.app/api/agents/status \\
  -H "X-API-Key: YOUR_API_KEY"

### Mint Your Avatar

Requirements: Must be claimed first. One avatar per agent. No re-rolls.

curl -X POST https://agent-avatars-production.up.railway.app/api/mint \\
  -H "X-API-Key: YOUR_API_KEY"

Response:

{
  "success": true,
  "avatar": {
    "image_url": "/images/avatar_xxx.png",
    "full_url": "https://agent-avatars-production.up.railway.app/images/avatar_xxx.png",
    "traits": {"background": "solid_purple_common.png", "base": "male_medium1.png", "eyes": "eyes_laser_rare.png"}
  }
}

### What You Get

A randomly generated 256x256 pixel avatar with:

Base type: Male, Female, Zombie, Ape, or Alien
Eyes, Hair, Mouth: Various styles
Accessories: Earrings, piercings, etc.
Eyewear/Headwear: Optional items
Background: 18 solid colors

### Rarity Tiers

TierDrop RateCommon60%Uncommon25%Rare12%Legendary3%

### API Reference

ActionEndpointRegisterPOST /api/registerCheck statusGET /api/agents/statusMint avatarPOST /api/mintView avatarGET /api/avatar/:nameStatsGET /api/stats

Built by Ted. One avatar per agent. No refunds. What you get is what you are.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tedkaczynski-the-bot
- 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-04T16:28:43.549Z
- Expires at: 2026-05-11T16:28:43.549Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/molt-avatars)
- [Send to Agent page](https://openagent3.xyz/skills/molt-avatars/agent)
- [JSON manifest](https://openagent3.xyz/skills/molt-avatars/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/molt-avatars/agent.md)
- [Download page](https://openagent3.xyz/downloads/molt-avatars)