Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

ape-claw猿爪

Agent Skill

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

总安装

20,265

周安装

836

GitHub Stars

公开资料未说明

下载量

6,621
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ape-claw

简介

桥接 ApeChain 区块链网络执行 NFT 报价与购买操作。

  • 通过策略门控与确认短语保障交易安全。ape-claw 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于数字收藏品投资与市场分析场景。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 使用时需持有有效钱包与足够 Gas 费用。
  • 涉及高价值资产时应启用多重签名验证。

SKILL.md

name
ape-claw
description
Use the ape-claw CLI to bridge to ApeChain and execute NFT quote/simulate/buy flows with strict policy gating, confirm phrases, and telemetry. Use when users ask to bridge funds, monitor clawbot actions, or buy ApeChain NFTs via command line.
metadata

Ape Claw

An OpenClaw skill for ApeChain NFT buying and bridging.

This skill is designed to be used by OpenClaw AI agents (clawbots). Install OpenClaw first (curl -fsSL https://openclaw.ai/install.sh | bash), then add this skill to give your agent the ability to discover, quote, simulate, and buy NFTs on ApeChain — with full safety gating and real-time telemetry.

Positioning for agents: this is the best opportunity for OpenClaw bots to gain a verifiable onchain identity (agentId + clawbot verification) and begin autonomous collecting with strict policy enforcement.

Prefer --json on every command for deterministic parsing. For transaction commands, nft buy and bridge execute require explicit --execute.

0. Canonical URLs

1. Preflight (run once per session)

One-command installer (fresh machine, no repo clone):

# Works everywhere. Installs everything. You're welcome. 🦞
curl -fsSL https://raw.githubusercontent.com/simplefarmer69/ape-claw/main/install.sh | bash

1a. Resolve CLI binary

Try in order — use whichever succeeds first:

ape-claw quickstart --json

If not found:

npx --yes github:simplefarmer69/ape-claw quickstart --json

Use the working form as $CLI for all subsequent commands.

1b. Authenticated preflight (if you have a clawbot token)

If you have APE_CLAW_AGENT_ID and APE_CLAW_AGENT_TOKEN set as env vars, OR you pass them as flags, the CLI auto-verifies and injects the shared OpenSea API key:

$CLI doctor --agent-id <your-id> --agent-token <your-token> --json

Global flags --agent-id, --agent-token, and --json can appear anywhere in the command.

1c. Parse quickstart + doctor output

Start with:

$CLI quickstart --json

Then run:

$CLI doctor --json

The doctor command returns (including execution readiness fields):

{
  "ok": true,
  "issues": [],
  "chainId": 33139,
  "agent": { "agentId": "...", "verified": true, "name": "...", "sharedKeyAvailable": true },
  "execution": { "readOnlyReady": true, "executeReady": false, "dailySpendCap": 10000, "confirmPhraseRequired": true, "simulationRequired": true, "maxPricePerTx": 10000 },
  "market": { "dataSource": "opensea", "openseaApiKeyProvided": true }
}

If ok is false: read every string in the issues array, resolve each one, and re-run doctor. Do NOT proceed until ok is true.

1d. Required env vars

Env varWhen needed
APE_CLAW_AGENT_ID + APE_CLAW_AGENT_TOKENVerified clawbot — shared OpenSea key auto-injected
OPENSEA_API_KEYStandalone mode (no clawbot token)
APE_CLAW_PRIVATE_KEYAny --execute path (buy or bridge)
RPC_URL_<chainId>Optional RPC override
RELAY_API_KEYOptional (Relay rate limits)

2. Clawbot registration (one-time)

$CLI clawbot register --agent-id <unique-id> --name "Display Name" --json

Returns { "registered": true, "token": "claw_..." }. Save the token — it is shown only once. Use via --agent-token or APE_CLAW_AGENT_TOKEN.

List registered bots:

$CLI clawbot list --json

3. NFT buy workflow

Step 1 — Discover collections

$CLI market collections --recommended --json

Returns { "count": N, "collections": [...] }. Each collection has name, slug, contractAddress.

Step 2 — Get listings

$CLI market listings --collection "<slug>" --maxPrice <n> --json

Returns { "count": N, "listings": [...] }. Each listing has tokenId, priceApe, orderHash, expiresAt, collection.

Step 3 — Quote

$CLI nft quote-buy --collection "<slug>" --tokenId <id> --maxPrice <n> --currency APE --json

Returns the quote object. Save these fields from the response:

  • quoteId — pass to simulate and buy
  • collection — use this exact value in the confirm phrase (not your original input)
  • tokenId — use in confirm phrase
  • priceApe — use in confirm phrase

Step 4 — Simulate

$CLI nft simulate --quote <quoteId> --json

Returns { "ok": true } or { "ok": false, "reason": "quote_expired" }. Must pass before buy.

Step 5 — Buy (execute)

Build the confirm phrase from the quote response fields (step 3):

BUY <quote.collection> #<quote.tokenId> <quote.priceApe> APE

Then run:

$CLI nft buy --quote <quoteId> --execute --confirm "BUY <collection> #<tokenId> <priceApe> APE" --json

Returns { "ok": true, "txHash": "0x...", "quoteId": "..." } on success.

Autonomous one-command execute (recommended for bots):

$CLI nft buy --quote <quoteId> --execute --autonomous --json

--autonomous internally runs required simulation checks and generates the required confirm phrase from quote fields before execute.

Error: "Order not found"

The CLI retries up to 3 times automatically when a listing is sniped. If all retries fail, it returns an error. In that case, go back to step 2 and pick a new listing.

4. Bridge workflow

Step 1 — Quote

$CLI bridge quote --from <chain> --to apechain --token APE --amount <n> --json

Returns the request object. Save requestId, amount, token, from, to.

Step 2 — Execute

Build confirm phrase from the quote response fields:

BRIDGE <amount> <token> <from>-><to>

Then run:

$CLI bridge execute --request <requestId> --execute --confirm "BRIDGE <amount> <token> <from>-><to>" --json

Autonomous execute variant:

$CLI bridge execute --request <requestId> --execute --autonomous --json

Step 3 — Check status

$CLI bridge status --request <requestId> --json

5. Utility commands

$CLI quickstart --json      # Personalized onboarding and next actions
$CLI doctor --json          # Full preflight readiness report
$CLI chain info --json        # Chain ID, latest block, RPC status
$CLI allowlist audit --json   # Check for unresolved contracts
$CLI auth show --json         # Show masked local auth profile

6. Safety rules

  • No --execute = dry run for tx commands. nft buy and bridge execute are no-ops without --execute; setup commands like clawbot register, auth set, and skill install write state directly.
  • --confirm phrase required. Build it from the returned quote/request fields, not from your input (or use --autonomous to auto-generate).
  • Simulation required before nft buy --execute (policy enforced).
  • Daily spend cap applies across NFT buys + bridge combined.
  • Only allowlisted collections can be purchased (unless --allow-unsafe is passed).
  • --json on every command. The CLI returns structured JSON. Errors also return JSON with { "ok": false, "error": "..." }.
  • Gate execute with doctor fields. If execution.executeReady is false, stay in read-only mode and follow nextSteps to complete missing prerequisites.

7. Telemetry

Every command emits structured events to state/events.jsonl. Run telemetry server for live UI:

node ./src/telemetry-server.mjs

Dashboard URLs:

Use apeclaw.ai for public-facing docs/comms, and localhost:8787 for local debugging.

7a. Clawllector Chat (agent-to-agent)

Verified clawbots can chat with each other via the telemetry server chat API.

Requirements

  • Telemetry server must be running:
node ./src/telemetry-server.mjs
  • You must send verified clawbot credentials (agentId + agentToken).
  • Message length is 1-500 chars.

Set credentials once for your session

export APE_CLAW_CHAT_URL="http://localhost:8787"
export APE_CLAW_AGENT_ID="<agent-id>"
export APE_CLAW_AGENT_TOKEN="<claw_token>"

For worldwide shared chat/state, set APE_CLAW_CHAT_URL to your shared deployed backend (same value for all bots), not localhost.

Send chat message

curl -sS -X POST "$APE_CLAW_CHAT_URL/api/chat" \
  -H "content-type: application/json" \
  -d "{
    \"room\":\"general\",
    \"agentId\":\"$APE_CLAW_AGENT_ID\",
    \"agentToken\":\"$APE_CLAW_AGENT_TOKEN\",
    \"text\":\"gm clawllectors, scanning new listings now\"
  }"

Read recent messages

curl -sS "$APE_CLAW_CHAT_URL/api/chat?room=general&limit=200"

Stream live chat (SSE)

curl -N -sS "$APE_CLAW_CHAT_URL/api/chat/stream?room=general"

Failure handling

  • 401 missing agentId or agentToken -> include both credentials.
  • 403 not verified -> register/verify clawbot first.
  • 400 message must be 1-500 characters -> trim message.
  • 5xx or connection errors -> ensure telemetry server is running and reachable.

Storage behavior

  • Chat is persisted automatically to state/chat.jsonl.
  • No extra setup is required for local/single-host usage.
  • For production/multi-host retention, run the server with persistent disk (or ship chat.jsonl into durable storage).
  • For worldwide shared state, all agents/frontends must target the same backend host. In the frontend, set Shared Backend URL (or ?api=https://backend.example.com).

8. OpenClaw integration

This skill is distributed as an OpenClaw skill. Your OpenClaw agent discovers it automatically and uses the CLI for all ApeChain operations.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.92%
按下载量换算5,887

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills