{
  "schemaVersion": "1.0",
  "item": {
    "slug": "polymarket-bot",
    "name": "Polymarket Bot Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/deliverydriver/polymarket-bot",
    "canonicalUrl": "https://clawhub.ai/deliverydriver/polymarket-bot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/polymarket-bot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=polymarket-bot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api_guide.md",
      "references/challenges.md",
      "references/prompts.md",
      "references/strategy_examples.md",
      "scripts/advanced_features.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/polymarket-bot"
    },
    "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-bot",
    "agentPageUrl": "https://openagent3.xyz/skills/polymarket-bot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/polymarket-bot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/polymarket-bot/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": "Overview",
        "body": "This skill enables the creation and operation of a Polymarket bot for tasks such as fetching active markets, monitoring prices, placing orders, and running strategies. It's designed for users involved in cryptocurrency prediction markets, helping automate interactions via the Polymarket APIs while minimizing risks."
      },
      {
        "title": "Quick Start",
        "body": "To get started, use the scripts in this skill to initialize and run a basic bot. For example, execute scripts/fetch_markets.py to retrieve active markets, then use scripts/bot_strategy.py for arbitrage checks."
      },
      {
        "title": "Task-Based Structure",
        "body": "This skill is organized by tasks from the SOP, providing modular components for bot development."
      },
      {
        "title": "Step 1: Research and Setup Prerequisites",
        "body": "Review Polymarket APIs (Gamma, CLOB, Data) as outlined in the SOP.\nEnsure tools like Python and Web3.py are installed.\nReference references/api_guide.md for detailed API usage."
      },
      {
        "title": "Step 2: Define Bot Functionality and Strategy",
        "body": "Implement core features like data fetching and trade execution.\nUse prompts in references/prompts.md to generate code for strategies.\nExample: Run scripts/strategy_logic.py for arbitrage detection."
      },
      {
        "title": "Step 3: Development Phases",
        "body": "Data Fetching Module: Use scripts/fetch_markets.py to query markets.\nAuthentication and Trading Setup: Handle in scripts/auth_setup.py.\nTesting and Deployment: Test with scripts/test_bot.py and deploy via references."
      },
      {
        "title": "Step 4: Potential Challenges and Mitigations",
        "body": "Reference references/challenges.md for rate limits, fees, and security tips."
      },
      {
        "title": "Step 5: Resources",
        "body": "See below for scripts and references based on the SOP."
      },
      {
        "title": "scripts/",
        "body": "fetch_markets.py: Script to fetch and parse market data from Polymarket APIs.\nauth_setup.py: Handles authentication and deriving API keys.\nstrategy_logic.py: Implements bot strategies like arbitrage.\nbot_integration.py: Combines phases into a full bot script."
      },
      {
        "title": "references/",
        "body": "api_guide.md: Documentation on Polymarket APIs and setup.\nstrategy_examples.md: Examples of prompts for code generation.\nchallenges.md: Common issues and mitigations for bot development."
      },
      {
        "title": "assets/",
        "body": "(No assets needed for this skill at the moment.)"
      }
    ],
    "body": "Polymarket Bot Skill\nOverview\n\nThis skill enables the creation and operation of a Polymarket bot for tasks such as fetching active markets, monitoring prices, placing orders, and running strategies. It's designed for users involved in cryptocurrency prediction markets, helping automate interactions via the Polymarket APIs while minimizing risks.\n\nQuick Start\n\nTo get started, use the scripts in this skill to initialize and run a basic bot. For example, execute scripts/fetch_markets.py to retrieve active markets, then use scripts/bot_strategy.py for arbitrage checks.\n\nTask-Based Structure\n\nThis skill is organized by tasks from the SOP, providing modular components for bot development.\n\nStep 1: Research and Setup Prerequisites\nReview Polymarket APIs (Gamma, CLOB, Data) as outlined in the SOP.\nEnsure tools like Python and Web3.py are installed.\nReference references/api_guide.md for detailed API usage.\nStep 2: Define Bot Functionality and Strategy\nImplement core features like data fetching and trade execution.\nUse prompts in references/prompts.md to generate code for strategies.\nExample: Run scripts/strategy_logic.py for arbitrage detection.\nStep 3: Development Phases\nData Fetching Module: Use scripts/fetch_markets.py to query markets.\nAuthentication and Trading Setup: Handle in scripts/auth_setup.py.\nTesting and Deployment: Test with scripts/test_bot.py and deploy via references.\nStep 4: Potential Challenges and Mitigations\nReference references/challenges.md for rate limits, fees, and security tips.\nStep 5: Resources\nSee below for scripts and references based on the SOP.\nResources\nscripts/\nfetch_markets.py: Script to fetch and parse market data from Polymarket APIs.\nauth_setup.py: Handles authentication and deriving API keys.\nstrategy_logic.py: Implements bot strategies like arbitrage.\nbot_integration.py: Combines phases into a full bot script.\nreferences/\napi_guide.md: Documentation on Polymarket APIs and setup.\nstrategy_examples.md: Examples of prompts for code generation.\nchallenges.md: Common issues and mitigations for bot development.\nassets/\n(No assets needed for this skill at the moment.)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/deliverydriver/polymarket-bot",
    "publisherUrl": "https://clawhub.ai/deliverydriver/polymarket-bot",
    "owner": "deliverydriver",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/polymarket-bot",
    "downloadUrl": "https://openagent3.xyz/downloads/polymarket-bot",
    "agentUrl": "https://openagent3.xyz/skills/polymarket-bot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/polymarket-bot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/polymarket-bot/agent.md"
  }
}