技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.1.0
统计:⭐ 0 · 223 · 4 current installs · 4 all-time installs
⭐ 0
安装量(当前) 4
🛡 VirusTotal :良性 · OpenClaw :良性
Package:aaigotchi/aavegotchi-traits
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill’s code, instructions, and optional environment variables are coherent with its stated purpose (fetching Aavegotchi data on Base) and do not request unrelated credentials or elevated privileges.
目的
Name/description (Aavegotchi Traits) match the included scripts and manifest: the code queries an Aavegotchi contract and an optional subgraph and maps wearable IDs to names. Required binaries/credentials are none; the files and env vars are appropriate for this purpose.
说明范围
SKILL.md instructs running the provided Node script(s) and optional wrapper; runtime behavior described (RPC/subgraph calls, on-chain scanning fallback) matches the code. The instructions do not ask the agent to read unrelated files or exfiltrate data.
安装机制
There is no install spec; this is instruction + script bundle. README recommends npm install to satisfy normal Node dependencies (ethers, node-fetch). The package-lock lists only standard npm packages from the public registry; no downloads from arbitrary URLs or extract steps are present.
证书
No required secrets or credentials. Optional env vars are RPC/subgraph URLs and retry/batch settings which are proportionate to a blockchain query tool. The code only reads the declared env vars and no other secret-like variables.
持久
Skill is not always-enabled and does not request persistent privileges or modify other skills or system settings. It runs as an invoked script and makes network calls consistent with its function.
综合结论
This appears to be a straightforward tool for querying Aavegotchi data. Before installing, note: (1) it runs Node scripts and will require npm install to pull standard dependencies from the public npm registry; (2) at runtime it makes network calls to the Base RPC and a Goldsky subgraph (or any RPC/subgraph URL you configure) — if you run it in a sensitive environment be aware of outbound network activity; (3) it does not request any secrets o…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Aavegotchi Traits」。简介:Retrieve Aavegotchi NFT data by gotchi ID or name on Base. Returns traits, wear…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aaigotchi/aavegotchi-traits/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: aavegotchi-traits
description: Retrieve Aavegotchi NFT data by gotchi ID or name on Base. Returns traits, wearables, rarity scores, kinship, XP, level, and owner data.
---
# Aavegotchi Traits
Fetch Aavegotchi data on Base by ID or name.
## Usage
```bash
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.