CCM
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
defillama avatar

Defi Market Overview

defillama/defillama-skills
264 installs26 stars
Summary

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.

Install to Claude Code

npx -y skills add defillama/defillama-skills --skill defi-market-overview --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Files
SKILL.mdView on GitHub

DeFi Market Overview

Produce a high-level snapshot of the entire DeFi ecosystem by pulling data across categories, chains, protocols, events, stablecoins, and institutional flows.

Workflow

Step 1 - Global market totals

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.

Step 2 - Category metrics

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.

Step 3 - Top chains

Fetch the leading chains by TVL.

defillama:get_chain_metrics
  limit: 10

Step 4 - Top protocols

Fetch the leading protocols by TVL.

defillama:get_protocol_metrics
  limit: 10

Step 5 - Recent security incidents

Check for recent hacks or exploits.

defillama:get_events
  event_type: "hacks"

Step 6 - Recent fundraises

Check for recent funding rounds and investments.

defillama:get_events
  event_type: "raises"

Step 7 - Stablecoin supply

Get total stablecoin market and top stablecoins.

defillama:get_stablecoin_supply

Stablecoin supply growth is a proxy for capital entering the crypto ecosystem.

Step 8 - ETF flows

Check recent institutional activity through ETFs.

defillama:get_etf_flows

Output Format

Present the report with these sections in order:

  1. Market Snapshot - Two to three sentence summary of the current DeFi market state: total TVL direction, dominant narrative, and sentiment signal.
  2. Category Breakdown - Top 5-7 categories by TVL with fees and percentage changes. Note which categories are gaining or losing share.
  3. Top Chains - Top 10 chains by TVL with percentage changes. Highlight chains with the strongest momentum.
  4. Top Protocols - Top 10 protocols by TVL with category, chain, and recent trend.
  5. Recent Events - Split into Security Incidents and Fundraises. Summarize the most notable items from each.
  6. Capital Flows - Stablecoin supply trend and ETF flow direction. These together indicate whether capital is entering or leaving crypto.

Tips

  • If total stablecoin supply is growing + ETF flows are positive + TVL is rising, this is a strong bull signal.
  • Categories gaining TVL share indicate where market attention is rotating.
  • Multiple hacks in a short period may dampen overall market sentiment.
  • Large fundraises signal where VCs see future growth.
  • Compare chain TVL rankings to previous periods to spot chains that are rising or falling in the rankings.
  • Use start_date / end_date params for custom time windows (e.g., weekly or monthly recaps) instead of fixed periods.
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
Testing & QAFinance & TradingWeb3 & Blockchain
First SeenJun 3, 2026
View on GitHub

More from defillama/defillama-skills

All 3 skills →
  • Protocol Deep Dive259
  • Yield Strategies309

Recommended

More Testing & QA →
melodic-software avatar
design-thinking

melodic-software/claude-code-plugins

Design Thinking methodology for human-centered innovation. Covers the 5-phase IDEO/Stanford d.school approach (Empathize, Define, Ideate, Prototype, Test) with workshop facilitation and exercise templates.
264
5
onewave-ai avatar
email-subject-line-optimizer

onewave-ai/claude-skills

A/B test subject line variations using proven copywriting frameworks. Predict open rates based on historical performance.
264
244
adobe avatar
adobe-create-social-variations

adobe/skills

Resize, crop, or export any image or video into platform-ready social media assets using Adobe Creative Cloud tools. Use this skill when a user wants to prepare a photo, image, or video for one or more social platforms — Instagram, TikTok, LinkedIn, Facebook, YouTube, Snapchat, Pinterest, Threads, or X/Twitter. Triggers on: "prepare my image for Instagram", "resize for TikTok", "get this ready to post", "make versions for all platforms", "social media sizes", "crop for stories", "export for LinkedIn", "resize my video for social", "make social media assets", or any request to adapt a photo or video for specific platforms. Handles subject-aware cropping, AI canvas expansion, test previews before full runs, and same-ratio video resizing.
263
165
bobmatnyc avatar
ecto-patterns

bobmatnyc/claude-mpm-skills

Ecto patterns for Phoenix/Elixir apps. Covers schemas, changesets, migrations, queries, Ecto.Multi, transactions, constraints, associations, pagination, tenant partitioning, performance, and testing.
263
68
ejirocodes avatar
nestjs-best-practices

ejirocodes/agent-skills

NestJS 11+ best practices for enterprise Node.js applications with TypeScript. Use when writing, reviewing, or refactoring NestJS controllers, services, modules, or APIs. Triggers on: NestJS modules, controllers, providers, dependency injection, @Injectable, @Controller, @Module, middleware, guards, interceptors, pipes, exception filters, ValidationPipe, class-validator, class-transformer, DTOs, JWT authentication, Passport strategies, @nestjs/passport, TypeORM entities, Prisma client, Drizzle ORM, repository pattern, circular dependencies, forwardRef, @nestjs/swagger, OpenAPI decorators, GraphQL resolvers, @nestjs/graphql, microservices, TCP transport, Redis transport, NATS, Kafka, NestJS 11 breaking changes, Express v5 migration, custom decorators, ConfigService, @nestjs/config, health checks, or NestJS testing patterns.
261
5
octagonai avatar
analyst-estimates

octagonai/skills

Retrieve analyst financial estimates including Revenue and EPS projections with low/high ranges and analyst coverage. Use when analyzing forward expectations, consensus estimates, valuation inputs, or comparing projections to historical performance.
259
129