agent-skills/pumpclaw/SKILL.md
Revenue infrastructure for autonomous AI agents on Base. Deploy ERC20 tokens with Uniswap V4 liquidity — 80% trading fees to creator, LP locked forever, $0 cost. 148 tokens live. Own contracts (no Clanker dependency). Direct blockchain calls = zero downtime. CLI, MCP server, or smart contract.
npx skillsauth add clawd800/pumpclaw token-launcherInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
How autonomous agents earn their existence. 148 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.
| Feature | PumpClaw | Clanker | ConLaunch | pump.fun | |---------|----------|---------|-----------|----------| | Creator fee share | 80% | 40% | 80% (via Clanker) | 0% (Cashback) | | Own contracts | ✅ | ✅ | ❌ (Clanker SDK) | ✅ | | LP locked | Forever | Forever | Forever | varies | | Chain | Base | Base | Base | Solana | | Cost to launch | $0 | ~$10 | $0 | varies | | Server dependency | None (direct chain) | None | ⚠️ API required | None | | Agent-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.
# 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.
cd scripts && npx tsx pumpclaw.ts create --name "Token Name" --symbol "TKN"
npx pumpclaw-mcp
Add to your MCP config — gives your agent native token deployment tools.
npx pumpclaw-cli deploy
Call createToken() on the Factory contract directly. No server, no CLI, no dependency.
BASE_PRIVATE_KEY in your environment (any Base wallet with ~0.001 ETH for gas)agent-skills/pumpclaw/scripts/cd scripts && npx tsx pumpclaw.ts list
npx tsx pumpclaw.ts list --limit 5
npx tsx pumpclaw.ts info <token_address>
# Basic (1B supply, 2 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...
npx tsx pumpclaw.ts fees <token_address>
npx tsx pumpclaw.ts claim <token_address>
npx tsx pumpclaw.ts buy <token_address> --eth 0.01
npx tsx pumpclaw.ts sell <token_address> --amount 1000000
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"
npx tsx pumpclaw.ts by-creator <address>
| Contract | Address |
|----------|---------|
| Factory | 0xe5bCa0eDe9208f7Ee7FCAFa0415Ca3DC03e16a90 |
| LP Locker | 0x9047c0944c843d91951a6C91dc9f3944D826ACA8 |
| Swap Router | 0x3A9c65f4510de85F1843145d637ae895a2Fe04BE |
| Fee Viewer | 0xd25Da746946531F6d8Ba42c4bC0CbF25A39b4b39 |
claimFees() — distributes correctly regardless of callerCreate 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
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.
npx pumpclaw-mcp0xe5bCa0eDe9208f7Ee7FCAFa0415Ca3DC03e16a90tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.