Help us improve
Share bugs, ideas, or general feedback.
From bankr-x402-sdk-dev
Scaffolds a TypeScript/Node.js project using the Bankr x402 SDK. Supports bot, web-service, dashboard, and CLI types with customizable structure and files.
npx claudepluginhub bankrbot/claude-plugins --plugin bankr-x402-sdk-devHow this command is triggered — by the user, by Claude, or both
Slash command
/bankr-x402-sdk-dev:scaffold project-typeThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# x402 SDK Project Scaffold Create a complete TypeScript/Node.js project scaffold for building on the Bankr x402 SDK. ## Process 1. **Determine project type** - If `$ARGUMENTS` specifies a type, use it. Otherwise, ask the user. Load the `x402-project-templates` skill for available types: - **bot** - Automated trading bot, price monitor, portfolio rebalancer, scheduled task - **web-service** - HTTP API that wraps Bankr SDK for mobile apps or integrations - **dashboard** - Web UI for portfolio tracking, swap interface, monitoring - **cli** - Command-line tool for Bankr oper...
/scaffoldScaffolds a TypeScript/Node.js project using the Bankr Agent API. Supports bot, web-service, dashboard, or CLI types via project-type argument.
/express-api-scaffoldGenerates production-ready Express.js REST API boilerplate with TypeScript, JWT auth, Prisma/TypeORM database, Zod validation, Jest tests, and Docker. Accepts project name and --database, --auth flags.
/bun-initInitializes a new Bun project with optional project-name and template (hono, next, nuxt, sveltekit, tanstack, basic). Scaffolds structure, installs dependencies, optimizes for Bun, initializes git, and shows next steps.
/tanstack-startBuilds full-stack TanStack Start app on Cloudflare Workers from scratch with database, auth, routes, dashboard, verification, and deployment. Optional [project-name].
/abstract-quickstartScaffolds a new Abstract (Ethereum L2, ZK Stack) project: React app with AGW and network config, smart contracts via Foundry/Hardhat, or both.
/svelte-scaffoldScaffolds new SvelteKit projects, features, or modules with best practices, optimal structure, TypeScript, Tailwind, auth, database, and deployment configs.
Share bugs, ideas, or general feedback.
Create a complete TypeScript/Node.js project scaffold for building on the Bankr x402 SDK.
Determine project type - If $ARGUMENTS specifies a type, use it. Otherwise, ask the user.
Load the x402-project-templates skill for available types:
Ask for project details:
my-trading-bot)Create project structure:
x402-project-templates skill for the directory structurex402-client-patterns skill for common files and client codemkdir -pExplain next steps:
bun install && bun dev or npm install && npm run dev)Core Skills (always load):
x402-project-templates - Directory structures for each project typex402-client-patterns - bankr-client.ts and common files (package.json, tsconfig.json, .env.example, .gitignore)sdk-capabilities - SDK operation referenceCapability Skills (load based on project purpose):
sdk-token-swaps - For trading bots: swap patterns, approval handlingsdk-transaction-builder - For custom transfers, NFT ops, bridgessdk-balance-queries - For dashboards: portfolio queries, balance trackingsdk-wallet-operations - For multi-wallet setupssdk-job-management - For advanced: job polling, cancellationmkdir -p