Defi portfolio tracker
DEFI-focused skill pack for agentic assistants
npx -y skills add auralshin/agent-skills --skill defi-portfolio-trackerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use this skill to map a wallet's cross-chain DeFi positions, compute net worth and leverage, and highlight liquidation or concentration risk.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.5 KB, 561 tokens by cl100k_base, as published. Nobody here has run it
DeFi Portfolio Tracker
Purpose
Build a complete snapshot of wallet exposure across spot assets, LPs, staking, vaults, and debt positions.
Use this skill when
- The user provides a wallet address / ENS / list of wallets.
- The task is portfolio decomposition, debt health, or exposure review.
- The user asks for net worth, PnL proxy, or risk hot spots.
Do not use this skill when
- The task is protocol-level risk scoring (use
defi-risk-evaluator). - The task is transaction construction/signing.
Workflow
- Resolve identity inputs (address/ENS) and target chains.
- Collect balances and position data from preferred portfolio providers.
- Normalize positions using
references/position-schema.md. - Calculate totals:
- Gross assets
- Gross debt
- Net worth (
assets - debt)
- Compute risk indicators:
- Concentration by token and protocol
- Leverage ratio
- Borrow health factor buckets (from
references/risk-thresholds.md)
- Return structured output and explicit caveats.
Rules
- Treat all valuation as timestamped snapshots.
- Separate wallet-native spot holdings from DeFi positions.
- Never assume historical PnL unless transaction history is explicitly available.
- Report unknown pricing or illiquid assets separately.
Required output format
{
"wallet": "string",
"snapshot_time": "ISO-8601",
"by_chain": [
{
"chain": "string",
"assets_usd": 0,
"debt_usd": 0,
"net_worth_usd": 0,
"positions": [
{
"protocol": "string",
"position_type": "spot|lp|staking|lending_supply|lending_borrow|vault",
"asset": "string",
"amount": 0,
"value_usd": 0,
"debt_usd": 0,
"health_factor": 0
}
]
}
],
"portfolio_totals": {
"assets_usd": 0,
"debt_usd": 0,
"net_worth_usd": 0,
"leverage_ratio": 0
},
"risk_flags": ["string"],
"summary": "2-4 sentence summary"
}
Bundled resources
references/position-schema.md: Canonical position schema.references/risk-thresholds.md: Health factor and concentration thresholds.scripts/portfolio_summary.py: Deterministic net worth + risk aggregation from normalized position JSON.