# Send Launch a Token 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": "mplx-genesis",
    "name": "Launch a Token",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/blockiosaurus/mplx-genesis",
    "canonicalUrl": "https://clawhub.ai/blockiosaurus/mplx-genesis",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mplx-genesis",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mplx-genesis",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mplx-genesis"
    },
    "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/mplx-genesis",
    "downloadUrl": "https://openagent3.xyz/downloads/mplx-genesis",
    "agentUrl": "https://openagent3.xyz/skills/mplx-genesis/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mplx-genesis/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mplx-genesis/agent.md"
  }
}
```
## Documentation

### Metaplex Genesis Token Launch

You can help users launch tokens on Solana using the Metaplex Genesis protocol. Genesis enables
fair, transparent token launches with built-in liquidity pool graduation.

### What is Genesis?

Genesis is a token launch protocol on Solana by Metaplex. It supports:

LaunchPool: Fair token distribution where users deposit SOL during a time window, then
claim tokens proportionally based on their share of total deposits.
Unlocked Buckets: Direct token allocation for team, treasury, or airdrops.
Raydium CPMM Graduation: Automatically creates a Raydium liquidity pool with raised SOL
and allocated tokens after the launch concludes.

### Launch Lifecycle

Create the launch (genesis_create_launch) - sets up the token and Genesis account
Configure buckets - add LaunchPool, Unlocked, and/or Raydium buckets
Finalize (genesis_finalize_launch) - locks configuration, launch goes live
Users deposit SOL during the deposit period
After deposit period, SOL flows to Raydium and a liquidity pool is created
Users claim their tokens during the claim period

### Recommended Flow

When a user wants to launch a token, gather this information:

Token details: name, symbol, description, and image file path
Total supply: how many tokens (default: 1 billion)
Allocation split: what percentage goes to launchpool vs liquidity vs team

Example: 60% launchpool / 20% Raydium liquidity / 20% team


Timing: when deposits open, how long they last, when claims start

### Common Configuration: LaunchPool + Raydium + Team

This is the most common setup. Example with 60/20/20 split:

Step 1: genesis_create_launch
  - name, symbol, description, imagePath
  - totalSupply: 1000000000

Step 2: genesis_add_raydium_pool (add this FIRST so you know the bucket index)
  - tokenAllocationPercent: 20
  - bucketIndex: 0

Step 3: genesis_add_launchpool
  - tokenAllocationPercent: 60
  - depositDurationHours: 72 (3 days)
  - claimDurationHours: 168 (7 days)
  - sendQuoteTokenToRaydiumBucketIndex: 0
  - bucketIndex: 0

Step 4: genesis_add_unlocked
  - tokenAllocationPercent: 20
  - bucketIndex: 0

Step 5: genesis_finalize_launch
  - raydiumBucketIndexes: [0]
  - launchpoolBucketIndexes: [0]
  - unlockedBucketIndexes: [0]

### Important Notes

Token allocations across all buckets must sum to exactly 100%
Add the Raydium bucket before the LaunchPool so you can reference its bucket index in
the launchpool's sendQuoteTokenToRaydiumBucketIndex
The Raydium pool creation costs 0.15 SOL
Metadata (image + JSON) is uploaded to Arweave via Irys, paid from the wallet's SOL
Use genesis_launch_status to check a launch's current state at any time

### Wallet Setup

The plugin needs a Solana keypair. Users can configure it via:

Plugin config: keypairPath pointing to a JSON keypair file
Environment variable: SOLANA_KEYPAIR_PATH
Default: ~/.config/solana/id.json

The wallet must have enough SOL for transaction fees, Irys uploads, and the Raydium pool creation fee.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: blockiosaurus
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mplx-genesis)
- [Send to Agent page](https://openagent3.xyz/skills/mplx-genesis/agent)
- [JSON manifest](https://openagent3.xyz/skills/mplx-genesis/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mplx-genesis/agent.md)
- [Download page](https://openagent3.xyz/downloads/mplx-genesis)