# Send OpenClaw Paid Actions 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": "openclaw-paid-actions",
    "name": "OpenClaw Paid Actions",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/icetroll/openclaw-paid-actions",
    "canonicalUrl": "https://clawhub.ai/icetroll/openclaw-paid-actions",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-paid-actions",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-paid-actions",
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/openclaw-paid-actions"
    },
    "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/openclaw-paid-actions",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-paid-actions",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-paid-actions/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-paid-actions/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-paid-actions/agent.md"
  }
}
```
## Documentation

### OpenClaw Paid Actions

Use this skill when an action must be paid before it runs.

Tool: openclaw_paid_action

This skill is instruction-only. It expects a trusted installed implementation of the openclaw-paid-actions plugin that provides openclaw_paid_action.

Actions:

list: List configured paid actions.
quote: Build USDC payment instructions for an action.
invoice: Create a signed invoice token for an action/input.
status: Check current invoice payment status.
wait: Poll until the invoice is paid (or timeout/expiry).
confirm (or pay alias): Validate payment transaction on-chain, then mark invoice paid.
execute: Run the action after invoice is confirmed paid.

### Typical Flow

Call openclaw_paid_action with action: "list" to discover action IDs.
Call openclaw_paid_action with action: "invoice" and actionId (plus optional input, recipient, memo).
Send the returned invoiceMessage or paymentInstructions to the payer.
After payment is received, call openclaw_paid_action with action: "confirm" and invoice (or invoiceId) plus transaction to validate on-chain and mark paid.
You can also pass paymentProofText with the raw user reply; the tool extracts the Solana tx signature automatically.
Call openclaw_paid_action with action: "wait" (or status) to know when it is paid.
Call openclaw_paid_action with action: "execute" and invoice to run after payment.

### Plugin Config

Configure under plugins.entries.openclaw-paid-actions.config:

{
  "network": "solana:mainnet",
  "payTo": "${OPENCLAW_USDC_PAY_TO}",
  "invoiceSecret": "${OPENCLAW_PAID_ACTIONS_INVOICE_SECRET}",
  "invoiceStorePath": "${OPENCLAW_PAID_ACTIONS_INVOICE_STORE_PATH}",
  "allowRunAsRoot": false,
  "requirePersistentInvoiceSecret": true,
  "requireInvoiceStorePath": true,
  "enforceReviewedScripts": true,
  "reviewedScriptsRoot": "scripts/paid-actions",
  "requiredNodeMajor": 20,
  "defaultInvoiceWaitSeconds": 900,
  "invoicePollIntervalMs": 3000,
  "maxTimeoutSeconds": 120,
  "defaultTaskTimeoutMs": 30000,
  "maxOutputBytes": 32768,
  "actions": {
    "x-shoutout": {
      "description": "Post a paid shoutout on X",
      "command": ["node", "scripts/paid-actions/x-shoutout.mjs"],
      "cwd": ".",
      "price": "0.03",
      "timeoutMs": 45000
    }
  }
}

Notes:

Each action runs exactly the configured command array.
Invoice execution uses the input embedded in the invoice token.
Action input is exposed as OPENCLAW_PAID_ACTION_INPUT_JSON.
Command output is truncated at maxOutputBytes.
If notifySessionKey is set on invoice creation, the gateway emits a system event when payment is recorded.
The tool is optional in OpenClaw; add openclaw_paid_action to agent tools.allow.
Production defaults block startup if invoiceSecret or invoiceStorePath is missing.
Production defaults block unreviewed commands; keep actions under scripts/paid-actions.
Review every configured action command before enabling autonomous execution.

### Real Action Inputs

For x-shoutout:

{
  "handle": "openclaw",
  "message": "Huge shoutout to @openclaw for supporting this build!",
  "link": "https://x.com/openclaw"
}

For discord-shoutout:

{
  "name": "Daniel",
  "note": "Thanks for supporting the build."
}
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: icetroll
- Version: 0.2.2
## 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-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-paid-actions)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-paid-actions/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-paid-actions/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-paid-actions/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-paid-actions)