# Send Pumpclaw 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": "token-launcher",
    "name": "Pumpclaw",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/clawd800/token-launcher",
    "canonicalUrl": "https://clawhub.ai/clawd800/token-launcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/token-launcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=token-launcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/package-lock.json",
      "scripts/package.json",
      "scripts/pumpclaw.ts",
      "scripts/swap.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "token-launcher",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T06:36:09.041Z",
      "expiresAt": "2026-05-10T06:36:09.041Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=token-launcher",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=token-launcher",
        "contentDisposition": "attachment; filename=\"token-launcher-2.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "token-launcher"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/token-launcher"
    },
    "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/token-launcher",
    "downloadUrl": "https://openagent3.xyz/downloads/token-launcher",
    "agentUrl": "https://openagent3.xyz/skills/token-launcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/token-launcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/token-launcher/agent.md"
  }
}
```
## Documentation

### PumpClaw — Revenue Infrastructure for AI Agents

How autonomous agents earn their existence. 141 tokens deployed on Base. $0 cost. 80% of trading fees → creator wallet.

Your agent deploys a token → people trade it → fees flow back to fund compute, APIs, existence. The token isn't the product — it's the business model.

### Why PumpClaw?

FeaturePumpClawClankerConLaunchpump.funCreator fee share80%40%80% (via Clanker)0% (Cashback)Own contracts✅✅❌ (Clanker SDK)✅LP lockedForeverForeverForevervariesChainBaseBaseBaseSolanaCost to launch$0~$10$0variesServer dependencyNone (direct chain)None⚠️ API requiredNoneAgent-native✅ CLI + MCP❌✅ API + MCP❌

Key advantage: PumpClaw calls the blockchain directly. No middleman server. If pumpclaw.com goes down, your tokens still work, fees still flow, agents still earn.

### Quick Start (30 seconds)

# Set your wallet private key
export BASE_PRIVATE_KEY="0x..."

# Deploy your token (one command!)
cd scripts && npx tsx pumpclaw.ts create --name "My Token" --symbol "MTK"

That's it. Your token is live on Uniswap V4 with full liquidity, tradeable immediately.

### 1. This Skill (Recommended for OpenClaw agents)

cd scripts && npx tsx pumpclaw.ts create --name "Token Name" --symbol "TKN"

### 2. MCP Server (for Claude Desktop / any MCP client)

npx pumpclaw-mcp

Add to your MCP config — gives your agent native token deployment tools.

### 3. npm CLI

npx pumpclaw-cli deploy

### 4. Direct Contract Call (most sovereign)

Call createToken() on the Factory contract directly. No server, no CLI, no dependency.

### Setup

Set BASE_PRIVATE_KEY in your environment (any Base wallet with ~0.001 ETH for gas)
Scripts are in agent-skills/pumpclaw/scripts/

### List all tokens

cd scripts && npx tsx pumpclaw.ts list
npx tsx pumpclaw.ts list --limit 5

### Get token info

npx tsx pumpclaw.ts info <token_address>

### Create token

# Basic (1B supply, 20 ETH FDV)
npx tsx pumpclaw.ts create --name "Token Name" --symbol "TKN"

# With image
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --image "https://..."

# With website
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --website "https://..."

# Custom FDV
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --fdv 50

# Custom supply (in tokens, not wei)
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --supply 500000000

# On behalf of another creator (relayer pattern)
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --creator 0x...

### Check & claim trading fees

npx tsx pumpclaw.ts fees <token_address>
npx tsx pumpclaw.ts claim <token_address>

### Buy/Sell tokens

npx tsx pumpclaw.ts buy <token_address> --eth 0.01
npx tsx pumpclaw.ts sell <token_address> --amount 1000000

### Update token metadata (creator only)

npx tsx pumpclaw.ts set-image <token_address> --url "https://example.com/image.png"
npx tsx pumpclaw.ts set-website <token_address> --url "https://mytoken.com"

### Tokens by creator

npx tsx pumpclaw.ts by-creator <address>

### Contract Addresses (Base Mainnet)

ContractAddressFactory0xe5bCa0eDe9208f7Ee7FCAFa0415Ca3DC03e16a90LP Locker0x6e4D241957074475741Ff42ec352b8b00217Bf5dSwap Router0x3A9c65f4510de85F1843145d637ae895a2Fe04BEFee Viewer0xd25Da746946531F6d8Ba42c4bC0CbF25A39b4b39

### Token Features

Standard ERC20 with ERC20Permit (gasless approvals)
Burnable
Immutable creator address stored on token
Image URL + Website URL stored on-chain
Creator can update image/website anytime
Full-range Uniswap V4 liquidity, LP locked forever

### Fee Structure

LP Fee: 1% on all trades
Creator gets 80% of LP fees
Protocol gets 20% of LP fees
Anyone can call claimFees() — distributes correctly regardless of caller

### Example: Agent Token Economy

Create your agent's token:
npx tsx pumpclaw.ts create --name "AgentCoin" --symbol "AGT" \\
  --image "https://..." --website "https://myagent.com"



Share the token — tradeable immediately on Uniswap V4


Earn from trading activity:
npx tsx pumpclaw.ts fees 0x...tokenAddress  # Check pending
npx tsx pumpclaw.ts claim 0x...tokenAddress  # Claim to wallet



Build token utility — gate features, reward users, create your economy

### The Agent Revenue Thesis

Most token launchers exist for speculation. PumpClaw exists for agent survival.

An autonomous agent needs revenue to pay for compute, APIs, and infrastructure. Without income, it's a demo — not a business. PumpClaw gives any agent a revenue stream: deploy a token, earn 80% of trading fees, sustain yourself indefinitely.

141 agents on Base have already figured this out.

### Links

Website: https://pumpclaw.com
GitHub: https://github.com/clawd800/pumpclaw
npm CLI: https://www.npmjs.com/package/pumpclaw-cli
MCP Server: npx pumpclaw-mcp
Farcaster: @clawd
ERC-8004 Agent ID: 17197
Factory Contract: 0xe5bCa0eDe9208f7Ee7FCAFa0415Ca3DC03e16a90
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: clawd800
- Version: 2.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T06:36:09.041Z
- Expires at: 2026-05-10T06:36:09.041Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/token-launcher)
- [Send to Agent page](https://openagent3.xyz/skills/token-launcher/agent)
- [JSON manifest](https://openagent3.xyz/skills/token-launcher/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/token-launcher/agent.md)
- [Download page](https://openagent3.xyz/downloads/token-launcher)