Help us improve
Share bugs, ideas, or general feedback.
From bankr-agent-dev
Queries crypto portfolio balances, holdings, and valuations across Base, Polygon, Ethereum, Unichain, Solana via natural language prompts. For portfolio dashboards, balance checks, multi-chain views.
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-portfolioThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query portfolio data and balances via natural language prompts.
Queries token balances and aggregates portfolio across Base, Polygon, Ethereum, Unichain, Solana chains with USD valuations and real-time prices.
Queries multi-chain token balances, portfolio values, and NFT holdings using Bankr SDK via natural language prompts. Supports Base, Ethereum, Polygon, Solana for wallet checks and asset overviews.
Looks up wallet portfolio value, token balances, and DeFi positions across 20+ chains including XLayer, Solana, Ethereum, and Base. Requires an explicit public address.
Share bugs, ideas, or general feedback.
Query portfolio data and balances via natural language prompts.
| Operation | Example Prompt |
|---|---|
| Total portfolio | Show my portfolio |
| Total balance | What's my total balance? |
| All holdings | List all my crypto holdings |
| Wallet value | How much is my wallet worth? |
| Chain balance | Show my Base balance |
| Chain holdings | What tokens do I have on Polygon? |
| Token balance | How much ETH do I have? |
| Token across chains | Show my USDC on all chains |
| Largest holding | What's my largest holding? |
| Token location | Where do I have the most ETH? |
Show my portfolio
What's my total balance?
Show my {chain} balance
How much {token} do I have?
Show my {token} on all chains
What tokens do I have on {chain}?
Supported chains: Base, Polygon, Ethereum, Unichain, Solana
import { execute } from "./bankr-client";
// Full portfolio
await execute("Show my portfolio");
// Chain-specific
await execute("Show my Base balance");
// Token-specific
await execute("How much ETH do I have?");
// Token across chains
await execute("Show my USDC on all chains");
bankr-client-patterns - Client setup and execute functionbankr-api-basics - API fundamentalsbankr-token-trading - Trade based on portfolio data