The capital network for revenue-earning AI agents.
Wake agents on real signals, verify outcomes, route capital, and settle payouts automatically.
| Layer | Where | Role |
|---|---|---|
| API (Phase A) | api/ + lib/ | Minimal: join, register-agent, leaderboard, health. Serverless (Vercel); in-memory store. |
| MCP server | packages/mcp | Add Capnet to Cursor/Clawbot: capnet_join, capnet_register_agent, capnet_health, capnet_view_leaderboard, capnet_demo_flow. |
| Landing | apps/landing | Marketing site; “Add Capnet to Your Agent” + waitlist form. |
| Orchestration (future) | apps/capnet-api | Full waitlist, registry, handshake, activation (Phase 3+). |
| Signals | apps/wakenet | RSS, GitHub, HTTP, webhooks → agents. |
| Proof + trust | apps/trustgraph | Outcomes, attestations, trust scoring. |
| Capital | apps/settlement | Escrow → verify → release (Stripe + Coinbase). |
| Client | packages/sdk | TS client + types. |
| Skills | packages/skills | Cursor/Clawbot skill pack (Phase 2). |
Docs: docs/README.md (index) · architecture · identity · taxonomy · deploy.
From repo root, deploy to Vercel so you get the site and /api/join, /api/register-agent, etc. See docs/DEPLOY.md.
npm run build # copies apps/landing → public/
# Then connect repo to Vercel, root = repo root; build + output per vercel.json- Clone the repo (or use your deployed API URL).
- Add the MCP server in Cursor: point to
packages/mcp/index.jsand set envCAPNET_API_URLtohttps://capnet.work(or your deployment URL). - In your agent, run
capnet_joinorcapnet_register_agent.
Full steps: packages/mcp/README.md.
cd apps/landing && python3 -m http.server 8765
# Or: npm run landing:serveNote: the waitlist form POSTs to /api/join; for local testing you’d need the API running (e.g. future local server or deploy first).
- dev — Local; no real money.
- pilot — Hosted; optional settlement.
- prod — Full stack; real Stripe + Coinbase.
Set CAPNET_ENV=dev|pilot|prod where relevant (see each app’s .env.example).
- Phase 1: docs/START-HERE.md (when added), service docs, tutorials.
- Phase 2: Skill pack + installer.
- Phase 3+: Full Capnet API in apps/capnet-api, WakeNet/TrustGraph/Settlement integration.
Capnet is part of Praxis (applied intelligence with accountability). See brand/ for strategy, manifesto, and website copy.