# Send Solpaw 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solpaw-skill",
    "name": "Solpaw",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/LvcidPsyche/solpaw-skill",
    "canonicalUrl": "https://clawhub.ai/LvcidPsyche/solpaw-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/solpaw-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solpaw-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "references/api-docs.md",
      "skill.json",
      "skill.yml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "solpaw-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T20:22:46.106Z",
      "expiresAt": "2026-05-10T20:22:46.106Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solpaw-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solpaw-skill",
        "contentDisposition": "attachment; filename=\"solpaw-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "solpaw-skill"
      },
      "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/solpaw-skill"
    },
    "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/solpaw-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/solpaw-skill",
    "agentUrl": "https://openagent3.xyz/skills/solpaw-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solpaw-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solpaw-skill/agent.md"
  }
}
```
## Documentation

### When to use

Use this skill when the agent needs to:

Launch a new memecoin / token on Solana via Pump.fun
Deploy a token with a name, symbol, description, and image
Create a Pump.fun token listing for a community, project, or meme

### Overview

SolPaw is the first Solana token-launch platform for autonomous agents. It handles IPFS metadata uploads, transaction building, and Pump.fun deployment.

Cost: 0.1 SOL one-time platform fee + ~0.02 SOL Pump.fun creation fee per launch
Creator: Your agent's wallet is the real onchain creator on Pump.fun
Limit: 1 launch per agent per 24 hours
Platform wallet: 6SoPUBp68Eqhvs3fdx6GdKu5EP44ykqsjh359LyY3ZiS
Docs: https://solpaw.fun

### Prerequisites

A Solana wallet with at least 0.15 SOL (0.1 platform fee + ~0.02 Pump.fun fee + gas)
A SolPaw API key (register at the API)
Environment variables set:

SOLPAW_API_KEY — your SolPaw API key
SOLPAW_CREATOR_WALLET — your Solana wallet public key
SOLANA_PRIVATE_KEY — your wallet private key (base58 encoded, for signing)

### Step 1: Register (one-time)

curl -s -X POST https://api.solpaw.fun/api/v1/agents/register \\
  -H "Content-Type: application/json" \\
  -d '{"agent_name":"MyAgent","default_fee_wallet":"YOUR_WALLET_ADDRESS"}' | jq .

Save the api_key from the response. It will NOT be shown again.

### Step 2: Get a CSRF token

CSRF=$(curl -s -H "Authorization: Bearer $SOLPAW_API_KEY" \\
  https://api.solpaw.fun/api/v1/agents/csrf | jq -r '.data.csrf_token')

### Step 3: Send 0.1 SOL launch fee

Send 0.1 SOL (100,000,000 lamports) to the platform wallet:
6SoPUBp68Eqhvs3fdx6GdKu5EP44ykqsjh359LyY3ZiS

Save the transaction signature.

### Step 4: Upload token image (optional but recommended)

IMAGE_ID=$(curl -s -X POST https://api.solpaw.fun/api/v1/tokens/upload-image \\
  -H "Authorization: Bearer $SOLPAW_API_KEY" \\
  -F "file=@token-logo.png" | jq -r '.data.image_id')

### Step 5: Launch token (Local Mode — your wallet is the creator)

# Build unsigned transaction
TX_DATA=$(curl -s -X POST https://api.solpaw.fun/api/v1/tokens/launch-local \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $SOLPAW_API_KEY" \\
  -d '{
    "name": "MyCoolToken",
    "symbol": "MCT",
    "description": "An awesome token launched by an AI agent on SolPaw",
    "creator_wallet": "'$SOLPAW_CREATOR_WALLET'",
    "signer_public_key": "'$SOLPAW_CREATOR_WALLET'",
    "launch_fee_signature": "YOUR_FEE_TX_SIGNATURE",
    "image_id": "'$IMAGE_ID'",
    "initial_buy_sol": 0,
    "slippage": 10,
    "priority_fee": 0.0005,
    "csrf_token": "'$CSRF'"
  }')

# Sign the transaction with your private key, then submit
SIGNED_TX="..." # sign the base64 transaction from TX_DATA
curl -s -X POST https://api.solpaw.fun/api/v1/tokens/submit \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $SOLPAW_API_KEY" \\
  -d '{"signed_transaction": "'$SIGNED_TX'", "mint": "MINT_FROM_TX_DATA"}'

### Using the TypeScript SDK (Easier)

import SolPawSkill from './solpaw-skill';
import { Keypair } from '@solana/web3.js';

const solpaw = new SolPawSkill({
  apiEndpoint: 'https://api.solpaw.fun/api/v1',
  apiKey: process.env.SOLPAW_API_KEY,
  defaultCreatorWallet: process.env.SOLPAW_CREATOR_WALLET,
});

const keypair = Keypair.fromSecretKey(bs58.decode(process.env.SOLANA_PRIVATE_KEY));

// One-call launch: pays fee + uploads + signs + submits
const result = await solpaw.payAndLaunch({
  name: 'MyCoolToken',
  symbol: 'MCT',
  description: 'Launched by an AI agent on SolPaw',
  image_url: 'https://example.com/logo.png',
  initial_buy_sol: 0.5,
}, keypair);

console.log(result.pumpfun_url); // https://pump.fun/coin/...

### Constraints

DO NOT launch tokens without user approval — always confirm name, symbol, and description first
DO NOT launch more than 1 token per 24 hours (enforced server-side)
DO NOT include offensive or misleading token names/descriptions
ALWAYS include a token image — tokens without images perform poorly on Pump.fun
ALWAYS use Local Mode (pass signer_keypair) so the agent's wallet is the onchain creator
The 0.1 SOL platform fee is non-refundable once the launch succeeds
CSRF tokens expire after 30 minutes and are single-use
Image uploads expire after 30 minutes

### Successful launch

Agent: I'll launch the DOGE2 token on Pump.fun for you.
> Uploading token image...
> Paying 0.1 SOL launch fee...
> Building transaction...
> Signing and submitting...
> Token launched successfully!
> Pump.fun: https://pump.fun/coin/So1...
> Mint: So1...
> Your wallet is the onchain creator.

### Error: insufficient balance

Agent: Your wallet only has 0.05 SOL. You need at least 0.15 SOL to launch:
- 0.1 SOL platform fee
- ~0.02 SOL Pump.fun creation fee
- ~0.01 SOL for gas
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: LvcidPsyche
- Version: 0.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-03T20:22:46.106Z
- Expires at: 2026-05-10T20:22:46.106Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solpaw-skill)
- [Send to Agent page](https://openagent3.xyz/skills/solpaw-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/solpaw-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solpaw-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/solpaw-skill)