{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/polymarket-manual-trade",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=polymarket-manual-trade",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "clawhub.json",
      "manual_trade.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/polymarket-manual-trade",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Manual Trade Placement",
        "body": "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."
      },
      {
        "title": "Usage",
        "body": "Tell your agent:\n\n\"Buy YES $10 on [Polymarket URL or market ID]\"\n\"Place a GTC limit NO $20 at 0.35 on [market]\"\n\nOr run directly:\n\n# FAK — instant fill at best ask price (default)\npython3 manual_trade.py --market <market_id_or_url> --side YES --amount 10\n\n# GTC — limit order, sits on book until filled\npython3 manual_trade.py --market <market_id_or_url> --side NO --amount 20 --order GTC --price 0.35\n\n# Full Polymarket URL — auto-imports and trades\npython3 manual_trade.py \\\n  --market https://polymarket.com/event/spacex-starship-flight-test-12/will-the-chopsticks-catch-spacex-starship-flight-test-12-superheavy-booster \\\n  --side YES --amount 10\n\n# Dry run (preview without placing)\npython3 manual_trade.py --market <id> --side YES --amount 10 --dry-run"
      },
      {
        "title": "Order Types",
        "body": "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"
      },
      {
        "title": "Arguments",
        "body": "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"
      },
      {
        "title": "How it Works",
        "body": "Market resolution — if you pass a Polymarket URL, it auto-imports via Simmer's import API and resolves to the correct market\nPrice discovery — fetches live CLOB order book, uses best ask + 0.01 for FAK to guarantee fill\nOrder placement — signs and submits via simmer-sdk with your wallet key\nConfirmation — reports shares filled, cost, and trade ID"
      },
      {
        "title": "Requirements",
        "body": "SIMMER_API_KEY — your Simmer API key\nWALLET_PRIVATE_KEY — your Polymarket wallet private key (for on-chain signing)\nsimmer-sdk >= 0.8.32\n\nBuilt for Simmer — the AI trading agent platform for Polymarket and Kalshi."
      }
    ],
    "body": "Manual Trade Placement\n\nPlace 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.\n\nUsage\n\nTell your agent:\n\n\"Buy YES $10 on [Polymarket URL or market ID]\" \"Place a GTC limit NO $20 at 0.35 on [market]\"\n\nOr run directly:\n\n# FAK — instant fill at best ask price (default)\npython3 manual_trade.py --market <market_id_or_url> --side YES --amount 10\n\n# GTC — limit order, sits on book until filled\npython3 manual_trade.py --market <market_id_or_url> --side NO --amount 20 --order GTC --price 0.35\n\n# Full Polymarket URL — auto-imports and trades\npython3 manual_trade.py \\\n  --market https://polymarket.com/event/spacex-starship-flight-test-12/will-the-chopsticks-catch-spacex-starship-flight-test-12-superheavy-booster \\\n  --side YES --amount 10\n\n# Dry run (preview without placing)\npython3 manual_trade.py --market <id> --side YES --amount 10 --dry-run\n\nOrder Types\nType\tBehavior\tWhen to use\nFAK (default)\tFills immediately at best ask+0.01. Remainder cancelled.\tYou want in now at market price\nGTC\tLimit order sits on CLOB book. Funds locked on placement, fill when market reaches your price\tYou want a specific price\nArguments\nFlag\tDescription\n--market / -m\tSimmer market ID or full Polymarket URL\n--side / -s\tYES or NO\n--amount / -a\tDollar amount (default $10)\n--order / -o\tFAK, GTC, or FOK (default FAK)\n--price / -p\tLimit price (optional — auto-fetches best ask+0.01 if omitted)\n--venue / -v\tpolymarket or sim (default polymarket)\n--cancel\tCancel all open orders on the market\n--cancel-side\tCancel only yes or no side orders\n--dry-run\tPreview without placing\nHow it Works\nMarket resolution — if you pass a Polymarket URL, it auto-imports via Simmer's import API and resolves to the correct market\nPrice discovery — fetches live CLOB order book, uses best ask + 0.01 for FAK to guarantee fill\nOrder placement — signs and submits via simmer-sdk with your wallet key\nConfirmation — reports shares filled, cost, and trade ID\nRequirements\nSIMMER_API_KEY — your Simmer API key\nWALLET_PRIVATE_KEY — your Polymarket wallet private key (for on-chain signing)\nsimmer-sdk >= 0.8.32\n\nBuilt for Simmer — the AI trading agent platform for Polymarket and Kalshi."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DjDyll/polymarket-manual-trade",
    "publisherUrl": "https://clawhub.ai/DjDyll/polymarket-manual-trade",
    "owner": "DjDyll",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}