# Send P0 Systems 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": "p0-systems",
    "name": "P0 Systems",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/SerPepe/p0-systems",
    "canonicalUrl": "https://clawhub.ai/SerPepe/p0-systems",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/p0-systems",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=p0-systems",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "p0-systems",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T00:48:56.769Z",
      "expiresAt": "2026-05-10T00:48:56.769Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=p0-systems",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=p0-systems",
        "contentDisposition": "attachment; filename=\"p0-systems-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "p0-systems"
      },
      "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/p0-systems"
    },
    "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/p0-systems",
    "downloadUrl": "https://openagent3.xyz/downloads/p0-systems",
    "agentUrl": "https://openagent3.xyz/skills/p0-systems/agent",
    "manifestUrl": "https://openagent3.xyz/skills/p0-systems/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/p0-systems/agent.md"
  }
}
```
## Documentation

### P0 for Agents — ClawHub Skill

Deploy tokens on Solana. Trade on pump.fun & Jupiter. Earn creator fees. Pay your own rent.

### Setup

Set P0_API_KEY in your environment. Get one by registering:

curl -X POST https://api.p0.systems/api/x402/register \\
  -H "Content-Type: application/json" \\
  -d '{"walletAddress": "YOUR_SOLANA_WALLET", "signature": "BASE58_ED25519_SIGNATURE", "message": "THE_MESSAGE_YOU_SIGNED"}'

Or register with email:

curl -X POST https://api.p0.systems/api/x402/register \\
  -H "Content-Type: application/json" \\
  -d '{"email": "agent@example.com"}'

Returns { apiKey: "p0_live_...", credits: 1000 }.

### Base URL

https://api.p0.systems/api/x402

All authenticated endpoints use x-api-key: $P0_API_KEY header. Rate limit: 60 req/min.

### Create project

POST /projects
Content-Type: application/json
x-api-key: $P0_API_KEY

{"tokenName": "AgentCoin", "tokenTicker": "AGENT", "textDescription": "An AI agent token", "templateId": "cyber-punk"}
→ { project: { id, domain } }

### Deploy token

POST /projects/{id}/deploy
x-api-key: $P0_API_KEY

{"platform": "pump_fun", "initialBuySol": 0.01}
→ { deployment: { tokenAddress, signature } }

Platform options: pump_fun, bags. Free campaign deploy is pump.fun only (gas only, no initial buy covered).

### Batch deploy (Pro only)

POST /batch
x-api-key: $P0_API_KEY

{"tokens": [{"tokenName": "...", "tokenTicker": "...", "textDescription": "...", "platform": "pump_fun"}]}
→ { batchId }

GET /batch/{batchId} → poll status
GET /batches → list all batches

### Fee Claiming

GET /projects/{id}/earnings → { pending, claimed, currency: "SOL" }
POST /projects/{id}/claim-fees → { claimed, currency, signatures }
GET /earnings → total earnings across all tokens
POST /claim-all-fees → claim from all tokens at once

### Token data

GET /tokens/recent → recently deployed tokens
GET /tokens/trending → trending tokens by volume
GET /tokens/almost-bonded → tokens near bonding curve graduation
GET /tokens/{address} → token details, price, metadata

### Swap / Trade

GET /swap/quote?inputMint=So11...&outputMint=TOKEN&amount=1000000&slippage=1
→ { quote, route, priceImpact }

POST /swap
x-api-key: $P0_API_KEY
{"inputMint": "So11...", "outputMint": "TOKEN", "amount": 1000000, "slippage": 1}
→ { signature, inputAmount, outputAmount }

### Positions & Alerts

GET /positions → your open token positions
GET /alerts → your active price alerts
POST /alerts
{"tokenAddress": "...", "targetPrice": 0.001, "direction": "above"}
→ { alertId }

### Favorites

GET /favorites → your saved tokens
POST /favorites
{"tokenAddress": "..."}

### Account Management

GET /account → account info, plan, campaign usage
POST /api-keys → generate additional API key
DELETE /api-keys/{id} → revoke a key
GET /pricing → credit pricing in SOL/USDC/P0
POST /credits/purchase → buy credits
GET /credits/balance → check balance
POST /credits/upgrade → upgrade to Pro (1 SOL/30 days)

### Pricing

FeatureFree AgentPro Agent (1 SOL/mo)Projects/day1 free deploy (pump.fun, gas only)UnlimitedGas fees1 free (wallet required, no initial buy covered), then self-payAll coveredBatch deployNoYes (up to 10)Terminal tradingYesYesCustom domainsNoYes

### Strategy

Register with wallet to get free campaign deploys
Deploy tokens → wait for trading → claim fees
Use GET /earnings to monitor pending fees
Use POST /claim-all-fees to sweep earnings
Reinvest earned SOL into new deployments
Use terminal API to trade and discover opportunities

Built by p0 | Full docs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: SerPepe
- 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-03T00:48:56.769Z
- Expires at: 2026-05-10T00:48:56.769Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/p0-systems)
- [Send to Agent page](https://openagent3.xyz/skills/p0-systems/agent)
- [JSON manifest](https://openagent3.xyz/skills/p0-systems/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/p0-systems/agent.md)
- [Download page](https://openagent3.xyz/downloads/p0-systems)