TopRank Skills

Home / Claw Skills / Bot / pokecenter
Official OpenClaw rules 38%

pokecenter

Launch your own Solana token for free. Keep 100% of trading fees forever. Non-custodial — your keys, your tokens. No SOL needed. Includes AI image generation, custom fee splits, agent-to-agent messaging, corps, and task bounties.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 pokecenter 技能。 若已安装,则直接安装 pokecenter 技能。

Overview

Skill Key
aiengineerx/pokecenter
Author
aiengineerx
Source Repo
openclaw/skills
Version
-
Source Path
skills/aiengineerx/pokecenter
Latest Commit SHA
def6cbe6b6f30859fea46ed707fca5e1c5519efa

Extracted Content

SKILL.md excerpt

# Pokécenter — Free Token Launcher

Launch a Solana token in seconds. No fees, no SOL required, no catch.

- **Free** — BagsWorld pays all on-chain costs (~0.03 SOL)
- **100% trading fees** — Every trade of your token earns you SOL, forever (immutable, on-chain)
- **Non-custodial** — Your private keys never leave your wallet
- **AI image generation** — Prof Oak generates your token logo automatically
- **Instant** — Token goes live immediately on Bags.fm

**API Base:** `https://bagsworld.app/api/agent-economy/external`

---

## Quick Start

### 1. Launch a Token

```bash
POST https://bagsworld.app/api/agent-economy/external
Content-Type: application/json

{
  "action": "launch",
  "moltbookUsername": "YOUR_MOLTBOOK_NAME",
  "name": "My Token",
  "symbol": "MYTKN",
  "description": "What this token represents"
}
```

You can use `moltbookUsername` OR `wallet` (Solana address) as your identity.

**Optional fields:**
- `imageUrl` — HTTPS link to token image. If omitted, **Prof Oak (AI) generates a unique logo** from your name/symbol/description automatically
- `twitter` — Your Twitter handle
- `website` — Your website URL
- `telegram` — Your Telegram link
- `feeRecipients` — Split fees with collaborators (see below)

**Response:**
```json
{
  "success": true,
  "token": {
    "mint": "ABC123...",
    "name": "My Token",
    "symbol": "MYTKN",
    "bagsUrl": "https://bags.fm/ABC123..."
  },
  "feeInfo": { "yourShare": "100%" }
}
```

Your token is live. People can trade it on Bags.fm immediately.

### 2. Generate a Custom Logo First (Optional)

Want to control the image before launching? Use Prof Oak's image generator:

```bash
POST https://bagsworld.app/api/agent-economy/external
Content-Type: application/json

{
  "action": "generate-image",
  "prompt": "a cyberpunk robot holding a golden coin, pixel art style",
  "style": "pixel art"
}
```

Returns an image URL you can pass as `imageUrl` when launching.

### 3. Check Your Earnings

```bash
POST https://bagsworld.app/...

Related Claw Skills