ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

gotchi-3d-custom-render

Render custom Aavegotchi 3D images from arbitrary trait and wearable combinations. Use when the user describes a synthetic or hypothetical gotchi look in plain language, asks for an outfit preview, headshot, or full-body image, and is not asking for an existing onchain token by tokenId or inventory URL.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/aaigotchi/gotchi-3d-custom-render
Or

gotchi-3d-custom-render

Use this skill when the user wants a custom 3D gotchi render from selected traits, wearable IDs, wearable names, or a named preset.

Plain-language requests should also route here, for example:

  • "render an ETH gotchi with common eyes, aagent hat, shades, shirt, headset, and pistol"
  • "show me a custom gotchi portrait on a cream background"
  • "make a gotchi outfit preview with wizard hat and blue wand"
  • "give me a headshot of a hypothetical gotchi with shades and a fedora"

Do not wait for the user to explicitly say gotchi-3d-custom-render.

What this skill does

  • writes a structured render request JSON
  • uses the hosted Aavegotchi renderer by default for official-style output
  • falls back to the local Unity batch worker when hosted assets are unavailable
  • returns:
    • full-body PNG
    • headshot PNG
    • manifest JSON
  • supports friendlier presets, slot aliases, themed backgrounds, and render-mode selection
  • wearable flags accept either numeric IDs or quoted wearable names
  • supports plain-language outfit requests after routing picks this skill

Constraints

  • requires a local Unity editor installation
  • hosted mode matches the existing Aavegotchi renderer look much more closely, but may ignore custom local-only pose behavior
  • Unity fallback is still useful for hypothetical combinations or local debugging
  • hosted mode can run on non-Unity hosts as long as node, jq, and npm install have been run in the repo root so the bundled PNG background compositor is available when a non-transparent background is requested
  • intended for local development first, then AAi/Telegram integration through hosted mode
  • no environment variables are required for normal hosted rendering

Routing Notes

  • Prefer this skill when the user describes a look, outfit, traits, wearables, background, portrait, headshot, or hypothetical gotchi.
  • Prefer aavegotchi-3d-renderer instead when the user gives a tokenId or inventory URL for an existing gotchi.
  • If the user gives both a tokenId and custom outfit instructions, clarify whether they want the real token render or a hypothetical custom loadout.

Entry points

  • main wrapper: scripts/render-custom-gotchi.sh
  • preset gallery helper: scripts/render-preset-gallery.sh
  • direct Unity runner: scripts/run-unity-render.sh
  • Unity project: unity/GotchiCustomRenderer

Quick usage

From the skill root:

bash scripts/render-custom-gotchi.sh \
  --preset aagent-eth

Default mode is hosted. Use --render-mode auto if you specifically want hosted-first with Unity fallback, or --render-mode unity for local-only rendering.

Outputs land in:

  • Renders/<slug>-full.png
  • Renders/<slug>-headshot.png
  • Renders/<slug>-manifest.json

Input contract

Supported flags:

Metadata

Author@aaigotchi
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-aaigotchi-gotchi-3d-custom-render": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.