From bankr-agent-dev
Creates and manages automated trading orders including limit buys/sells, stop losses, DCA schedules, TWAP execution via natural language prompts for EVM and Solana chains.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bankr-agent-dev:bankr-automationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create and manage automated orders via natural language prompts.
Create and manage automated orders via natural language prompts.
| Operation | Example Prompt |
|---|---|
| Limit buy | Set a limit order to buy ETH at $3,000 |
| Limit buy with amount | Set a limit order to buy $500 of ETH at $3,000 |
| Limit sell | Limit sell my ETH when it hits $4,000 |
| Stop loss (price) | Set stop loss for my ETH at $2,800 |
| Stop loss (percent) | Stop loss: sell ETH if it drops 10% |
| DCA | DCA $100 into ETH every week |
| DCA with duration | DCA $50 into BTC every day for 1 month |
| TWAP buy | TWAP buy $5000 of ETH over 24 hours |
| TWAP sell | TWAP sell 1 ETH over 4 hours |
| Scheduled command | Every Monday, buy $100 of ETH |
| View automations | Show my automations |
| View limit orders | What limit orders do I have? |
| Cancel automation | Cancel automation abc123 |
| Cancel all | Cancel all my automations |
Set a limit order to buy {token} at {price}
Set stop loss for my {token} at {price|percent}
DCA {amount} into {token} {frequency} [for {duration}]
TWAP buy {amount} of {token} over {duration}
Show my automations
Cancel automation {id}
Frequencies: every hour, every day, every week, every month
Supported chains: Base, Polygon, Ethereum (EVM), Solana (Jupiter triggers)
import { execute } from "./bankr-client";
// Create limit order
await execute("Set a limit order to buy $500 of ETH at $3,000");
// Create DCA
await execute("DCA $100 into ETH every week for 3 months");
// Create TWAP
await execute("TWAP buy $5000 of ETH over 24 hours");
// View automations
await execute("Show my automations");
bankr-client-patterns - Client setup and execute functionbankr-api-basics - API fundamentalsbankr-token-trading - Immediate tradesnpx claudepluginhub bankrbot/claude-plugins --plugin bankr-agent-devGuides setup and management of automated trading strategies including limit orders, stop losses, DCA, TWAP, schedules for Bankr on EVM chains and Solana.
Compose mp CLI commands with cron/launchd to run unattended trading strategies: DCA, limit orders, and stop losses.
Executes large orders on Phoenix DEX as time-weighted slices to reduce market impact. Uses Vulcan's strategy runner for automated tick-by-tick execution with monitoring.