Liquidity Planner
Plan liquidity positions and generate deep links that open directly in the Uniswap interface with parameters pre-filled. Supports v2, v3, and v4 positions.
Invocation
/liquidity-planner
Or describe your requirements naturally:
Create a concentrated liquidity position for ETH/USDC on Base
What It Does
This skill helps you:
- Plan LP positions: Gather intent, discover available pools, and assess liquidity depth
- Suggest price ranges: Context-aware recommendations based on pair type (stablecoin, major, volatile)
- Compare fee tiers: APY and volume data across different fee tiers for the same pair
- Generate deep links: URLs that open Uniswap's position creation page with all parameters pre-filled
- Warn about risks: Impermanent loss, thin liquidity, and active management requirements
Workflow
- Gather LP intent -- Token pair, amount, chain, version, fee tier, and price range
- Resolve token addresses -- Map symbols to on-chain addresses per chain
- Discover pools -- Find available Uniswap pools and fee tiers via DexScreener
- Assess liquidity -- Evaluate pool TVL and warn about thin liquidity
- Fetch pool metrics -- APY, volume, and price data from DefiLlama and DexScreener
- Suggest price ranges -- Recommendations based on pair type and current price
- Determine fee tier -- Compare tiers using APY and volume data
- Generate deep link -- Uniswap position creation URL with pre-filled parameters
- Open browser -- Automatically opens the link (with fallback for headless environments)
Supported Position Types
| Version |
Liquidity Type |
Key Feature |
| v2 |
Full range only |
Simplest, lowest gas |
| v3 |
Concentrated liquidity |
Most common, customizable ranges |
| v4 |
Concentrated + hooks |
Advanced features, limited chains |
Fee Tier Guidelines
| Fee |
Best For |
| 0.01% |
Stablecoin pairs |
| 0.05% |
Correlated pairs (ETH/stETH) |
| 0.30% |
Most pairs (default) |
| 1.00% |
Exotic/volatile pairs |
Output Format
The skill presents a position summary with pool analytics (APY, volume, TVL), price range details, and considerations about impermanent loss and rebalancing, followed by a clickable deep link to the Uniswap interface.
Runtime Compatibility
This skill uses AskUserQuestion for interactive prompts. If AskUserQuestion is not available in your runtime, the skill collects the same parameters through natural language conversation instead.
Related Resources
1---2name: 2637-liquidity-planner-39a0a3d33description: Liquidity Planner4---56# Liquidity Planner78Plan liquidity positions and generate deep links that open directly in the Uniswap interface with parameters pre-filled. Supports v2, v3, and v4 positions.910## Invocation1112```text13/liquidity-planner14```1516Or describe your requirements naturally:1718```text19Create a concentrated liquidity position for ETH/USDC on Base20```2122## What It Does2324This skill helps you:2526- **Plan LP positions**: Gather intent, discover available pools, and assess liquidity depth27- **Suggest price ranges**: Context-aware recommendations based on pair type (stablecoin, major, volatile)28- **Compare fee tiers**: APY and volume data across different fee tiers for the same pair29- **Generate deep links**: URLs that open Uniswap's position creation page with all parameters pre-filled30- **Warn about risks**: Impermanent loss, thin liquidity, and active management requirements3132## Workflow33341. **Gather LP intent** -- Token pair, amount, chain, version, fee tier, and price range352. **Resolve token addresses** -- Map symbols to on-chain addresses per chain363. **Discover pools** -- Find available Uniswap pools and fee tiers via DexScreener374. **Assess liquidity** -- Evaluate pool TVL and warn about thin liquidity385. **Fetch pool metrics** -- APY, volume, and price data from DefiLlama and DexScreener396. **Suggest price ranges** -- Recommendations based on pair type and current price407. **Determine fee tier** -- Compare tiers using APY and volume data418. **Generate deep link** -- Uniswap position creation URL with pre-filled parameters429. **Open browser** -- Automatically opens the link (with fallback for headless environments)4344## Supported Position Types4546| Version | Liquidity Type | Key Feature |47| ------- | ---------------------- | --------------------------------- |48| v2 | Full range only | Simplest, lowest gas |49| v3 | Concentrated liquidity | Most common, customizable ranges |50| v4 | Concentrated + hooks | Advanced features, limited chains |5152## Fee Tier Guidelines5354| Fee | Best For |55| ----- | ---------------------------- |56| 0.01% | Stablecoin pairs |57| 0.05% | Correlated pairs (ETH/stETH) |58| 0.30% | Most pairs (default) |59| 1.00% | Exotic/volatile pairs |6061## Output Format6263The skill presents a position summary with pool analytics (APY, volume, TVL), price range details, and considerations about impermanent loss and rebalancing, followed by a clickable deep link to the Uniswap interface.6465## Runtime Compatibility6667This skill uses `AskUserQuestion` for interactive prompts. If `AskUserQuestion` is not available in your runtime, the skill collects the same parameters through natural language conversation instead.6869## Related Resources7071- [Uniswap Driver Plugin](/plugins/uniswap-driver) - Parent plugin72- [Swap Planner](/skills/swap-planner) - Plan token swaps instead of LP positions73- [Uniswap Interface](https://app.uniswap.org) - Where deep links open