ape-claw 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/.cursor/skills/ape-claw/SKILL.md +322 -0
  2. package/LICENSE +21 -0
  3. package/README.md +826 -0
  4. package/allowlists/opensea-slug-overrides.json +13 -0
  5. package/allowlists/recommended.apechain.json +322 -0
  6. package/config/clawbots.example.json +3 -0
  7. package/config/policy.example.json +27 -0
  8. package/data/starter-pack-bundle.json +1 -0
  9. package/data/starter-pack.json +495 -0
  10. package/docs/ACP_BOUNTIES.md +108 -0
  11. package/docs/APECLAW_V2_ALPHA.md +206 -0
  12. package/docs/AUTONOMY_AND_SUBSTRATE.md +69 -0
  13. package/docs/CLAWBOTS_AND_INVITES.md +102 -0
  14. package/docs/CLI_GUIDE.md +124 -0
  15. package/docs/CONTRIBUTING.md +130 -0
  16. package/docs/DASHBOARD_GUIDE.md +108 -0
  17. package/docs/GLOBAL_BACKEND.md +145 -0
  18. package/docs/ONCHAIN_V2_GUIDE.md +140 -0
  19. package/docs/PRODUCT_OVERVIEW.md +127 -0
  20. package/docs/README.md +40 -0
  21. package/docs/SKILLCARDS_AND_IMPORTER.md +147 -0
  22. package/docs/STARTER_PACK.md +297 -0
  23. package/docs/SUPPORTED_NETWORKS.md +58 -0
  24. package/docs/TELEMETRY_AND_EVENTS.md +103 -0
  25. package/docs/THE_POD_RUNNER.md +198 -0
  26. package/docs/V1_WORKFLOWS.md +108 -0
  27. package/docs/V2_ONCHAIN_SKILLS.md +157 -0
  28. package/docs/WEB4_PLAN_STATUS.md +95 -0
  29. package/docs/WEB4_SWARM_MODEL.md +104 -0
  30. package/docs/archive/AUTONOMY_AND_SUBSTRATE.md +66 -0
  31. package/docs/archive/WEB4_PLAN_STATUS.md +93 -0
  32. package/docs/archive/WEB4_SWARM_MODEL.md +98 -0
  33. package/docs/developer/01-architecture.md +345 -0
  34. package/docs/developer/02-contracts.md +1034 -0
  35. package/docs/developer/03-writing-modules.md +513 -0
  36. package/docs/developer/04-skillcard-spec.md +336 -0
  37. package/docs/developer/05-backend-api.md +1079 -0
  38. package/docs/developer/06-telemetry.md +798 -0
  39. package/docs/developer/07-testing.md +546 -0
  40. package/docs/developer/08-contributing.md +211 -0
  41. package/docs/operator/01-quickstart.md +49 -0
  42. package/docs/operator/02-dashboard.md +174 -0
  43. package/docs/operator/03-cli-reference.md +818 -0
  44. package/docs/operator/04-skills-library.md +169 -0
  45. package/docs/operator/05-pod-operations.md +314 -0
  46. package/docs/operator/06-deployment.md +299 -0
  47. package/docs/operator/07-safety-and-policy.md +311 -0
  48. package/docs/operator/08-troubleshooting.md +457 -0
  49. package/docs/operator/09-env-reference.md +238 -0
  50. package/docs/social/STARTER_PACK_THREAD.md +209 -0
  51. package/package.json +77 -0
  52. package/skillcards/import-sources.json +93 -0
  53. package/skillcards/seed/acp-bounty-poll.v1.json +38 -0
  54. package/skillcards/seed/acp-bounty-post.v1.json +55 -0
  55. package/skillcards/seed/acp-browse.v1.json +41 -0
  56. package/skillcards/seed/acp-fulfill-and-route.v1.json +56 -0
  57. package/skillcards/seed/apeclaw-bridge-relay.v1.json +46 -0
  58. package/skillcards/seed/apeclaw-nft-autobuy.v1.json +60 -0
  59. package/skillcards/seed/apeclaw-receipt-recorder.v1.json +64 -0
  60. package/skillcards/seed/humanizer.v1.json +74 -0
  61. package/skillcards/seed/otherside-navigator.v1.json +116 -0
  62. package/skillcards/seed/stonkbrokers-launcher.v1.json +280 -0
  63. package/skillcards/seed/walkie-p2p.v1.json +66 -0
  64. package/src/cli/index.mjs +8 -0
  65. package/src/cli.mjs +1929 -0
  66. package/src/lib/bridge-relay.mjs +294 -0
  67. package/src/lib/clawbots.mjs +94 -0
  68. package/src/lib/io.mjs +36 -0
  69. package/src/lib/market.mjs +233 -0
  70. package/src/lib/nft-opensea.mjs +159 -0
  71. package/src/lib/paths.mjs +17 -0
  72. package/src/lib/pod-init.mjs +40 -0
  73. package/src/lib/policy.mjs +112 -0
  74. package/src/lib/rpc.mjs +49 -0
  75. package/src/lib/telemetry.mjs +92 -0
  76. package/src/lib/v2-onchain-abi.mjs +294 -0
  77. package/src/lib/v2-skillcard.mjs +27 -0
  78. package/src/server/index.mjs +169 -0
  79. package/src/server/logger.mjs +21 -0
  80. package/src/server/middleware/auth.mjs +90 -0
  81. package/src/server/middleware/body-limit.mjs +35 -0
  82. package/src/server/middleware/cors.mjs +33 -0
  83. package/src/server/middleware/rate-limit.mjs +44 -0
  84. package/src/server/routes/chat.mjs +178 -0
  85. package/src/server/routes/clawbots.mjs +182 -0
  86. package/src/server/routes/events.mjs +95 -0
  87. package/src/server/routes/health.mjs +72 -0
  88. package/src/server/routes/pod.mjs +64 -0
  89. package/src/server/routes/quotes.mjs +161 -0
  90. package/src/server/routes/skills.mjs +239 -0
  91. package/src/server/routes/static.mjs +161 -0
  92. package/src/server/routes/v2.mjs +48 -0
  93. package/src/server/sse.mjs +73 -0
  94. package/src/server/storage/file-backend.mjs +295 -0
  95. package/src/server/storage/index.mjs +37 -0
  96. package/src/server/storage/sqlite-backend.mjs +380 -0
  97. package/src/telemetry-server.mjs +1604 -0
  98. package/ui/css/dashboard.css +792 -0
  99. package/ui/css/skills.css +689 -0
  100. package/ui/docs.html +840 -0
  101. package/ui/favicon-180.png +0 -0
  102. package/ui/favicon-192.png +0 -0
  103. package/ui/favicon-32.png +0 -0
  104. package/ui/favicon-lobster.png +0 -0
  105. package/ui/favicon.svg +10 -0
  106. package/ui/index.html +2957 -0
  107. package/ui/js/dashboard.js +1766 -0
  108. package/ui/js/skills.js +1621 -0
  109. package/ui/pod.html +909 -0
  110. package/ui/shared/motion.css +286 -0
  111. package/ui/shared/motion.js +170 -0
  112. package/ui/shared/sidebar-nav.css +379 -0
  113. package/ui/shared/sidebar-nav.js +137 -0
  114. package/ui/skills.html +2879 -0
@@ -0,0 +1,209 @@
1
+ # ApeClaw Starter Pack — Tweet Thread
2
+
3
+ > Copy each numbered block as a separate tweet. Thread of 15.
4
+
5
+ ---
6
+
7
+ **1/15 — Hook**
8
+
9
+ You install ApeClaw. Your terminal asks one question:
10
+
11
+ "Install the starter pack? [Y/n]"
12
+
13
+ Press Enter. 61 skills load in about four seconds.
14
+
15
+ You now have a working agent setup. That's it. No browsing a marketplace for an hour.
16
+
17
+ ```
18
+ npx ape-claw skill install --scope local
19
+ ```
20
+
21
+ Here's what you actually get (thread)
22
+
23
+ ---
24
+
25
+ **2/15 — How we picked these**
26
+
27
+ We started with 10,000+ skills in the library.
28
+
29
+ Most of them are good. But a lot are niche: single-chain DeFi protocols, region-specific tax tools, things that need hardware you probably don't have. We cut all of that.
30
+
31
+ What's left: 61 skills that are useful whether you're a solo dev, a content team, or running a multi-agent setup.
32
+
33
+ Every one was security-scanned before inclusion.
34
+
35
+ ---
36
+
37
+ **3/15 — Productivity**
38
+
39
+ The ones you'll open first:
40
+
41
+ - GitHub CLI by @steipete: issues, PRs, CI, API queries. If you use GitHub, this just works.
42
+ - Gog by @steipete: Gmail, Calendar, Drive, Sheets, Docs from your terminal.
43
+ - Self-Improving Agent by @pskoett: watches its own failures and adjusts. Gets better over time.
44
+ - Find Skills by @JimLiuxinghai: ask "how do I X?" and it searches the full ecosystem for a matching skill.
45
+ - Humanizer by @blader: catches 24 AI writing patterns and rewrites them. We used it on this thread, actually.
46
+
47
+ ---
48
+
49
+ **4/15 — Developer tools**
50
+
51
+ Code Review Engine by @1kalin does automated review on PRs, diffs, or files. Catches things humans skim past.
52
+
53
+ API Architect (also @1kalin) handles design, build, test, docs, and security for APIs.
54
+
55
+ ClawRouter by @1bcmax picks the cheapest model that can handle the job. We measured 78% cost reduction on mixed workloads.
56
+
57
+ Newman runs @getpostman collections from CLI. Claw Sync by @arakichanxd backs up agent memory to GitHub with version control.
58
+
59
+ ---
60
+
61
+ **5/15 — Security**
62
+
63
+ Every external skill gets scanned before it runs. This isn't optional:
64
+
65
+ - Skill Security Audit by @amir_ag runs a mandatory pre-install check
66
+ - @GoPlusSecurity AgentGuard handles threat routing
67
+ - Security Guardian by @1999azzar protects credentials
68
+ - SoulFlow by @0xtommythomas isolates workflow execution
69
+ - ERCData by @0xreisearch does cryptographic data integrity on Base
70
+
71
+ We didn't want security to be something you add later. It's in the default install.
72
+
73
+ ---
74
+
75
+ **6/15 — Content and SEO**
76
+
77
+ Honestly surprised how many content skills made the cut. 14 of them.
78
+
79
+ Content Engine by @ariktulcha takes a topic and produces a published article in one run. Keyword Research and Content Gap Analysis handle the SEO research side. Technical SEO Auditor and On-Page Auditor catch the stuff Google penalizes you for.
80
+
81
+ The one I keep coming back to: GEO Content Optimizer. It optimizes for AI answer engines, not just traditional search. That matters now.
82
+
83
+ Content Quality Auditor by @aaron_he_zhu scores against CORE-EEAT criteria.
84
+
85
+ ---
86
+
87
+ **7/15 — Analytics**
88
+
89
+ Biz Reporter by @ariktulcha pulls data, spots trends, writes reports. Yahoo Finance CLI by @ajanraj gets stock quotes, financials, analyst targets.
90
+
91
+ Crypto Levels Analyzer calculates support and resistance for any pair. Not trading advice. Just math.
92
+
93
+ Mermaid Architect by @1999azzar generates flowcharts, sequence diagrams, ERDs. Alert Manager watches anything you point it at.
94
+
95
+ ---
96
+
97
+ **8/15 — Automation**
98
+
99
+ Task Decomposer is the one that surprised me. Give it a complex request and it breaks it into subtasks, then finds or builds skills for each piece.
100
+
101
+ Todoist CLI by @2mawi2 and Google Calendar wrapper handle scheduling. DevOps Engine by @1kalin covers CI/CD, infra, and observability. Client Flow by @ariktulcha onboards new clients in about 30 seconds.
102
+
103
+ ---
104
+
105
+ **9/15 — Social and outreach**
106
+
107
+ Telegram Bot Manager creates and manages bots. LinkedIn DM by @10madh sends personalized outreach. LinkedIn Follow-up tracks conversations in Google Sheets and drafts replies.
108
+
109
+ These are rate-limited and template-driven. They're CRM tools, not spam cannons.
110
+
111
+ ---
112
+
113
+ **10/15 — Memory and storage**
114
+
115
+ Agents forget everything between sessions. This is the fix:
116
+
117
+ Mema Brain by @1999azzar uses SQLite indexing with Redis for short-term context. Memory Curator by @77darius77 compresses 500-line logs into 80-line digests so your agent doesn't re-read everything. Memory Cache cuts redundant API calls with Redis. Obsidian Sync by @andybold does two-way sync between your agent and your notes.
118
+
119
+ If your agent can't remember what it did yesterday, it's going to repeat itself. These four skills prevent that.
120
+
121
+ ---
122
+
123
+ **11/15 — Integration and communication**
124
+
125
+ DevOps Bridge by @ariktulcha connects GitHub, CI/CD, Slack, and issue trackers into one surface. Codecast by @allanjeng live-streams agent sessions to Discord. RenderKit by @antoinedc turns JSON into hosted web pages. Open WebUI is a single API for Ollama, OpenAI, and other LLMs.
126
+
127
+ Then there's Walkie by @vikasprogrammer. Your agents can talk to each other over encrypted P2P channels. No server to run. Create a channel with a shared secret and two agents on different continents can coordinate.
128
+
129
+ walkie.sh
130
+
131
+ ---
132
+
133
+ **12/15 — Two worth knowing about**
134
+
135
+ Humanizer comes from @blader (github.com/blader/humanizer, 5k+ stars). It catches em dash abuse, puffery, rule-of-three patterns, AI vocabulary, sycophantic tone. 24 patterns total. We ran it on our own docs and it was a little embarrassing how much it caught.
136
+
137
+ Walkie by @vikasprogrammer (walkie.sh) does encrypted P2P messaging between agents using Hyperswarm DHT and Noise protocol. Same machine or different continents. No server, no account, no setup. Your agents coordinate without you watching.
138
+
139
+ Both are in the starter pack and seeded in the core install.
140
+
141
+ ---
142
+
143
+ **13/15 — What we left out**
144
+
145
+ - Single-chain DeFi (SushiSwap, TON.fun, Hyperliquid)
146
+ - Wallet operations that send funds or bridge (too dangerous for a default install)
147
+ - Platform-locked tools (Adobe, Kimai, Lemon Squeezy)
148
+ - Regional tools (Polish tax system, Feishu bridge)
149
+ - Experimental stuff (Otherside Navigator, Game Light Tracker)
150
+
151
+ All of these are still in the library at apeclaw.ai/skills. We just didn't put them in the box you get on day one.
152
+
153
+ ---
154
+
155
+ **14/15 — It's opt-in**
156
+
157
+ The prompt defaults to yes, but:
158
+
159
+ --starter-pack installs without asking
160
+ --no-starter-pack skips it
161
+ No flag means it asks you
162
+
163
+ You can install it later. You can also ignore it and pick from 10,000+ skills individually.
164
+
165
+ ---
166
+
167
+ **15/15**
168
+
169
+ Most agent platforms hand you a blank setup and a marketplace with thousands of options. You spend your first hour shopping instead of building.
170
+
171
+ We just ask one question after install. Press Enter and you have 61 skills that work. Skip it if you want.
172
+
173
+ Shout out to every builder tagged in this thread. The starter pack is their work.
174
+
175
+ apeclaw.ai/skills
176
+
177
+ ---
178
+
179
+ *End of thread.*
180
+
181
+ ---
182
+
183
+ ### Creator credits (GitHub → X where known)
184
+
185
+ | Skill(s) | Creator | GitHub | X (confirmed) |
186
+ |---|---|---|---|
187
+ | GitHub CLI, Gog | Peter Steinberger | @steipete | @steipete |
188
+ | Humanizer | blader | @blader | — |
189
+ | Walkie | vikasprogrammer | @vikasprogrammer | — |
190
+ | GoPlus AgentGuard | GoPlus Security | — | @GoPlusSecurity |
191
+ | ERCData, Rei | 0xreisearch | @0xreisearch | @0xreisearch |
192
+ | Code Review, API Architect, DevOps Engine | 1kalin | @1kalin | — |
193
+ | Self-Improving Agent | pskoett | @pskoett | — |
194
+ | Mema Brain, Memory Cache, Mermaid, Newman, Security Guardian | 1999azzar | @1999azzar | — |
195
+ | Biz Reporter, Content Engine, DevOps Bridge, Client Flow | ariktulcha | @ariktulcha | — |
196
+ | Find Skills | JimLiuxinghai | @JimLiuxinghai | — |
197
+ | Codecast | allanjeng | @allanjeng | — |
198
+ | RenderKit | antoinedc | @antoinedc | — |
199
+ | Obsidian Sync | andybold | @andybold | — |
200
+ | Memory Curator | 77darius77 | @77darius77 | — |
201
+ | Skill Security Audit | amir-ag | @amir_ag | — |
202
+ | SoulFlow | 0xtommythomas-dev | @0xtommythomas | — |
203
+ | LinkedIn DM, Follow-up | 10madh | @10madh | — |
204
+ | Todoist CLI | 2mawi2 | @2mawi2 | — |
205
+ | Yahoo Finance CLI | ajanraj | @ajanraj | — |
206
+ | Content Quality Auditor | aaron-he-zhu | @aaron_he_zhu | — |
207
+ | ClawRouter | 1bcmax | @1bcmax | — |
208
+
209
+ > **Note:** Handles marked "—" under X are GitHub usernames used as best-guess references. Verify before posting. Confirmed X handles: @steipete, @GoPlusSecurity, @0xreisearch.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "ape-claw",
3
+ "version": "0.1.0",
4
+ "description": "ApeChain bridge and NFT execution CLI with telemetry for OpenClaw agents",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/simplefarmer69/ape-claw.git"
9
+ },
10
+ "homepage": "https://apeclaw.ai",
11
+ "bugs": {
12
+ "url": "https://github.com/simplefarmer69/ape-claw/issues"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "type": "module",
18
+ "files": [
19
+ "src/**",
20
+ "ui/**",
21
+ "docs/**",
22
+ "config/policy.example.json",
23
+ "config/clawbots.example.json",
24
+ "allowlists/recommended.apechain.json",
25
+ "allowlists/opensea-slug-overrides.json",
26
+ "skillcards/seed/**",
27
+ "skillcards/import-sources.json",
28
+ "data/starter-pack.json",
29
+ "data/starter-pack-bundle.json",
30
+ ".cursor/skills/ape-claw/SKILL.md",
31
+ "README.md"
32
+ ],
33
+ "bin": {
34
+ "ape-claw": "src/cli/index.mjs"
35
+ },
36
+ "scripts": {
37
+ "test": "hardhat compile && node --test 'test/*.test.mjs' 'contracts-test/*.test.js' test-browser-console.mjs",
38
+ "test:install": "bash ./scripts/test-install.sh",
39
+ "telemetry": "node ./src/server/index.mjs",
40
+ "start:ui": "node ./src/server/index.mjs",
41
+ "telemetry:legacy": "node ./src/telemetry-server.mjs",
42
+ "contracts:compile": "hardhat compile",
43
+ "contracts:test": "hardhat test nodejs",
44
+ "contracts:test:solidity": "hardhat test solidity",
45
+ "contracts:seed": "hardhat run ./contracts-scripts/deploy-and-seed-v2-alpha.js",
46
+ "contracts:seed:apechain": "hardhat run ./contracts-scripts/deploy-and-seed-v2-alpha.js --network apechain",
47
+ "doctor": "node ./src/cli.mjs doctor --json",
48
+ "resolve:opensea-ca": "node ./scripts/resolve-ca-opensea.mjs",
49
+ "audit:allowlist": "node ./src/cli.mjs allowlist audit --json",
50
+ "audit:relay-rpcs": "node ./scripts/audit-relay-rpcs.mjs",
51
+ "skillcards:import": "node ./scripts/import-skillcards.mjs",
52
+ "skillcards:import:publish": "node ./scripts/import-skillcards.mjs --publish",
53
+ "skillcards:report": "node ./scripts/report-imported-skillcards.mjs",
54
+ "test:coverage": "c8 node --test test/cli.test.mjs test/policy.test.mjs test/server.test.mjs",
55
+ "dev": "node --watch ./src/server/index.mjs",
56
+ "prepublishOnly": "npm test"
57
+ },
58
+ "engines": {
59
+ "node": ">=22.10.0"
60
+ },
61
+ "dependencies": {
62
+ "better-sqlite3": "^12.6.2",
63
+ "opensea-js": "^8.0.15",
64
+ "pino": "^10.3.1",
65
+ "viem": "^2.45.3"
66
+ },
67
+ "devDependencies": {
68
+ "@nomicfoundation/hardhat-node-test-runner": "^3.0.8",
69
+ "@nomicfoundation/hardhat-verify": "^3.0.10",
70
+ "@nomicfoundation/hardhat-viem": "^3.0.2",
71
+ "@openzeppelin/contracts": "^5.4.0",
72
+ "c8": "^10.1.3",
73
+ "hardhat": "^3.1.8",
74
+ "playwright": "^1.58.2",
75
+ "sharp": "^0.34.5"
76
+ }
77
+ }
@@ -0,0 +1,93 @@
1
+ {
2
+ "sources": [
3
+ {
4
+ "source": "github_repo_skill_md",
5
+ "name": "BankrBot OpenClaw Skills (SKILL.md repo import)",
6
+ "owner": "BankrBot",
7
+ "repo": "openclaw-skills",
8
+ "ref": "main",
9
+ "basePath": "",
10
+ "slugPrefix": "bankr-openclaw",
11
+ "riskTier": 2,
12
+ "limit": 220
13
+ },
14
+ {
15
+ "source": "github_repo_skill_md",
16
+ "name": "ClawHub Mirror (openclaw/skills) — bulk import",
17
+ "owner": "openclaw",
18
+ "repo": "skills",
19
+ "ref": "main",
20
+ "basePath": "skills",
21
+ "slugPrefix": "clawhub",
22
+ "riskTier": 2,
23
+ "limit": 900
24
+ },
25
+ {
26
+ "source": "github_repo_skill_md",
27
+ "name": "ClawHub Mirror (openclaw/skills) — bulk import (batch 2)",
28
+ "owner": "openclaw",
29
+ "repo": "skills",
30
+ "ref": "main",
31
+ "basePath": "skills",
32
+ "slugPrefix": "clawhub",
33
+ "riskTier": 2,
34
+ "offset": 500,
35
+ "limit": 500
36
+ },
37
+ {
38
+ "source": "github_repo_skill_md",
39
+ "name": "Virtual Protocol ACP (Bounties + Skills marketplace)",
40
+ "owner": "Virtual-Protocol",
41
+ "repo": "openclaw-acp",
42
+ "ref": "main",
43
+ "basePath": "",
44
+ "slugPrefix": "acp",
45
+ "riskTier": 3,
46
+ "limit": 60
47
+ },
48
+ {
49
+ "source": "openclaw_skills",
50
+ "name": "Wechat Publisher (OpenClaw skills mirror)",
51
+ "owner": "0731coderlee-sudo",
52
+ "skillSlug": "wechat-publisher",
53
+ "slug": "openclaw-wechat-publisher",
54
+ "riskTier": 2
55
+ },
56
+ {
57
+ "source": "clawhub",
58
+ "name": "Super Skills",
59
+ "url": "https://clawhub.ai/10e9928a/super-skills",
60
+ "slug": "clawhub-super-skills",
61
+ "riskTier": 2
62
+ },
63
+ {
64
+ "source": "clawhub",
65
+ "name": "Stagehand Browser CLI",
66
+ "url": "https://clawhub.ai/skills/stagehand-browser-cli",
67
+ "slug": "clawhub-stagehand-browser-cli",
68
+ "riskTier": 3
69
+ },
70
+ {
71
+ "source": "clawhub",
72
+ "name": "Skill Reviewer",
73
+ "url": "https://clawhub.ai/skills/skill-reviewer",
74
+ "slug": "clawhub-skill-reviewer",
75
+ "riskTier": 1
76
+ },
77
+ {
78
+ "source": "clawhub",
79
+ "name": "CodeBuddy CLI for OpenClaw",
80
+ "url": "https://clawhub.ai/skills/codebuddy-cli",
81
+ "slug": "clawhub-codebuddy-cli",
82
+ "riskTier": 1
83
+ },
84
+ {
85
+ "source": "local",
86
+ "name": "ApeClaw NFT Autobuy (seed, local)",
87
+ "path": "skillcards/seed/apeclaw-nft-autobuy.v1.json",
88
+ "slug": "seed-apeclaw-nft-autobuy-local",
89
+ "riskTier": 1
90
+ }
91
+ ]
92
+ }
93
+
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "ACP Bounty (Poll + Match Lifecycle)",
3
+ "slug": "acp-bounty-poll",
4
+ "description": "Poll ACP bounty lifecycle: discover candidates, track claimed jobs, and surface deliverables. Intended for a Pod loop that keeps state and notifies a user.",
5
+ "version": "1.0.0",
6
+ "inputs_schema": {
7
+ "type": "object",
8
+ "properties": {}
9
+ },
10
+ "outputs_schema": {
11
+ "type": "object",
12
+ "required": ["ok"],
13
+ "properties": {
14
+ "ok": { "type": "boolean" },
15
+ "pendingMatch": { "type": ["array", "null"] },
16
+ "claimedJobs": { "type": ["array", "null"] },
17
+ "cleaned": { "type": ["array", "null"] }
18
+ }
19
+ },
20
+ "bindings": [
21
+ {
22
+ "type": "cli",
23
+ "command": "acp bounty poll --json"
24
+ }
25
+ ],
26
+ "constraints": {
27
+ "riskTier": 2,
28
+ "notes": [
29
+ "This is primarily read-only, but it can advance local lifecycle state. Still treat as sensitive output (may contain candidate info).",
30
+ "Recommended: record receipts for key transitions (candidate selected, job created, job completed, settlement)."
31
+ ]
32
+ },
33
+ "required_permissions": ["network"],
34
+ "examples": [],
35
+ "eval_packs": [],
36
+ "provenance": { "publisher": "apeclaw", "signed": false }
37
+ }
38
+
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "ACP Bounty (Post Work Request)",
3
+ "slug": "acp-bounty-post",
4
+ "description": "Post a bounty to ACP when no suitable provider is available via browse. Use strict opt-in and explicit budgets.",
5
+ "version": "1.0.0",
6
+ "inputs_schema": {
7
+ "type": "object",
8
+ "required": ["title", "description", "budgetUsdc", "sourceChannel"],
9
+ "properties": {
10
+ "title": { "type": "string", "minLength": 3 },
11
+ "description": { "type": "string", "minLength": 10 },
12
+ "budgetUsdc": { "type": "number", "exclusiveMinimum": 0, "description": "USDC budget for escrow funding." },
13
+ "tags": { "type": "string", "default": "", "description": "Comma-separated tags (optional)." },
14
+ "sourceChannel": { "type": "string", "default": "pod", "description": "Route notifications back to this channel (pod/discord/telegram/etc.)." }
15
+ }
16
+ },
17
+ "outputs_schema": {
18
+ "type": "object",
19
+ "required": ["ok"],
20
+ "properties": {
21
+ "ok": { "type": "boolean" },
22
+ "bountyId": { "type": ["string", "null"] }
23
+ }
24
+ },
25
+ "bindings": [
26
+ {
27
+ "type": "cli",
28
+ "command": "acp bounty create --title \"<title>\" --description \"<description>\" --budget <budgetUsdc> --tags \"<tags>\" --source-channel <sourceChannel> --json"
29
+ }
30
+ ],
31
+ "constraints": {
32
+ "riskTier": 3,
33
+ "notes": [
34
+ "This may fund USDC escrow. Treat as value-moving: require explicit user approval + spend caps before running.",
35
+ "Record receipts for bounty lifecycle events when possible (ReceiptRegistry).",
36
+ "ACP CLI must be installed and authenticated. Recommended: https://github.com/Virtual-Protocol/openclaw-acp"
37
+ ]
38
+ },
39
+ "required_permissions": ["funds_spend", "network"],
40
+ "examples": [
41
+ {
42
+ "title": "Post a bounty for a custom integration",
43
+ "value": {
44
+ "title": "OpenSea API integration for ApeChain collections",
45
+ "description": "Build a small Node module that fetches floor + last sale for an ApeChain allowlist; include tests and docs.",
46
+ "budgetUsdc": 250,
47
+ "tags": "node,api,opensea,apechain",
48
+ "sourceChannel": "pod"
49
+ }
50
+ }
51
+ ],
52
+ "eval_packs": [],
53
+ "provenance": { "publisher": "apeclaw", "signed": false }
54
+ }
55
+
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "ACP Browse (Discover Providers)",
3
+ "slug": "acp-browse",
4
+ "description": "Search the ACP marketplace for agents/offerings that can fulfill a task. Use before posting a bounty.",
5
+ "version": "1.0.0",
6
+ "inputs_schema": {
7
+ "type": "object",
8
+ "required": ["query"],
9
+ "properties": {
10
+ "query": { "type": "string", "minLength": 2, "description": "Natural language query for ACP provider discovery." }
11
+ }
12
+ },
13
+ "outputs_schema": {
14
+ "type": "object",
15
+ "required": ["ok"],
16
+ "properties": {
17
+ "ok": { "type": "boolean" },
18
+ "results": { "type": ["array", "null"] }
19
+ }
20
+ },
21
+ "bindings": [
22
+ {
23
+ "type": "cli",
24
+ "command": "acp browse \"<query>\" --json"
25
+ }
26
+ ],
27
+ "constraints": {
28
+ "riskTier": 1,
29
+ "notes": [
30
+ "ACP CLI must be installed and authenticated. Recommended: https://github.com/Virtual-Protocol/openclaw-acp",
31
+ "Run ACP commands from the ACP repo root (where its package.json/config.json lives), or ensure `acp` is in PATH."
32
+ ]
33
+ },
34
+ "required_permissions": ["network"],
35
+ "examples": [
36
+ { "title": "Find a video editor", "value": { "query": "short-form video editing for twitter thread" } }
37
+ ],
38
+ "eval_packs": [],
39
+ "provenance": { "publisher": "apeclaw", "signed": false }
40
+ }
41
+
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "ACP Fulfillment (Earn USDC → Route to PodVault)",
3
+ "slug": "acp-fulfill-and-route",
4
+ "description": "Run ACP seller workflows to fulfill bounties/jobs and route earned revenue to the Pod's shared receiver (PodVault). This is a strict opt-in, operations-heavy skill.",
5
+ "version": "1.0.0",
6
+ "inputs_schema": {
7
+ "type": "object",
8
+ "required": ["podVaultAddress"],
9
+ "properties": {
10
+ "podVaultAddress": { "type": "string", "description": "PodVault address used as the Pod-wide receiver." },
11
+ "notes": { "type": "string", "default": "", "description": "Optional run notes / runbook context." }
12
+ }
13
+ },
14
+ "outputs_schema": {
15
+ "type": "object",
16
+ "required": ["ok"],
17
+ "properties": {
18
+ "ok": { "type": "boolean" },
19
+ "status": { "type": ["string", "null"] }
20
+ }
21
+ },
22
+ "bindings": [
23
+ {
24
+ "type": "runbook",
25
+ "steps": [
26
+ "Install ACP: https://github.com/Virtual-Protocol/openclaw-acp",
27
+ "Authenticate/select agent: `acp login --json` then `acp agent list --json` / `acp agent switch ... --json`",
28
+ "Create/register your offering: `acp sell init <name>` then edit handler logic then `acp sell create <name>`",
29
+ "Start seller runtime: `acp serve start` (local) or deploy to Railway (`acp serve deploy railway`)",
30
+ "When paid, route earnings to the Pod receiver (PodVault): transfer USDC/native from the ACP agent wallet to `podVaultAddress`",
31
+ "Record receipt anchors for payouts/settlement (ReceiptRegistry) so the Pod can audit revenue routing"
32
+ ]
33
+ }
34
+ ],
35
+ "constraints": {
36
+ "riskTier": 3,
37
+ "notes": [
38
+ "ACP payouts typically settle to an agent wallet. To enforce Pod revenue share, route funds into the PodVault receiver after settlement.",
39
+ "This is strict opt-in. Do not run without explicit user approval and a Pod-level revenue-share agreement (REVENUE_SHARING.md).",
40
+ "Do not commit ACP `config.json` (contains API key)."
41
+ ]
42
+ },
43
+ "required_permissions": ["funds_receive", "funds_spend", "network", "process_spawn"],
44
+ "examples": [
45
+ {
46
+ "title": "Fulfill bounties and route revenue",
47
+ "value": {
48
+ "podVaultAddress": "0xPodVault...",
49
+ "notes": "Fulfill ACP jobs; after settlement, transfer USDC to PodVault; record receipts."
50
+ }
51
+ }
52
+ ],
53
+ "eval_packs": [],
54
+ "provenance": { "publisher": "apeclaw", "signed": false }
55
+ }
56
+
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "ApeClaw Bridge (Relay)",
3
+ "slug": "apeclaw-bridge-relay",
4
+ "description": "Quote and execute cross-chain bridging to ApeChain via Relay, with fee caps and confirmation gates.",
5
+ "version": "1.0.0",
6
+ "inputs_schema": {
7
+ "type": "object",
8
+ "required": ["from", "to", "token", "amount", "execute", "autonomous"],
9
+ "properties": {
10
+ "from": { "type": "string" },
11
+ "to": { "type": "string" },
12
+ "token": { "type": "string" },
13
+ "amount": { "type": "number", "exclusiveMinimum": 0 },
14
+ "execute": { "type": "boolean" },
15
+ "autonomous": { "type": "boolean" }
16
+ }
17
+ },
18
+ "outputs_schema": {
19
+ "type": "object",
20
+ "required": ["ok"],
21
+ "properties": {
22
+ "ok": { "type": "boolean" },
23
+ "requestId": { "type": "string" },
24
+ "status": { "type": "string" }
25
+ }
26
+ },
27
+ "bindings": [
28
+ {
29
+ "type": "cli",
30
+ "command": "ape-claw bridge quote --from <from> --amount <amount> --json && ape-claw bridge execute --request <requestId> --execute [--autonomous] --json"
31
+ }
32
+ ],
33
+ "constraints": {
34
+ "notes": [
35
+ "Fee caps and spend caps are enforced by config/policy.json and must pass before execution."
36
+ ]
37
+ },
38
+ "required_permissions": ["onchain_execute"],
39
+ "examples": [],
40
+ "eval_packs": [],
41
+ "provenance": {
42
+ "publisher": "apeclaw",
43
+ "signed": false
44
+ }
45
+ }
46
+