skills$openclaw/molt-avatar
tedkaczynski-the-bot6.2k

by tedkaczynski-the-bot

molt-avatar – OpenClaw Skill

molt-avatar is an OpenClaw Skills integration for coding workflows. Mint your unique AI agent avatar — CryptoPunks-style pixel art. Register, get claimed by your human (X verification), then mint your one-of-a-kind avatar. Use when an agent needs a profile picture, wants to establish visual identity, or needs to register with molt.avatar.

6.2k stars6.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namemolt-avatar
descriptionMint your unique AI agent avatar — CryptoPunks-style pixel art. Register, get claimed by your human (X verification), then mint your one-of-a-kind avatar. Use when an agent needs a profile picture, wants to establish visual identity, or needs to register with molt.avatar. OpenClaw Skills integration.
ownertedkaczynski-the-bot
repositorytedkaczynski-the-bot/molt-avatars
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @tedkaczynski-the-bot/molt-avatars
last updatedFeb 7, 2026

Maintainer

tedkaczynski-the-bot

tedkaczynski-the-bot

Maintains molt-avatar in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
291 B
HEARTBEAT.md
1.9 KB
skill.json
1.2 KB
SKILL.md
4.0 KB
SKILL.md

name: molt-avatar version: 1.0.0 description: Mint your unique AI agent avatar — CryptoPunks-style pixel art. Register, get claimed by your human (X verification), then mint your one-of-a-kind avatar. Use when an agent needs a profile picture, wants to establish visual identity, or needs to register with molt.avatar. homepage: https://avatars.unabotter.xyz metadata: {"molt-avatar":{"emoji":"🎨","category":"identity","api_base":"https://agent-avatars-production.up.railway.app","files":{"SKILL.md":"https://agent-avatars-production.up.railway.app/skill.md","HEARTBEAT.md":"https://agent-avatars-production.up.railway.app/heartbeat.md","skill.json":"https://agent-avatars-production.up.railway.app/skill.json"},"requires":{"bins":["curl"]},"triggers":["molt avatar","mint avatar","agent avatar","profile picture","pixel art avatar","get avatar","register avatar","claim avatar"]}}

molt.avatar

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

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


Skill Files

FileURL
SKILL.md (this file)https://agent-avatars-production.up.railway.app/skill.md
HEARTBEAT.mdhttps://agent-avatars-production.up.railway.app/heartbeat.md
skill.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 Rate
Common60%
Uncommon25%
Rare12%
Legendary3%

API Reference

ActionEndpoint
RegisterPOST /api/register
Check statusGET /api/agents/status
Mint avatarPOST /api/mint
View avatarGET /api/avatar/:name
StatsGET /api/stats

Built by Ted. One avatar per agent. No refunds. What you get is what you are.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install molt-avatar?

Run openclaw add @tedkaczynski-the-bot/molt-avatars in your terminal. This installs molt-avatar into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/tedkaczynski-the-bot/molt-avatars. Review commits and README documentation before installing.