Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

aavegotchi-gotchiverse阿维戈奇·戈奇宇宙

Agent Skill

aavegotchi-gotchiverse 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,234

周安装

704

GitHub Stars

公开资料未说明

下载量

5,576
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aavegotchi-gotchiverse(阿维戈奇·戈奇宇宙)
来源仓库:https://github.com/cinnabarhorse/aavegotchi-gotchiverse
安装命令:
openclaw skills install aavegotchi-gotchiverse
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install aavegotchi-gotchiverse

简介

玩家建造与资源管理的元宇宙工作流自动化工具包。aavegotchi-gotchiverse 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于土地开垦、装置制作与社交活动组织等虚拟经济场景。
  • 集成炼金术通道、测量收获与瓷砖铺设等核心玩法接口。
  • 操作前需确认地块NFT持有状态与能量储备是否满足需求。
  • 虚拟资产价值波动大,投资前请评估个人风险承受能力。

SKILL.md

name
aavegotchi-gotchiverse
description
>
metadata
openclaw
requires
bins
env
primaryEnv
PRIVATE_KEY

Safety Rules

  • Default to DRY_RUN=1. Never broadcast unless explicitly instructed.
  • Always verify Base mainnet before any action:

- ~/.foundry/bin/cast chain-id --rpc-url "${BASE_MAINNET_RPC:-https://mainnet.base.org}" must be 8453.

  • Always verify key/address alignment before any broadcast:

- ~/.foundry/bin/cast wallet address --private-key "$PRIVATE_KEY" must equal FROM_ADDRESS.

  • Always refetch from subgraph immediately before state-changing simulate/broadcast steps.
  • Always revalidate critical values onchain right before cast send.
  • Never print or log PRIVATE_KEY.
  • Treat all user/subgraph values as untrusted shell input.

Shell Input Safety (Avoid RCE)

Rules:

  • Never use eval, bash -c, sh -c with user values.
  • Only substitute addresses matching 0x + 40 hex chars.
  • Only substitute uint values containing digits only.
  • Keep placeholders quoted in commands until validated.

Quick validators:

python3 - <<'PY'
import re

checks = {
  "address": ("<ADDRESS>", r"0x[a-fA-F0-9]{40}"),
  "uint": ("<UINT>", r"[0-9]+"),
}

for name, (value, pattern) in checks.items():
    if not re.fullmatch(pattern, value):
        raise SystemExit(f"invalid {name}: {value}")

print("ok")
PY

Required Setup

Required env vars:

  • PRIVATE_KEY
  • FROM_ADDRESS
  • BASE_MAINNET_RPC
  • DRY_RUN
  • REALM_DIAMOND
  • INSTALLATION_DIAMOND
  • TILE_DIAMOND
  • AAVEGOTCHI_DIAMOND
  • FUD, FOMO, ALPHA, KEK, GLTR
  • GOTCHIVERSE_SUBGRAPH_URL
  • CORE_SUBGRAPH_URL

Optional env vars:

  • GOLDSKY_API_KEY for auth header (public endpoints work without it).

Use canonical defaults from references/addresses.md.

Scope

Player operations only:

  • Channeling
  • Survey + harvest claim
  • Craft/claim/reduce queues
  • Equip/unequip/move/batch equip
  • Installation upgrades (queued + instant)
  • Access-right read/write

Out of scope:

  • Owner/admin governance functions (pause/freeze/set vars/deprecations/address reconfiguration).

Subgraph-First Workflow

  1. Discover state via GOTCHIVERSE_SUBGRAPH_URL and CORE_SUBGRAPH_URL.
  2. Validate current onchain values with cast call.
  3. Simulate with cast call --from "$FROM_ADDRESS".
  4. Broadcast with cast send --private-key "$PRIVATE_KEY" only when explicitly instructed.

Canonical queries and notes: references/subgraph.md.

Runbooks

1) Parcel Discovery + Preflight

Use:

  • references/subgraph.md for parcel/installations/tiles/access-right discovery.
  • references/realm-recipes.md preflight checks for:

- parcel owner and access right - altar presence/level - gotchi lending/listing/kinship checks

2) Survey + Harvest

Functions:

  • startSurveying(uint256)
  • claimAvailableAlchemica(uint256,uint256,bytes)
  • claimAllAvailableAlchemica(uint256[],uint256,bytes)

Use references/realm-recipes.md for read/simulate/broadcast commands.

3) Channel Alchemica

Function:

  • channelAlchemica(uint256,uint256,uint256,bytes)

Preflight requirements:

  • correct access right
  • gotchi not actively listed for lending (unless lent)
  • gotchi kinship is sufficient
  • getLastChanneled(gotchiId) passed as _lastChanneled
  • parcel altar equipped and cooldown passed

Use references/realm-recipes.md.

4) Craft Installations + Build on Parcel

Installation craft/queue functions:

  • craftInstallations(uint16[],uint40[])
  • batchCraftInstallations((uint16,uint16,uint40)[])
  • claimInstallations(uint256[])
  • reduceCraftTime(uint256[],uint40[])
  • getCraftQueue(address)

Build functions (Realm):

  • equipInstallation(...)
  • unequipInstallation(...)
  • moveInstallation(...)
  • batchEquip(...)

Use:

  • references/installation-recipes.md
  • references/realm-recipes.md

5) Craft Tiles + Build on Parcel

Tile craft/queue functions:

  • craftTiles(uint16[])
  • batchCraftTiles((uint16,uint16,uint40)[])
  • claimTiles(uint256[])
  • reduceCraftTime(uint256[],uint40[])
  • getCraftQueue(address)

Build functions (Realm):

  • equipTile(...)
  • unequipTile(...)
  • moveTile(...)
  • batchEquip(...)

Use:

  • references/tile-recipes.md
  • references/realm-recipes.md

6) Upgrade Installations

Functions:

  • upgradeInstallation((...),uint256,bytes,uint40)
  • instantUpgrade((...),uint256,uint256,bytes)
  • reduceUpgradeTime(uint256,uint256,uint40,bytes)
  • finalizeUpgrades(uint256[])
  • getParcelUpgradeQueue(uint256)
  • getUserUpgradeQueueNew(address)
  • parcelQueueEmpty(uint256)

Use references/installation-recipes.md.

7) Access Rights

Functions:

  • setParcelsAccessRights(...)
  • setParcelsAccessRightWithWhitelists(...)
  • getParcelsAccessRights(...)
  • getParcelsAccessRightsWhitelistIds(...)

Action rights 0..6 and access modes 0..4 are documented in:

  • references/access-rights.md

Smoke Tests

Run these before first usage and after env changes:

  • Subgraph introspection checks in references/subgraph.md
  • Address/contract checks in references/addresses.md
  • No-op selector checks in:

- references/realm-recipes.md - references/installation-recipes.md - references/tile-recipes.md

Failure Modes

Use references/failure-modes.md for:

  • access-right reverts
  • cooldown/kinship/channeling reverts
  • coordinate/grid placement reverts
  • queue state reverts
  • upgrade hash/queue capacity reverts
  • deprecation/GLTR/ownership mismatches

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.92%
按下载量换算4,289

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install aavegotchi-gotchiverse 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills