From bankr-agent-dev
Executes token buys, sells, swaps, cross-chain bridges, and ETH/WETH conversions via natural language prompts. Supports chains like Ethereum, Base, Polygon, Solana; handles USD, percentage, exact amounts.
npx claudepluginhub bankrbot/claude-plugins --plugin bankr-agent-devThis skill uses the workspace's default tool permissions.
Execute token swaps and trades via natural language prompts.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Execute token swaps and trades via natural language prompts.
| Operation | Example Prompt |
|---|---|
| Buy tokens | Buy $50 of ETH |
| Sell tokens | Sell 10% of my USDC |
| Swap tokens | Swap 0.1 ETH for USDC |
| Cross-chain bridge | Bridge 100 USDC from Ethereum to Base |
| Cross-chain swap | Swap ETH on Ethereum for USDC on Polygon |
| Wrap ETH | Convert 1 ETH to WETH |
| Unwrap WETH | Convert 1 WETH to ETH |
Buy {amount} of {token} [on {chain}]
Sell {amount} of {token} [on {chain}]
Swap {amount} {fromToken} for {toToken} [on {chain}]
Bridge {amount} {token} from {sourceChain} to {destChain}
Amount formats:
$50, $10010%, 50%0.5 ETH, 100 USDCSupported chains: Base, Polygon, Ethereum, Unichain, Solana
import { execute } from "./bankr-client";
// Simple trade
await execute("Buy $50 of ETH on Base");
// Cross-chain
await execute("Bridge 100 USDC from Ethereum to Base");
bankr-client-patterns - Client setup and execute functionbankr-api-basics - API fundamentalsbankr-market-research - Price data for trading decisions