@curless/create-agentbank
v0.1.9
Published
Scaffold an agentbank starter in seconds: `npm create @curless/agentbank`. Pick a module — paywall (charge agents per call), merchant (accept agent payments), or agent (buyer with spend control).
Readme
@curless/create-agentbank
Scaffold an agentbank starter in seconds. Pick the module for what you're building — you don't take the whole bank, just the part you need.
npm create @curless/agentbank my-app
# or
npx @curless/create-agentbank my-app --template paywallTemplates
| Template | What you get |
|---|---|
| paywall | An MCP server with a paid tool — charge agents per call (@curless/agentbank-mcp-pay) |
| merchant | A merchant backend — keep your catalog + prices, open a checkout for an agent's order (Hono; money lands in your account) |
| agent | A buyer agent — OAuth + spend control (@curless/agentbank-sdk) |
Each starter ships a package.json pinned to the published SDKs, a working
src/index.ts, an .env.example, and a README.
npx @curless/create-agentbank my-app -t paywall
cd my-app
cp .env.example .env # fill in your agentbank keys
npm install && npm run devFlags: --template/-t <name>, --force (overwrite), --yes/-y (no prompts),
--help.
MIT
