This pulls together a comprehensive DeFi market snapshot by hitting DefiLlama's API across seven different data points: global TVL and volume, category rankings, top chains and protocols, recent hacks and fundraises, stablecoin supply, and ETF flows. You'd use it when someone asks "what's happening in DeFi" or wants a weekly recap without having to stitch together multiple queries themselves. The workflow is solid and the output format makes sense, though you're getting a lot of data back so the response will be dense. One nice touch is the bull/bear signal logic at the end that combines stablecoin supply, ETF flows, and TVL direction into actual market insight rather than just dumping numbers.
npx -y skills add defillama/defillama-skills --skill defi-market-overview --agent claude-codeInstalls into .claude/skills of the current project.
Produce a high-level snapshot of the entire DeFi ecosystem by pulling data across categories, chains, protocols, events, stablecoins, and institutional flows.
Get the aggregate DeFi TVL, total DEX volume, and derivatives volume.
defillama:get_market_totals
metrics: ["tvl_base", "tvl_base_7d_pct_change", "volume_dexs_1d", "volume_derivatives_1d"]
This is a single-row global snapshot. NO fees/revenue here — those come from category/chain views.
Get the top DeFi categories ranked by TVL and fees.
defillama:get_category_metrics
This shows which sectors (DEXes, lending, liquid staking, etc.) are leading the market.
Fetch the leading chains by TVL.
defillama:get_chain_metrics
limit: 10
Fetch the leading protocols by TVL.
defillama:get_protocol_metrics
limit: 10
Check for recent hacks or exploits.
defillama:get_events
event_type: "hacks"
Check for recent funding rounds and investments.
defillama:get_events
event_type: "raises"
Get total stablecoin market and top stablecoins.
defillama:get_stablecoin_supply
Stablecoin supply growth is a proxy for capital entering the crypto ecosystem.
Check recent institutional activity through ETFs.
defillama:get_etf_flows
Present the report with these sections in order:
start_date / end_date params for custom time windows (e.g.,
weekly or monthly recaps) instead of fixed periods.binance/binance-skills-hub
binance/binance-skills-hub