# Send Outsmart LP Farming to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "outsmart-lp-farming",
    "name": "Outsmart LP Farming",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/outsmartchad/outsmart-lp-farming",
    "canonicalUrl": "https://clawhub.ai/outsmartchad/outsmart-lp-farming",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/outsmart-lp-farming",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=outsmart-lp-farming",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/outsmart-lp-farming"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/outsmart-lp-farming",
    "downloadUrl": "https://openagent3.xyz/downloads/outsmart-lp-farming",
    "agentUrl": "https://openagent3.xyz/skills/outsmart-lp-farming/agent",
    "manifestUrl": "https://openagent3.xyz/skills/outsmart-lp-farming/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/outsmart-lp-farming/agent.md"
  }
}
```
## Documentation

### LP Farming

You earn money by providing liquidity to pools. Every time someone swaps through your pool, you get a cut. Two protocols, two completely different games.

### When to Use

"Farm yield on Solana"
"Add liquidity to a pool"
"Create a new pool"
"Rebalance my LP"
"Claim my fees"
"DLMM vs DAMM v2?"

### When NOT to Use

Staking SOL for validator rewards — different system
Lending/borrowing (Marginfi, Kamino) — different protocols
CEX market making — this is on-chain only

### DLMM vs DAMM v2

DLMM is for mature tokens. Concentrated bins, you pick the price range, you actively manage. Token needs 30+ min of real volume. Costs ~0.2 SOL. If price moves out of range, you're 100% in the losing side.

DAMM v2 is for fresh launches. Full range, set-and-forget, decaying fee schedule. The alpha: be the first person to create the pool — you set 99% starting fee and capture everything. Costs ~0.02 SOL.

DLMMDAMM v2WhenToken age >30 minToken age <5 minLP styleConcentrated binsFull rangeFeesFixed fee tierDecaying (99% start -> 2% end)AlphaTight bins = max captureFirst pool creator = everythingILBinary: in range or fully single-sidedStandard AMM: gradualCost~0.2 SOL~0.02 SOL

### Add liquidity (3 strategies)

# Spot: even distribution (good default)
outsmart add-liq --dex meteora-dlmm --pool POOL --sol 0.5 --strategy spot --bins 50

# Curve: concentrated near active bin (stable pairs)
outsmart add-liq --dex meteora-dlmm --pool POOL --sol 0.5 --strategy curve --bins 30

# Bid-Ask: more at edges (volatile pairs)
outsmart add-liq --dex meteora-dlmm --pool POOL --sol 0.5 --strategy bid-ask --bins 40

### One-sided positions

# SOL below price = buy wall (DCA in while earning fees)
outsmart add-liq --dex meteora-dlmm --pool POOL --sol 0.5 --token-amount 0 --strategy spot --bins 40

# Token above price = sell wall (DCA out while earning fees)
outsmart add-liq --dex meteora-dlmm --pool POOL --sol 0 --token-amount 1000 --strategy spot --bins 40

### Rebalancing

outsmart claim-fees --dex meteora-dlmm --pool POOL
outsmart remove-liq --dex meteora-dlmm --pool POOL --pct 100
outsmart quote --dex meteora-dlmm --pool POOL
outsmart add-liq --dex meteora-dlmm --pool POOL --sol 0.5 --strategy spot --bins 50

Don't rebalance for small moves — each cycle costs ~0.005-0.02 SOL.

### First pool creator play

# Check if pool exists
outsmart find-pool --dex meteora-damm-v2 --token TOKEN_MINT

# If not found, create with 99% starting fee
outsmart create-pool --dex meteora-damm-v2 --token TOKEN_MINT \\
  --base-amount 1000000 --quote-amount 0.5 \\
  --max-fee 9900 --min-fee 200 --duration 86400 --periods 100

### Day-to-Day Workflow

# 1. Find opportunity (volume/liquidity > 1.0 = good fees)
outsmart info --token TOKEN_MINT

# 2. Check pool
outsmart quote --dex meteora-dlmm --pool POOL

# 3. Add LP
outsmart add-liq --dex meteora-dlmm --pool POOL --sol 0.5 --strategy spot --bins 50

# 4. Monitor
outsmart list-pos --dex meteora-dlmm --pool POOL

# 5. Claim fees
outsmart claim-fees --dex meteora-dlmm --pool POOL

# 6. Exit
outsmart remove-liq --dex meteora-dlmm --pool POOL --pct 100

### Risk Management

DLMM IL is binary: in range or fully single-sided. Use wider bins (50+).
DAMM v2 IL is standard AMM. Offset by high initial fees if you're first LP.
Only LP tokens with >$100k liquidity, >24h age, organic buyers.
Budget ~0.05 SOL for a full LP cycle. Keep 0.1 SOL gas reserve.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: outsmartchad
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/outsmart-lp-farming)
- [Send to Agent page](https://openagent3.xyz/skills/outsmart-lp-farming/agent)
- [JSON manifest](https://openagent3.xyz/skills/outsmart-lp-farming/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/outsmart-lp-farming/agent.md)
- [Download page](https://openagent3.xyz/downloads/outsmart-lp-farming)