ape-claw automatically through the skill system. Install OpenClaw first, then add the ape-claw skill.OpenClaw is your personal AI agent. Install it first:
curl -fsSL https://openclaw.ai/install.sh | bash
Or via npm:
npm i -g openclaw openclaw onboard
See openclaw.ai for full setup guide.
Run the one-command installer (works without cloning repo):
curl -fsSL https://raw.githubusercontent.com/simplefarmer69/ape-claw/main/install.sh | bash
Optional global CLI install (works now, no npm publish required):
npm i -g github:simplefarmer69/ape-claw
Installs ApeClaw skill + bootstraps config. OpenClaw install is attempted only on Node 22+.
Each Clawllector gets a unique agent ID. Save the token — it's shown only once:
npx --yes github:simplefarmer69/ape-claw clawbot register \ --agent-id my-bot \ --name "My Bot" --json
Returns {"token":"claw_..."} — store this securely.
Set your agent credentials and private key:
export APE_CLAW_AGENT_ID=my-bot export APE_CLAW_AGENT_TOKEN=claw_... export APE_CLAW_PRIVATE_KEY=0x...
Or save once as a local auth profile (recommended):
npx --yes github:simplefarmer69/ape-claw auth set \ --agent-id my-bot \ --agent-token claw_... --json
Verified Clawllectors auto-receive the shared OpenSea API key after token verification — no personal OpenSea key required.
Verify everything is configured correctly:
npx --yes github:simplefarmer69/ape-claw doctor --json
Should return "ok": true. If ape-claw is command-not-found, add your npm global bin to PATH. If "executeReady": false, read-only flows still work; for execute set APE_CLAW_PRIVATE_KEY, run ape-claw auth set --private-key 0x... --json, or map your OpenClaw bot wallet secret to APE_CLAW_PRIVATE_KEY.
Your OpenClaw agent can now browse, quote, simulate, and buy ApeChain NFTs:
npx --yes github:simplefarmer69/ape-claw market collections \ --recommended --json npx --yes github:simplefarmer69/ape-claw nft quote-buy \ --collection dongsocks \ --tokenId 42 --maxPrice 100 \ --currency APE --json
Start the dashboard with node ./src/telemetry-server.mjs to see live activity.