APECLAW SKILLS

Library of Alexandria

SkillCards are hashed, published onchain, and referenced immutably. Mint a SkillNFT to route revenue to PodVault (EIP-2981) and leave a permanent audit trail via ReceiptRegistry.
10,032
Total Skills
10,009
Vetted & Verified
10,024
Published Onchain
0
Community Contributed

Getting Started

1) Install ApeClaw

LIVE

Open any terminal and run:

npx ape-claw skill install
Requires OpenClaw — install OpenClaw first. Add --starter-pack for 61 curated skills. Skills are installed to ~/.openclaw/skills/. Works on macOS, Linux, and Windows (PowerShell).

2) Browse the Library

LIVE

Browse 10,000+ skills across DeFi, NFTs, data analysis, automation, and other categories. Each skill is vetted before inclusion.

3) Install a Skill

LIVE

Install any skill by slug from the command line, or browse below and click Install to add to your agent.

npx ape-claw skill install lincoln-ai

3) Mint a SkillNFT (onchain identity)

ALPHA

Mint creates a persistent skill identity on ApeChain. Royalties can route into a Pod receiver (PodVault) for revenue share across the Pod.

ape-claw v2 skill mint --royalty-receiver <PodVault address> --royalty-bps 500 --json

4) Publish immutable versions

ALPHA

Publishing anchors an immutable version with a contentHash + uri. The chain becomes the library source of truth.

ape-claw v2 skill publish --skillId 1 --file skillcards/seed/apeclaw-nft-autobuy.v1.json --json

Imported Skills

Browse the full library of vetted SkillCards. Filter by risk tier, search by name, or show only onchain-published skills.

Results: LOADING

Add a Skill

Submit a SkillCard JSON to the global ApeClaw library. Once vetted, it becomes available to every agent and can be minted as a SkillNFT onchain.

1
Choose a Template
START HERE
LOW RISK
Read-only / Browse
Search, summarize, or display data. No writes, no spend.
MEDIUM RISK
Writes / Automation
Create, update, or automate with caps. Confirm phrases recommended.
HIGH RISK
Spend / Escrow
Value-moving operations. Strict opt-in with safety gates required.
or paste your own JSON below · Read the contributing guide
2
Edit SkillCard JSON
Never paste private keys, API keys, or secrets. SkillCards are public metadata + execution bindings.
Preview: —
3
Submit to Library
Auth: not set
4
Your Submitted Skills
AUTO
📦
No submissions yet
Complete steps 1-3 above to submit your first skill.
Once submitted, it appears here with mint/publish commands.
Auto-filled from backend. Only edit if you need custom addresses.
Mint/publish commands use env var APE_CLAW_V2_PRIVATE_KEY (never paste keys here).

How It Works

Immutable Versions

LIVE

Skills are published as immutable versions with a contentHash and uri. The chain is the source of truth: UIs can disappear and the library still exists.

Revenue Share

COMING SOON

SkillNFT royalties route to a shared PodVault. Contribute skills, earn revenue when they are used onchain.

Onchain Receipts

ALPHA

Append-only audit anchors keyed by traceIdHash. What happened truth without trusting a backend.

Safety Posture

ENFORCED

High-risk skills are strict opt-in. Pod default is dry-run with a kill switch, runtime cap, and auditable logs.

ApeChain Network

All ApeClaw v2 contracts are deployed on ApeChain (Chain ID 33139). Intents, receipts, and skill versions are immutable onchain primitives.

SkillNFTs
Published
Vetted
ApeChain
Network
Deployed Contracts
LOADING
Loading deployment data...

Intents

IntentRegistry is a minimal primitive for solver-style architectures. This UI never signs onchain — it generates CLI commands you run locally.

1
Create Intent
SAFE

Post a work order for solvers to discover and fulfill. Define the task goal, constraints, and optional expiry.

ape-claw v2 intent create --rpc <url> --privateKey "$APE_CLAW_V2_PRIVATE_KEY" --intents <addr> --payload '{...}' --json
2
Cancel Intent
SAFE

Revoke a stale or unwanted intent by its ID. Only the creator can cancel.

ape-claw v2 intent cancel --rpc <url> --privateKey "$APE_CLAW_V2_PRIVATE_KEY" --intents <addr> --intentId <id> --json
Solver network is the missing piece (P2). This ships the primitive + command surface.
Onchain guide Plan status Swarm model

Receipts

Receipts are the onchain memory anchor primitive. Append-only audit trail keyed by traceIdHash. This UI reads only — it never signs transactions.

Receipt Explorer
READ-ONLY

Look up any receipt by its traceId. You can copy the CLI command to run locally, or fetch directly from the backend API if configured.

ape-claw v2 receipt get --rpc <url> --receipts <addr> --traceId "<traceId>" --json
Result: —
+
Record a Receipt (CLI)
WRITE

Anchor a new receipt onchain. This is a write operation — run it via CLI with your private key. The receipt becomes immutable and verifiable.

ape-claw v2 receipt record \
  --traceId "nft_buy_abc123" \
  --subject "agent:my-bot" \
  --payload '{"kind":"nft.buy.confirmed","price":"0.5 APE"}' \
  --json
Receipts are append-only. Once recorded, they cannot be modified or deleted. The traceIdHash + contentHash pair is the onchain truth.
Onchain guide Swarm model