Claude-skill-registry Bankr Dev - Automation
This skill should be used when building automated trading systems, implementing limit orders, or adding DCA/TWAP functionality. Covers limit orders, stop losses, DCA schedules, and TWAP execution.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/bankr-automation" ~/.claude/skills/majiayu000-claude-skill-registry-bankr-dev-automation && rm -rf "$T"
manifest:
skills/data/bankr-automation/SKILL.mdsource content
Automation Capability
Create and manage automated orders via natural language prompts.
What You Can Do
| Operation | Example Prompt |
|---|---|
| Limit buy | |
| Limit buy with amount | |
| Limit sell | |
| Stop loss (price) | |
| Stop loss (percent) | |
| DCA | |
| DCA with duration | |
| TWAP buy | |
| TWAP sell | |
| Scheduled command | |
| View automations | |
| View limit orders | |
| Cancel automation | |
| Cancel all | |
Prompt Patterns
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)
Usage
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");
Related Skills
- Client setup and execute functionbankr-client-patterns
- API fundamentalsbankr-api-basics
- Immediate tradesbankr-token-trading