Analyze DEX liquidity pools for TVL, volume, fees, impermanent loss, and LP profitability. Use when analyzing liquidity pools, calculating impermanent loss, or comparing DEX pools. Trigger with phrases like "analyze liquidity pool", "calculate impermanent loss", "LP returns", "pool TVL", "DEX pool metrics", or "compare pools".
How this skill is triggered — by the user, by Claude, or both
Slash command
/liquidity-pool-analyzer:analyzing-liquidity-poolsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze DEX liquidity pools to understand TVL, trading volume, fee income, and impermanent loss risk. Compare pools across protocols (Uniswap, Curve, Balancer) and chains to identify optimal LP opportunities.
Analyze DEX liquidity pools to understand TVL, trading volume, fee income, and impermanent loss risk. Compare pools across protocols (Uniswap, Curve, Balancer) and chains to identify optimal LP opportunities.
Before using this skill, ensure you have:
Analyze pool by address:
python {baseDir}/scripts/pool_analyzer.py --pool 0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640
Analyze by token pair:
python {baseDir}/scripts/pool_analyzer.py --pair ETH/USDC --protocol uniswap-v3
Calculate IL for a price change:
python {baseDir}/scripts/pool_analyzer.py --il-calc --entry-price 2000 --current-price 3000
Project IL for various scenarios:
python {baseDir}/scripts/pool_analyzer.py --il-scenarios --token-pair ETH/USDC
Calculate fee APR:
python {baseDir}/scripts/pool_analyzer.py --pool [address] --detailed
Project returns for position size:
python {baseDir}/scripts/pool_analyzer.py --pool [address] --position 10000
Compare same pair across protocols:
python {baseDir}/scripts/pool_analyzer.py --compare --pair ETH/USDC --protocols uniswap-v3,curve,balancer
Compare fee tiers:
python {baseDir}/scripts/pool_analyzer.py --compare --pair ETH/USDC --fee-tiers 0.05,0.30,1.00
Export to JSON:
python {baseDir}/scripts/pool_analyzer.py --pool [address] --format json --output pool_analysis.json
Export comparison to CSV:
python {baseDir}/scripts/pool_analyzer.py --compare --pair ETH/USDC --format csv --output pools.csv
==============================================================================
LIQUIDITY POOL ANALYZER 2026-01-15 15:30 UTC
==============================================================================
POOL: USDC/WETH (Uniswap V3 - 0.05%)
------------------------------------------------------------------------------
Chain: Ethereum
TVL: $500.5M
24h Volume: $125.3M
Fee Tier: 0.05%
FEE METRICS
------------------------------------------------------------------------------
24h Fees: $62,650
Fee APR: 4.57%
Volume/TVL: 0.25
TOKEN COMPOSITION
------------------------------------------------------------------------------
USDC: $252.1M (50.4%)
WETH: $248.4M (49.6%)
Current Price: $2,450/ETH
==============================================================================
IMPERMANENT LOSS CALCULATION
------------------------------------------------------------------------------
Entry Price: $2,000/ETH
Current Price: $3,000/ETH
Price Change: +50%
IL (%) -5.72%
IL ($1000 LP): -$57.20
Value if HODL: $1,250.00
Value in LP: $1,192.80
BREAKEVEN ANALYSIS (0.05% fee tier)
------------------------------------------------------------------------------
Daily Fees: $0.63 (at $500M TVL, $125M vol)
Days to Break: 91 days
Monthly Fees: $18.90
==============================================================================
See {baseDir}/references/errors.md for comprehensive error handling.
Common issues:
See {baseDir}/references/examples.md for detailed usage examples.
Analyze top ETH/USDC pool:
python pool_analyzer.py --pair ETH/USDC --protocol uniswap-v3 --chain ethereum
Calculate IL for 2x price increase:
python pool_analyzer.py --il-calc --entry-price 100 --current-price 200
Compare Uniswap fee tiers:
python pool_analyzer.py --compare --pair ETH/USDC --fee-tiers 0.05,0.30,1.00
Export all ETH pairs:
python pool_analyzer.py --token ETH --format json --output eth_pools.json
Settings in {baseDir}/config/settings.yaml:
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.
4plugins reuse this skill
First indexed Jul 18, 2026
npx claudepluginhub rowanbrooks100/claude-code-plugins-plus-skills --plugin liquidity-pool-analyzer