# Send Clanker 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": "clanker",
    "name": "Clanker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/spirosrap/clanker",
    "canonicalUrl": "https://clawhub.ai/spirosrap/clanker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clanker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clanker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "config.json",
      "references/clanker-sdk.md",
      "scripts/clanker.sh",
      "scripts/deploy.py",
      "scripts/test.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clanker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T11:34:19.523Z",
      "expiresAt": "2026-05-08T11:34:19.523Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clanker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clanker",
        "contentDisposition": "attachment; filename=\"clanker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clanker"
      },
      "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/clanker"
    },
    "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/clanker",
    "downloadUrl": "https://openagent3.xyz/downloads/clanker",
    "agentUrl": "https://openagent3.xyz/skills/clanker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clanker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clanker/agent.md"
  }
}
```
## Documentation

### Clanker Skill

Deploy ERC20 tokens on Base using the Clanker protocol with built-in Uniswap V4 liquidity pools.

### 1. Configuration

Create a config file at ~/.clawdbot/skills/clanker/config.json:

{
  "mainnet": {
    "rpc_url": "https://1rpc.io/base",
    "private_key": "YOUR_PRIVATE_KEY"
  },
  "testnet": {
    "rpc_url": "https://sepolia.base.org",
    "private_key": "YOUR_TESTNET_PRIVATE_KEY"
  }
}

Security: Never commit your private key to version control. Use environment variables or a separate config file outside the repo.

### 2. Get Testnet ETH

For Base Sepolia testing, get free ETH from:

https://cloud.base.org/faucet
https://sepoliafaucet.com

Note: Faucet access may require:

MetaMask or similar wallet installed
Social login (GitHub, Twitter, etc.)
Limited to 1-2 requests per day

### 3. Install Dependencies (for deployment)

For token deployment, install web3 Python package:

pip install web3

For read-only operations, only curl, jq, and python3 are required.

### Deploy a Token (Mainnet)

clanker.sh deploy "My Token" MYT 0.1

Deploys an ERC20 token with 0.1 ETH initial liquidity on Uniswap V4.

### Check Deployment Status

clanker.sh status <txhash>

Check if a deployment transaction was successful.

### Get Token Info

clanker.sh info <token-address>

Returns token name, symbol, total supply, and other details.

### Find Tokens by Deployer

clanker.sh get-token <deployer-address>

Find all tokens deployed by a specific address.

### Deploy to Testnet (Sepolia)

clanker.sh testnet-deploy "Test Token" TST

Deploy to Base Sepolia testnet for testing.

### Using Testnet Network

All commands support --network testnet flag:

# Check testnet status
clanker.sh status 0x1234... --network testnet

# Get testnet token info
clanker.sh info 0xabcd... --network testnet

# Find testnet tokens by deployer
clanker.sh get-token 0xdef0... --network testnet

### Commands Reference

CommandDescriptionParametersdeployDeploy token on mainnet<name> <symbol> <initial-lp-eth>testnet-deployDeploy to Sepolia testnet<name> <symbol>statusCheck deployment status<txhash>infoGet token information<token-address>get-tokenFind tokens by deployer<deployer-address>

### Examples

# Deploy a meme coin
./clanker.sh deploy "Base Dog" BDOG 0.05

# Check if deployment succeeded
./clanker.sh status 0x1234...5678

# Get info about a known token
./clanker.sh info 0xabcd...1234

# Find who deployed a token
./clanker.sh get-token 0xdef0...9876

# Test on Sepolia
./clanker.sh testnet-deploy "Test Meme" TMEME
./clanker.sh status 0xtxhash... --network testnet

### Step 1: Set Up Testnet Config

# Create config with testnet private key
cat > ~/.clawdbot/skills/clanker/config.json << 'EOF'
{
  "testnet": {
    "rpc_url": "https://sepolia.base.org",
    "private_key": "YOUR_TESTNET_PRIVATE_KEY"
  }
}
EOF

### Step 2: Get Testnet ETH

Visit https://cloud.base.org/faucet
Connect your wallet (MetaMask)
Request test ETH (0.001-0.01 ETH should be enough)

Alternative faucets:

https://sepoliafaucet.com
https://faucet.paradigm.xyz

### Step 3: Deploy a Test Token

# Deploy on testnet with 0.001 ETH initial liquidity
./clanker.sh testnet-deploy "Test Token" TST

Or with initial liquidity:

./clanker.sh deploy "Test Token" TST 0.001 --network testnet

### Step 4: Verify Deployment

Check transaction status:
./clanker.sh status <txhash> --network testnet



Get token info:
./clanker.sh info <token-address> --network testnet



View on explorer:

Open https://sepolia.basescan.org/tx/\\<txhash>
View token contract at https://sepolia.basescan.org/token/\\<token-address>

### Troubleshooting

Transaction failed?

Check if you have enough ETH for gas
Verify the Clanker factory contract is available on Sepolia
Check network connectivity

Cannot get testnet ETH?

Try alternative faucets
Wait 24 hours between requests
Check if wallet is connected correctly

Private key errors?

Ensure key doesn't have "0x" prefix (or remove it if present)
Check config file syntax is valid JSON

### Read-Only Operations ✅

CommandNetworkResultinfo (WETH)mainnet✅ Works - Shows correct name, symbol, supplyget-tokenmainnet✅ Works - Returns deployer statsstatusmainnet✅ Works - Handles pending/not found tx

### Deployment ⚠️

FeatureStatusNotesPython deployment helper⚠️ PlaceholderRequires Clanker factory addressWeb-based deployment✅ RecommendedUse https://clanker.worldDirect contract call🔲 Not implementedWould need factory ABI

Note: Full deployment requires the actual Clanker factory contract address on Base Sepolia. The protocol is relatively new, and contract addresses may change. For production deployment, check the official documentation.

### Security Best Practices

Never commit private keys to version control
Use separate keys for testnet and mainnet
Test on Sepolia first before mainnet deployment
Verify contract addresses on official Clanker documentation
Start with small ETH amounts for initial liquidity
Monitor deployed tokens for unusual activity

### Resources

Official Website: https://clanker.world
Documentation: https://docs.clanker.world
GitHub: https://github.com/clanker-world
Base Mainnet Explorer: https://basescan.org
Base Sepolia Explorer: https://sepolia.basescan.org

### Notes

All deployments create tokens with built-in Uniswap V4 LP
Initial LP ETH is required for liquidity bootstrapping
Testnet deployments are free (no real funds, requires testnet ETH)
Deployment may fail if Clanker contract is not available
Check network connectivity if operations timeout
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: spirosrap
- Version: 1.0.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-01T11:34:19.523Z
- Expires at: 2026-05-08T11:34:19.523Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clanker)
- [Send to Agent page](https://openagent3.xyz/skills/clanker/agent)
- [JSON manifest](https://openagent3.xyz/skills/clanker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clanker/agent.md)
- [Download page](https://openagent3.xyz/downloads/clanker)