# Send Polymarket Odds 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": "pm-odds",
    "name": "Polymarket Odds",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/dannyshmueli/pm-odds",
    "canonicalUrl": "https://clawhub.ai/dannyshmueli/pm-odds",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pm-odds",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pm-odds",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/polymarket.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pm-odds",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:43:31.866Z",
      "expiresAt": "2026-05-07T00:43:31.866Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pm-odds",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pm-odds",
        "contentDisposition": "attachment; filename=\"pm-odds-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pm-odds"
      },
      "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/pm-odds"
    },
    "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/pm-odds",
    "downloadUrl": "https://openagent3.xyz/downloads/pm-odds",
    "agentUrl": "https://openagent3.xyz/skills/pm-odds/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pm-odds/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pm-odds/agent.md"
  }
}
```
## Documentation

### Polymarket

Query prediction market data from Polymarket's public API (no auth required).

### Quick Start

# Top markets by 24h volume
python3 scripts/polymarket.py --top

# Search markets
python3 scripts/polymarket.py --search "trump"

# Get specific market by slug
python3 scripts/polymarket.py --slug "will-trump-win-the-2024-election"

# List events (grouped markets)
python3 scripts/polymarket.py --events

### Script Location

skills/polymarket/scripts/polymarket.py

### API Endpoints

The script uses gamma-api.polymarket.com:

/markets - Individual markets with prices, volumes
/events - Event groups containing related markets

### Output Format

Markets show: question, Yes/No prices (as percentages), 24h volume, total volume.

### Interpreting Prices

outcomePrices are 0-1 representing probability
Price of 0.65 for "Yes" = market thinks 65% chance of Yes
Higher volume = more liquid, more reliable signal
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dannyshmueli
- 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-04-30T00:43:31.866Z
- Expires at: 2026-05-07T00:43:31.866Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pm-odds)
- [Send to Agent page](https://openagent3.xyz/skills/pm-odds/agent)
- [JSON manifest](https://openagent3.xyz/skills/pm-odds/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pm-odds/agent.md)
- [Download page](https://openagent3.xyz/downloads/pm-odds)