From bankr-agent-dev
Enables leveraged perpetual trading on Avantis via natural language prompts for opening long/short positions, stop losses, take profits, and position management on Base chain.
npx claudepluginhub bankrbot/claude-plugins --plugin bankr-agent-devThis skill uses the workspace's default tool permissions.
Trade perpetuals with leverage 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`.
Trade perpetuals with leverage via natural language prompts.
| Operation | Example Prompt |
|---|---|
| Open long | Open a 5x long on ETH with $100 |
| Open short | Open a 3x short on BTC with $50 |
| Long with stop loss | Open a 5x long on ETH with $100, stop loss at -10% |
| Long with take profit | Open a 5x long on ETH with $100, take profit at +20% |
| Full risk management | Open a 5x long on ETH with $100, stop loss at -10%, take profit at +20% |
| View positions | Show my Avantis positions |
| Close position | Close my ETH long position |
| Close all | Close all my Avantis positions |
| Check PnL | Check my PnL on Avantis |
Open a {leverage}x {long|short} on {asset} with {collateral}
Open a {leverage}x long on {asset} with {collateral}, stop loss at {price|percent}
Close my {asset} {long|short} position
Show my Avantis positions
Supported assets:
Chain: Base
import { execute } from "./bankr-client";
// Open leveraged position
await execute("Open a 5x long on ETH with $100, stop loss at -10%");
// Check positions
await execute("Show my Avantis positions");
// Close position
await execute("Close my ETH long position");
bankr-client-patterns - Client setup and execute functionbankr-api-basics - API fundamentalsbankr-market-research - Price data for trading decisions