Skills aavegotchi-traits
Retrieve Aavegotchi NFT data by gotchi ID or name on Base. Returns traits, wearables, rarity scores, kinship, XP, level, and owner data.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/aaigotchi/aavegotchi-traits" ~/.claude/skills/openclaw-skills-aavegotchi-traits && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/aaigotchi/aavegotchi-traits" ~/.openclaw/skills/openclaw-skills-aavegotchi-traits && rm -rf "$T"
manifest:
skills/aaigotchi/aavegotchi-traits/SKILL.mdsource content
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
(optional)AAVEGOTCHI_RPC_URL
(optional; default Goldsky Base subgraph)AAVEGOTCHI_SUBGRAPH_URL
(optional)AAVEGOTCHI_SEARCH_BATCH_SIZE
(optional)AAVEGOTCHI_RPC_RETRIES
(optional)AAVEGOTCHI_RPC_RETRY_DELAY_MS
Reliability
- Name lookup uses subgraph first for speed.
- If subgraph fails, script scans on-chain with RPC retry/backoff to handle rate limits.