# Send Polymarket Manual Trade 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": "polymarket-manual-trade",
    "name": "Polymarket Manual Trade",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/DjDyll/polymarket-manual-trade",
    "canonicalUrl": "https://clawhub.ai/DjDyll/polymarket-manual-trade",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/polymarket-manual-trade",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=polymarket-manual-trade",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "clawhub.json",
      "manual_trade.py"
    ],
    "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/polymarket-manual-trade"
    },
    "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/polymarket-manual-trade",
    "downloadUrl": "https://openagent3.xyz/downloads/polymarket-manual-trade",
    "agentUrl": "https://openagent3.xyz/skills/polymarket-manual-trade/agent",
    "manifestUrl": "https://openagent3.xyz/skills/polymarket-manual-trade/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/polymarket-manual-trade/agent.md"
  }
}
```
## Documentation

### Manual Trade Placement

Place trades on Polymarket by telling your AI agent what to bet on. Supports instant FAK fills and GTC limit orders. Works with Simmer market IDs or full Polymarket event URLs.

### Usage

Tell your agent:

"Buy YES $10 on [Polymarket URL or market ID]"
"Place a GTC limit NO $20 at 0.35 on [market]"

Or run directly:

# FAK — instant fill at best ask price (default)
python3 manual_trade.py --market <market_id_or_url> --side YES --amount 10

# GTC — limit order, sits on book until filled
python3 manual_trade.py --market <market_id_or_url> --side NO --amount 20 --order GTC --price 0.35

# Full Polymarket URL — auto-imports and trades
python3 manual_trade.py \\
  --market https://polymarket.com/event/spacex-starship-flight-test-12/will-the-chopsticks-catch-spacex-starship-flight-test-12-superheavy-booster \\
  --side YES --amount 10

# Dry run (preview without placing)
python3 manual_trade.py --market <id> --side YES --amount 10 --dry-run

### Order Types

TypeBehaviorWhen to useFAK (default)Fills immediately at best ask+0.01. Remainder cancelled.You want in now at market priceGTCLimit order sits on CLOB book. Funds locked on placement, fill when market reaches your priceYou want a specific price

### Arguments

FlagDescription--market / -mSimmer market ID or full Polymarket URL--side / -sYES or NO--amount / -aDollar amount (default $10)--order / -oFAK, GTC, or FOK (default FAK)--price / -pLimit price (optional — auto-fetches best ask+0.01 if omitted)--venue / -vpolymarket or sim (default polymarket)--cancelCancel all open orders on the market--cancel-sideCancel only yes or no side orders--dry-runPreview without placing

### How it Works

Market resolution — if you pass a Polymarket URL, it auto-imports via Simmer's import API and resolves to the correct market
Price discovery — fetches live CLOB order book, uses best ask + 0.01 for FAK to guarantee fill
Order placement — signs and submits via simmer-sdk with your wallet key
Confirmation — reports shares filled, cost, and trade ID

### Requirements

SIMMER_API_KEY — your Simmer API key
WALLET_PRIVATE_KEY — your Polymarket wallet private key (for on-chain signing)
simmer-sdk >= 0.8.32

Built for Simmer — the AI trading agent platform for Polymarket and Kalshi.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: DjDyll
- Version: 1.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-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/polymarket-manual-trade)
- [Send to Agent page](https://openagent3.xyz/skills/polymarket-manual-trade/agent)
- [JSON manifest](https://openagent3.xyz/skills/polymarket-manual-trade/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/polymarket-manual-trade/agent.md)
- [Download page](https://openagent3.xyz/downloads/polymarket-manual-trade)