{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zakkycrypt01-polymarket-trader",
    "name": "Polymarket Trader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zakkycrypt01/zakkycrypt01-polymarket-trader",
    "canonicalUrl": "https://clawhub.ai/zakkycrypt01/zakkycrypt01-polymarket-trader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zakkycrypt01-polymarket-trader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zakkycrypt01-polymarket-trader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "inspect_client.py",
      "inspect_methods.py",
      "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. 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. 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/zakkycrypt01-polymarket-trader"
    },
    "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/zakkycrypt01-polymarket-trader",
    "agentPageUrl": "https://openagent3.xyz/skills/zakkycrypt01-polymarket-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zakkycrypt01-polymarket-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zakkycrypt01-polymarket-trader/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Polymarket Trader Skill",
        "body": "This skill provides a tool to place trades on Polymarket."
      },
      {
        "title": "Security",
        "body": "This skill is designed to be secure. It reads the private key from the POLYMARKET_PRIVATE_KEY environment variable and reads all trade parameters as environment variables to prevent shell injection."
      },
      {
        "title": "Setup",
        "body": "This skill requires a Python virtual environment named polymarket_venv located in the OpenClaw workspace root.\n\nThe environment must have the following packages installed:\n\npy-clob-client\nrequests\n\nIt also requires the POLYMARKET_PRIVATE_KEY environment variable to be set for the OpenClaw user."
      },
      {
        "title": "place_polymarket_order",
        "body": "This tool is a wrapper around the trade.py script. It allows the agent to place trades by providing the market slug, direction, price, and size."
      }
    ],
    "body": "name: polymarket_trader description: A skill to securely execute trades on the Polymarket CLOB via a Python script. tools:\n\nname: place_polymarket_order description: Places a limit order on a specified Polymarket market. args:\nname: market_slug type: string description: The slug of the market (e.g., 'trump-out-as-president-by-march-31').\nname: direction type: string description: \"The outcome to bet on. Must be 'Yes' or 'No'.\"\nname: price type: number description: The price for the limit order (e.g., 0.50). Must be between 0.01 and 0.99.\nname: size type: number description: The size of the order in shares (e.g., 10). exec:\nThis command chain securely passes arguments as environment variables to the script\nafter activating the virtual environment. This prevents shell injection vulnerabilities.\ncommand: > source ../../polymarket_venv/bin/activate && export MARKET_SLUG='{{market_slug}}' && export DIRECTION='{{direction}}' && export PRICE={{price}} && export SIZE={{size}} && python trade.py\nPolymarket Trader Skill\n\nThis skill provides a tool to place trades on Polymarket.\n\nSecurity\n\nThis skill is designed to be secure. It reads the private key from the POLYMARKET_PRIVATE_KEY environment variable and reads all trade parameters as environment variables to prevent shell injection.\n\nSetup\n\nThis skill requires a Python virtual environment named polymarket_venv located in the OpenClaw workspace root.\n\nThe environment must have the following packages installed:\n\npy-clob-client\nrequests\n\nIt also requires the POLYMARKET_PRIVATE_KEY environment variable to be set for the OpenClaw user.\n\nTools\nplace_polymarket_order\n\nThis tool is a wrapper around the trade.py script. It allows the agent to place trades by providing the market slug, direction, price, and size."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zakkycrypt01/zakkycrypt01-polymarket-trader",
    "publisherUrl": "https://clawhub.ai/zakkycrypt01/zakkycrypt01-polymarket-trader",
    "owner": "zakkycrypt01",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zakkycrypt01-polymarket-trader",
    "downloadUrl": "https://openagent3.xyz/downloads/zakkycrypt01-polymarket-trader",
    "agentUrl": "https://openagent3.xyz/skills/zakkycrypt01-polymarket-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zakkycrypt01-polymarket-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zakkycrypt01-polymarket-trader/agent.md"
  }
}