Skip to main content

aavegotchi-traits

Retrieve Aavegotchi NFT data by gotchi ID or name on Base. Returns traits, wearables, rarity scores, kinship, XP, level, and owner data.

Stars
15
Source
dvcrn/openclaw-skills-marketplace
Updated
2026-05-29
Slug
dvcrn--openclaw-skills-marketplace--aavegotchi-traits
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/dvcrn/openclaw-skills-marketplace/HEAD/plugins/aaigotchi--aavegotchi-traits/skills/aavegotchi-traits/SKILL.md -o .claude/skills/aavegotchi-traits.md

Drops the SKILL.md into .claude/skills/aavegotchi-traits.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Aavegotchi Traits

Fetch Aavegotchi data on Base by ID or name.

Usage

cd scripts
node get-gotchi.js 9638
node get-gotchi.js aaigotchi
./gotchi-info.sh 9638

What it returns

  • Token ID, name, owner, haunt
  • BRS / modified BRS
  • Kinship, XP, level
  • Base + modified traits
  • Equipped wearables with names
  • Collateral, staked amount, last interaction
  • JSON output for automation

Environment

  • AAVEGOTCHI_RPC_URL (optional)
  • AAVEGOTCHI_SUBGRAPH_URL (optional; default Goldsky Base subgraph)
  • AAVEGOTCHI_SEARCH_BATCH_SIZE (optional)
  • AAVEGOTCHI_RPC_RETRIES (optional)
  • AAVEGOTCHI_RPC_RETRY_DELAY_MS (optional)

Reliability

  • Name lookup uses subgraph first for speed.
  • If subgraph fails, script scans on-chain with RPC retry/backoff to handle rate limits.