AgentSkillsCN

Bankr Dev - Portfolio

当用户需要构建投资组合仪表板、实现余额查询,或添加多链持仓视图时,应使用此技能。涵盖各条区块链上的余额、持仓与估值。

SKILL.md
--- frontmatter
name: Bankr Dev - Portfolio
description: This skill should be used when building portfolio dashboards, implementing balance checking, or adding multi-chain holdings views. Covers balances, holdings, and valuations across chains.
version: 1.0.0

Portfolio Capability

Query portfolio data and balances via natural language prompts.

What You Can Do

OperationExample Prompt
Total portfolioShow my portfolio
Total balanceWhat's my total balance?
All holdingsList all my crypto holdings
Wallet valueHow much is my wallet worth?
Chain balanceShow my Base balance
Chain holdingsWhat tokens do I have on Polygon?
Token balanceHow much ETH do I have?
Token across chainsShow my USDC on all chains
Largest holdingWhat's my largest holding?
Token locationWhere do I have the most ETH?

Prompt Patterns

code
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

Usage

typescript
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");

Related Skills

  • bankr-client-patterns - Client setup and execute function
  • bankr-api-basics - API fundamentals
  • bankr-token-trading - Trade based on portfolio data