# Send Openclaw Skill Publish 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": "openclaw-skill-publish",
    "name": "Openclaw Skill Publish",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/vlprosvirkin/openclaw-skill-publish",
    "canonicalUrl": "https://clawhub.ai/vlprosvirkin/openclaw-skill-publish",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-skill-publish",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-publish",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "lib/api_client.py",
      "scripts/probtrade.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-skill-publish",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T16:55:15.065Z",
      "expiresAt": "2026-05-13T16:55:15.065Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-publish",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-publish",
        "contentDisposition": "attachment; filename=\"openclaw-skill-publish-2.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-skill-publish"
      },
      "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/openclaw-skill-publish"
    },
    "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-skill-publish",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-skill-publish",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-skill-publish/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-publish/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-publish/agent.md"
  }
}
```
## Documentation

### prob.trade — Polymarket Analytics & Trading

Get real-time prediction market intelligence and trade on Polymarket from prob.trade. Browse trending markets, discover price movements, see what top traders are doing, and place orders.

### Setup (required for all commands)

All commands require a prob.trade API key. Configure it in ~/.openclaw/skills/probtrade/config.yaml:

api_key: "ptk_live_..."
api_secret: "pts_..."

Generate keys at https://app.prob.trade (Settings → API Keys). Free account required.

### Analytics Commands

Use the scripts below to query the prob.trade Public API.

### Market Overview

Get a quick snapshot of the prediction market landscape:

python3 {baseDir}/scripts/probtrade.py overview

Returns: market stats, top 10 hot markets, breaking price movements, and newest markets.

### Hot Markets

See the most actively traded markets right now:

python3 {baseDir}/scripts/probtrade.py hot [--limit N]

### Breaking Markets

Markets with the biggest price movements in the last 24 hours:

python3 {baseDir}/scripts/probtrade.py breaking [--limit N]

### New Markets

Recently created prediction markets:

python3 {baseDir}/scripts/probtrade.py new [--limit N] [--days N]

### Search Markets

Find markets about a specific topic:

python3 {baseDir}/scripts/probtrade.py search "Trump" [--limit N]

### Market Details

Get detailed information about a specific market by its condition ID:

python3 {baseDir}/scripts/probtrade.py market <condition_id>

### Market Statistics

Category breakdown and overall market counts:

python3 {baseDir}/scripts/probtrade.py stats

### Top Traders

See the most profitable prediction market traders:

python3 {baseDir}/scripts/probtrade.py traders [--limit N] [--sort pnl|roi|volume|winRate] [--period all|30d|7d|24h]

### Trading Commands

Trade on Polymarket using the same API key configured above.

### Place Order

python3 {baseDir}/scripts/probtrade.py order --market <condition_id> --side BUY --outcome Yes --type LIMIT --price 0.55 --amount 10

### Cancel Order

python3 {baseDir}/scripts/probtrade.py cancel --order-id <orderId>

### View Positions

python3 {baseDir}/scripts/probtrade.py positions

### View Balance

python3 {baseDir}/scripts/probtrade.py balance

### View Open Orders

python3 {baseDir}/scripts/probtrade.py orders

Security: API secret never leaves your machine. Only HMAC signatures are sent. No withdraw/transfer endpoints exist.

### Output Format

All commands output structured JSON for easy parsing by AI agents. Key fields:

condition_id: Unique market identifier (use for trading on Polymarket)
question: The prediction market question
tokens: Current prices for Yes/No outcomes
volume_24hr: Trading volume in last 24 hours
liquidity: Available liquidity for trading
end_date_iso: When the market resolves

### Links

Dashboard: https://app.prob.trade
Market page: https://app.prob.trade/markets/{condition_id}
Trader profile: https://app.prob.trade/traders/{address}
Public API: https://api.prob.trade/api/public/overview
Trading API docs: https://prob.trade/docs/public-api
ClawHub: https://clawhub.ai/vlprosvirkin/prob-trade-polymarket-analytics
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: vlprosvirkin
- Version: 2.0.4
## 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-06T16:55:15.065Z
- Expires at: 2026-05-13T16:55:15.065Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-skill-publish)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-skill-publish/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-skill-publish/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-skill-publish/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-skill-publish)