Agent skill
DeFi Overview
Daily overview of DeFi activity from DeFiLlama — TVL changes, top chains, top protocols
Install this agent skill to your Project
npx add-skill https://github.com/aaronjmars/aeon/tree/main/skills/defi-overview
SKILL.md
${var} — Chain or protocol to focus on (e.g. "solana", "aave", "arbitrum"). If empty, shows the full overview.
Read memory/MEMORY.md for context. Read the last 2 days of memory/logs/ to avoid repeating data.
If ${var} is set, focus the overview on that chain or protocol — show its TVL, top pools, volume, and compare against the broader market. Still include a brief top-level summary for context.
Steps
-
Fetch overall DeFi TVL and chain breakdown:
bash# Total TVL across all chains curl -s "https://api.llama.fi/v2/historicalChainTvl" # TVL per chain (current) curl -s "https://api.llama.fi/v2/chains" # Top protocols by TVL curl -s "https://api.llama.fi/protocols" -
Fetch stablecoin and volume data:
bash# DEX volume (24h) curl -s "https://api.llama.fi/overview/dexs?excludeTotalDataChart=true&excludeTotalDataChartBreakdown=true" # Stablecoin market cap overview curl -s "https://stablecoins.llama.fi/stablecoins?includePrices=false" # Yield/TVL overview for top pools curl -s "https://yields.llama.fi/pools" | jq '[.data | sort_by(-.tvlUsd) | .[:20] | .[] | {project, chain, symbol, tvlUsd, apy}]' -
Analyze and surface what matters:
- Total DeFi TVL — current value and 24h / 7d change
- Top 5 chains by TVL — with 24h change percentage
- Biggest TVL movers — chains or protocols with largest 24h increase or decrease (filter for >5% moves)
- Top 5 protocols by TVL — with 24h change
- DEX volume — total 24h volume, top 3 DEXes
- Stablecoin market cap — total and any notable shifts
- Top yields — 3 highest APY pools with >$10M TVL (skip scam-tier APYs)
-
Compare against yesterday's log if available — flag anything that changed significantly.
-
Send via
./notify(under 4000 chars):*DeFi Overview — ${today}* *TVL:* $X.XXB (±X.X% 24h) *Top Chains* 1. Ethereum: $XXB (+X.X%) 2. Solana: $XXB (+X.X%) ... *Biggest Movers* ↑ Chain/Protocol: +XX% ($XB → $XB) ↓ Chain/Protocol: -XX% ($XB → $XB) *Top Protocols* 1. Lido: $XXB (+X.X%) 2. AAVE: $XXB (+X.X%) ... *DEX Volume (24h):* $X.XB Top: Uniswap $XB, Jupiter $XB, ... *Stables:* $XXXB total *Top Yields (>$10M TVL)* Pool — X.X% APY ($XM TVL) -
Log to memory/logs/${today}.md.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Polymarket
Trending and top markets on Polymarket — volume, new markets, biggest movers
Daily Article
Research trending topics and write a publication-ready article
DeFi Monitor
Check pool health, positions, and yield rates for tracked protocols
Skill Evals
Evaluate skill output quality against assertion manifests — detects regressions before users notice
Monitor Polymarket
Monitor specific prediction markets for 24h price moves, volume changes, and fresh comments
Self Review
Weekly audit of what Aeon did, what failed, and what to improve
Didn't find tool you were looking for?