Help us improve
Share bugs, ideas, or general feedback.
From bankr-agent-dev
Deploys ERC20 tokens on Base/Unichain, updates metadata like descriptions/socials/images/reward recipients, checks/claims Clanker trading fees. For token launch tools and integrations.
npx claudepluginhub bankrbot/claude-plugins --plugin bankr-agent-devHow this skill is triggered — by the user, by Claude, or both
Slash command
/bankr-agent-dev:bankr-token-deploymentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Deploy and manage tokens via natural language prompts.
Deploys and manages ERC20 tokens on Base and Unichain using Clanker. Covers deployment parameters, metadata updates, fee claims, rate limits, and common issues.
Creates and launches meme coins on crypto launchpads (Pump.fun, FourMeme, etc.) via bonding curve, or queries launchpad creation stats using GMGN CLI. Requires private key.
Provides reusable TypeScript bankr-client.ts, viem-based executor.ts, and config files for Bankr x402 SDK projects with USDC micropayments on Base.
Share bugs, ideas, or general feedback.
Deploy and manage tokens via natural language prompts.
| Operation | Example Prompt |
|---|---|
| Deploy token | Deploy a token called MyToken with symbol MTK |
| Deploy with description | Deploy token MyToken (MTK) with description: A community token |
| Deploy with socials | Deploy token MyToken (MTK) with website https://mytoken.xyz and Twitter @mytoken |
| Check fees | Check my Clanker fees |
| Claim fees | Claim all my Clanker fees |
| Claim for token | Claim fees for my token MTK |
| Claim legacy fees | Claim legacy Clanker fees |
| Update description | Update description for MTK: New description here |
| Update socials | Update MTK Twitter to @newhandle |
| Update image | Update logo for MTK to https://... |
| Update reward recipient | Update reward recipient for MTK to 0x... |
Deploy a token called {name} with symbol {symbol}
Deploy token {name} ({symbol}) with description: {description}
Deploy token {name} ({symbol}) with website {url} and Twitter @{handle}
Check my Clanker fees
Claim all my Clanker fees
Update description for {symbol}: {new_description}
Update {symbol} Twitter to @{handle}
Supported chains: Base (primary), Unichain (secondary)
Rate limits:
import { execute } from "./bankr-client";
// Deploy token
await execute("Deploy a token called MyToken with symbol MTK");
// With socials
await execute("Deploy token MyToken (MTK) with website https://mytoken.xyz and Twitter @mytoken");
// Check and claim fees
await execute("Check my Clanker fees");
await execute("Claim all my Clanker fees");
bankr-client-patterns - Client setup and execute functionbankr-api-basics - API fundamentalsbankr-token-trading - Trade deployed tokens