← 返回 Skills 市场
wpank

Uniswap Manage Liquidity

作者 wpank · GitHub ↗ · v0.1.0
cross-platform ⚠ suspicious
807
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install manage-liquidity
功能描述
Add liquidity, remove liquidity, or collect fees on Uniswap V2/V3/V4 pools. Handles the full flow including pool selection, range optimization, approvals, safety checks, and transaction execution. Use when the user wants to LP, provide liquidity, remove a position, or collect accumulated fees.
使用说明 (SKILL.md)

Manage Liquidity

Overview

This is the primary skill for all liquidity operations on Uniswap. It handles three distinct actions:

  1. Add liquidity — Find the best pool, recommend a range, handle approvals, deposit tokens
  2. Remove liquidity — Withdraw tokens from an existing position (partial or full)
  3. Collect fees — Claim accumulated trading fees from a position

Each action delegates to the liquidity-manager agent for execution, with optional pool-researcher delegation for intelligent pool selection. This skill extracts the user's intent, validates parameters, and orchestrates the right agent workflow.

When to Use

Activate when the user says anything related to providing, removing, or managing Uniswap liquidity:

Adding liquidity:

  • "Add liquidity to ETH/USDC"
  • "Provide LP for WETH/USDC on Base"
  • "LP into the best pool for ETH/USDC"
  • "Open a position in UNI/WETH"
  • "I want to LP $5000 into ETH/USDC"
  • "Deposit liquidity into the 0.05% pool"
  • "Add $10K to my WETH/USDC position"

Removing liquidity:

  • "Remove my liquidity"
  • "Close my ETH/USDC position"
  • "Withdraw 50% from position #12345"
  • "Exit my LP position"

Collecting fees:

  • "Collect my fees"
  • "Claim accumulated fees from position #12345"
  • "How much in fees have I earned?" (check first, then offer to collect)

Parameters

For Adding Liquidity

Parameter Required Default How to Extract
action Yes Always "add" for this sub-flow
token0 Yes First token: "ETH", "WETH", "USDC", or 0x address
token1 Yes Second token
amount Yes Dollar amount ("$5000"), token amount ("2.5 ETH"), or both
chain No ethereum "ethereum", "base", "arbitrum", "optimism", "polygon"
version No v3 "v2" (passive), "v3" (concentrated), "v4" (hooks)
range No medium "narrow" (±5%), "medium" (±15%), "wide" (±50%), "full" (±∞)
feeTier No Auto-detect "0.01%", "0.05%", "0.3%", "1%" or bps: 100, 500, 3000, 10000

For Removing Liquidity / Collecting Fees

Parameter Required Default How to Extract
action Yes "remove" or "collect"
positionId Yes* NFT token ID ("position #12345") or found via search
chain No ethereum Chain where the position exists
percentage No 100 "50%", "all", "half" — only for remove
collectFees No true Whether to also collect fees when removing

*If the user doesn't provide a position ID (e.g., "remove my ETH/USDC position"), search for it using get_positions_by_owner and confirm with the user before proceeding.

Workflow

Add Liquidity Flow

Step 1: PARSE INTENT
├── Extract: tokens, amount, chain, version, range, fee tier
├── Normalize: "ETH" → "WETH", "$5K" → "$5000"
└── If any required params missing → ASK the user (don't guess)

Step 2: POOL SELECTION (if user didn't specify exact pool)
├── If "best pool" or no fee tier specified:
│   └── Delegate to pool-researcher: "Find the best pool for {token0}/{token1} on {chain}"
│       Pool researcher returns ranked pools with APY, TVL, depth
│       Pick the recommended pool (or present top 3 if user wants to choose)
└── If specific pool given: use directly

Step 3: PRE-FLIGHT CHECKS
├── Check safety status via check_safety_status
├── Verify wallet has sufficient token balances
└── If checks fail → STOP and tell user what's wrong

Step 4: DELEGATE TO LIQUIDITY-MANAGER
├── Pass: token0, token1, amount, chain, version, range, feeTier, pool address
├── The liquidity-manager agent handles:
│   a. Check and execute token approvals (Permit2)
│   b. Calculate optimal tick range based on range strategy
│   c. Simulate the add-liquidity transaction
│   d. Route through safety-guardian for validation
│   e. Execute the transaction
│   f. Wait for confirmation
└── Returns: positionId, amounts deposited, tick range, tx hash

Step 5: PRESENT RESULT
├── Position ID (NFT token ID)
├── Tokens deposited with USD values
├── Price range (lower price, upper price, current price)
├── Estimated fee APY (from pool-researcher data)
├── Explorer link to the transaction
└── Tip: "Monitor with /track-performance"

Remove Liquidity Flow

Step 1: IDENTIFY POSITION
├── If position ID given → use directly
├── If "my ETH/USDC position" → call get_positions_by_owner
│   ├── Filter by token pair and chain
│   ├── If multiple matches → LIST them and ask user to choose
│   └── If no matches → tell user "No positions found for {pair}"
└── Confirm: "I found position #{id} — {pair} {feeTier} with {value}. Remove?"

Step 2: DELEGATE TO LIQUIDITY-MANAGER
├── Pass: positionId, chain, percentage (default 100%), collectFees
├── Agent handles: fee collection → partial/full removal → safety validation → execution
└── Returns: tokens received, fees collected, tx hash

Step 3: PRESENT RESULT
├── Tokens received with USD values
├── Fees collected (if any)
├── Total value received
├── Explorer link
└── If partial removal: remaining position details

Collect Fees Flow

Step 1: IDENTIFY POSITION (same as remove)

Step 2: CHECK UNCOLLECTED FEES
├── Call get_position to see tokensOwed0 and tokensOwed1
├── If fees are zero → "No fees to collect on this position"
└── Show fee amounts and ask to proceed

Step 3: DELEGATE TO LIQUIDITY-MANAGER
├── Pass: positionId, chain, action: "collect"
└── Returns: fees collected, tx hash

Step 4: PRESENT RESULT
├── Fees collected (token amounts + USD values)
├── Explorer link
└── Tip: "Your position is still active and earning more fees"

Critical Decision Points

These are the moments where the skill must stop and ask rather than assume:

Situation Action
Multiple positions match List all matches, ask user to pick one
Amount exceeds wallet balance Show balance, ask if they want a smaller amount
Pool TVL \x3C $10,000 Warn about low liquidity risk, ask to confirm
Range strategy not specified Default to "medium" but mention the tradeoffs
First time LPing Briefly explain IL risk before proceeding
Remove > 50% of pool liquidity Warn about price impact on exit

Output Format

Successful Add

Liquidity Added Successfully

  Position: #456789
  Pool:     WETH/USDC 0.05% (V3, Ethereum)
  
  Deposited:
    0.5 WETH  ($980)
    980 USDC  ($980)
    Total:    $1,960

  Range:
    Lower: $1,700 (tick -204714)
    Upper: $2,300 (tick -199514)
    Current: $1,963 — IN RANGE ✓
    Width: ±15% (medium)

  Expected Fee APY: ~15-21% (based on 7d pool data)
  
  Tx: https://etherscan.io/tx/0x...

  Next steps:
  - Monitor with: "How are my positions doing?"
  - Rebalance if out of range: "Rebalance position #456789"
  - Collect fees anytime: "Collect fees from position #456789"

Successful Remove

Liquidity Removed

  Position: #456789 (CLOSED)
  
  Received:
    0.52 WETH  ($1,020)
    950 USDC   ($950)
    Total:     $1,970

  Fees Collected:
    0.01 WETH  ($19.60)
    15.20 USDC ($15.20)
    Total fees: $34.80

  Net Result: +$44.80 (+2.3%) including fees
  
  Tx: https://etherscan.io/tx/0x...

Important Notes

  • IL risk: Always mention impermanent loss risk when adding liquidity to volatile pairs. Don't bury it.
  • Gas costs: On Ethereum mainnet, LP operations cost $15-50 in gas. Mention this for small positions.
  • Range tradeoffs: Narrow = higher fees but more rebalancing. Wide = lower fees but less maintenance. Always explain.
  • V2 vs V3: V2 is "set and forget" with lower returns. V3 requires active management but earns more. Help the user choose.
  • Never auto-execute: For remove and rebalance, always confirm with the user before executing.

Error Handling

Error User-Facing Message Suggested Action
Wallet not configured "No wallet configured for transactions." Set WALLET_TYPE + PRIVATE_KEY in .env
Insufficient balance "You have X but need Y to add liquidity." Reduce amount or swap for needed tokens
Pool not found "No pool found for X/Y at this fee tier." Try different fee tier or check token names
Position not found "Position #ID not found on this chain." Check chain and position ID
Safety check failed "Transaction blocked by safety: {reason}" Adjust parameters or check safety config
Transaction reverted "Transaction failed: {reason}" Check slippage, amounts, or try again
liquidity-manager unavailable "Liquidity agent is not available." Check agent configuration
安全使用建议
This skill appears to do what it claims (manage Uniswap liquidity), but before installing or invoking it you should confirm how it will sign transactions and access your wallet. Ask the publisher (or the platform) these questions: 1) How are transaction signatures obtained—does the agent prompt you for each signature, use a browser wallet prompt (e.g., MetaMask), or require a long-lived signing token/private key? 2) Where do pool-researcher and liquidity-manager subagents run and what permissions do they have? 3) Is there a safety-guardian or explicit confirmation step before any on-chain transaction and approval? To reduce risk: test on a small amount or testnet first, require explicit per-transaction confirmations, and only enable the skill if signing flows are client-side (your wallet) rather than a stored secret provided to the skill. If the publisher/source remains unknown, treat the skill with extra caution and prefer well-audited alternatives.
功能分析
Type: OpenClaw Skill Name: manage-liquidity Version: 0.1.0 The skill bundle is benign. The `SKILL.md` clearly defines a restricted set of `allowed-tools` focused on Uniswap operations and subagent delegation, without granting generic shell or file system access. Crucially, it includes explicit instructions for the AI agent to 'ASK the user (don't guess)', 'STOP and tell user what's wrong' if checks fail, and 'Never auto-execute' for sensitive operations like removing liquidity, requiring user confirmation. There are no signs of prompt injection attempts, data exfiltration, or other malicious instructions within the provided files.
能力评估
Purpose & Capability
Name and description match the instructions: add/remove liquidity and collect fees on Uniswap V2/V3/V4. The SKILL.md delegates pool research, safety checks, approvals, simulation, and execution — all expected for a liquidity-manager. Minor inconsistency: README shows install commands referencing a GitHub path, but registry metadata says Source: unknown / Homepage: none.
Instruction Scope
Instructions explicitly call for checking wallet balances, performing approvals (Permit2), simulating and executing transactions, and waiting for confirmations. Those are necessary for the stated purpose, but the SKILL.md does not describe where signing authority or wallet credentials come from, how user confirmation is obtained, or how approvals are gated. That omission grants an agent wide discretion to act on user funds if the platform provides automatic signing or an attached wallet.
Install Mechanism
Instruction-only skill with no install spec or code files—lowest install risk. README mentions optional npx install commands, but the skill itself has no install script or archives to fetch.
Credentials
The skill requires no environment variables or credentials in metadata, yet the runtime flow expects access to a wallet (balances, approvals, transaction execution). The absence of declared primary credential or required env variables (e.g., a signing key, wallet connector token, or instructions to prompt for user signature) is a meaningful omission and should be clarified.
Persistence & Privilege
always is false and model invocation is allowed (platform default). The skill does not request persistent installation privileges or claim to modify other skills or global agent configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install manage-liquidity
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /manage-liquidity 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Initial release of the manage-liquidity skill for Uniswap V2/V3/V4 operations: - Enables adding, removing, or collecting fees on Uniswap pools via a unified intent-driven workflow. - Handles pool selection, range optimization, safety checks, approvals, and transaction execution. - Integrates with sub-agents for liquidity management and pool research, plus safety and position checks. - Supports user-friendly flows with confirmation steps, intent extraction, and robust error handling. - Guides users through all major liquidity actions, including parameter extraction and best-practice prompts.
元数据
Slug manage-liquidity
版本 0.1.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Uniswap Manage Liquidity 是什么?

Add liquidity, remove liquidity, or collect fees on Uniswap V2/V3/V4 pools. Handles the full flow including pool selection, range optimization, approvals, safety checks, and transaction execution. Use when the user wants to LP, provide liquidity, remove a position, or collect accumulated fees. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 807 次。

如何安装 Uniswap Manage Liquidity?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install manage-liquidity」即可一键安装,无需额外配置。

Uniswap Manage Liquidity 是免费的吗?

是的,Uniswap Manage Liquidity 完全免费(开源免费),可自由下载、安装和使用。

Uniswap Manage Liquidity 支持哪些平台?

Uniswap Manage Liquidity 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Uniswap Manage Liquidity?

由 wpank(@wpank)开发并维护,当前版本 v0.1.0。

💬 留言讨论