{
  "schemaVersion": "1.0",
  "item": {
    "slug": "polymarket-latest-events",
    "name": "Polymarket Latest Events",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/yaplora/polymarket-latest-events",
    "canonicalUrl": "https://clawhub.ai/yaplora/polymarket-latest-events",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/polymarket-latest-events",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=polymarket-latest-events",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-latest-events"
    },
    "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-latest-events",
    "agentPageUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent",
    "manifestUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/polymarket-latest-events/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 Latest Events",
        "body": "Fetch the latest events from the Polymarket prediction market platform."
      },
      {
        "title": "When to Use",
        "body": "Use this skill when the user:\n\nAsks about the latest events or markets on Polymarket\nWants to see trending prediction markets\nMentions Polymarket, prediction market, or betting odds\nAsks \"what's new on Polymarket\" or similar queries"
      },
      {
        "title": "How to Fetch",
        "body": "Use web_fetch (or curl via Bash) to call the Polymarket Gamma API. No API key or authentication is required."
      },
      {
        "title": "Get the 10 latest events",
        "body": "curl -s \"https://gamma-api.polymarket.com/events?active=true&closed=false&limit=10&order=createdAt&ascending=false\"\n\nOr with web_fetch:\n\nweb_fetch url=\"https://gamma-api.polymarket.com/events?active=true&closed=false&limit=10&order=createdAt&ascending=false\""
      },
      {
        "title": "Response format",
        "body": "The API returns a JSON array. Each event object contains:\n\nFieldDescriptiontitleEvent title / questionslugURL slug for the eventdescriptionDetailed descriptionstartDateEvent start datecreatedAtWhen the event was createdvolumeTotal trading volumeliquidityAvailable liquiditymarketsArray of sub-markets with outcomes and pricestagsCategory tags"
      },
      {
        "title": "Build event links",
        "body": "The Polymarket URL for each event is:\n\nhttps://polymarket.com/event/{slug}"
      },
      {
        "title": "Read market prices",
        "body": "Each event has a markets array. Each market contains:\n\nquestion: The specific question\noutcomes: JSON string like [\"Yes\", \"No\"]\noutcomePrices: JSON string like [\"0.65\", \"0.35\"] (probabilities)"
      },
      {
        "title": "Output Format",
        "body": "Present the results as a clean list:\n\n{title} — {short description or first tag}\n\nOdds: Yes {price}% / No {price}%\nLink: https://polymarket.com/event/{slug}"
      },
      {
        "title": "Filtering Options",
        "body": "You can customize the API query:\n\nBy category: add &tag_id={id} (get tag IDs from https://gamma-api.polymarket.com/tags?limit=100)\nBy volume: &order=volume&ascending=false for most-traded events\nBy sport: use https://gamma-api.polymarket.com/sports to discover leagues, then filter by &series_id={id}\nMore results: change &limit=10 to any number"
      }
    ],
    "body": "Polymarket Latest Events\n\nFetch the latest events from the Polymarket prediction market platform.\n\nWhen to Use\n\nUse this skill when the user:\n\nAsks about the latest events or markets on Polymarket\nWants to see trending prediction markets\nMentions Polymarket, prediction market, or betting odds\nAsks \"what's new on Polymarket\" or similar queries\nHow to Fetch\n\nUse web_fetch (or curl via Bash) to call the Polymarket Gamma API. No API key or authentication is required.\n\nGet the 10 latest events\n\ncurl -s \"https://gamma-api.polymarket.com/events?active=true&closed=false&limit=10&order=createdAt&ascending=false\"\n\nOr with web_fetch:\n\nweb_fetch url=\"https://gamma-api.polymarket.com/events?active=true&closed=false&limit=10&order=createdAt&ascending=false\"\n\nResponse format\n\nThe API returns a JSON array. Each event object contains:\n\nField\tDescription\ntitle\tEvent title / question\nslug\tURL slug for the event\ndescription\tDetailed description\nstartDate\tEvent start date\ncreatedAt\tWhen the event was created\nvolume\tTotal trading volume\nliquidity\tAvailable liquidity\nmarkets\tArray of sub-markets with outcomes and prices\ntags\tCategory tags\nBuild event links\n\nThe Polymarket URL for each event is:\n\nhttps://polymarket.com/event/{slug}\n\nRead market prices\n\nEach event has a markets array. Each market contains:\n\nquestion: The specific question\noutcomes: JSON string like [\"Yes\", \"No\"]\noutcomePrices: JSON string like [\"0.65\", \"0.35\"] (probabilities)\nOutput Format\n\nPresent the results as a clean list:\n\n{title} — {short description or first tag}\nOdds: Yes {price}% / No {price}%\nLink: https://polymarket.com/event/{slug}\nFiltering Options\n\nYou can customize the API query:\n\nBy category: add &tag_id={id} (get tag IDs from https://gamma-api.polymarket.com/tags?limit=100)\nBy volume: &order=volume&ascending=false for most-traded events\nBy sport: use https://gamma-api.polymarket.com/sports to discover leagues, then filter by &series_id={id}\nMore results: change &limit=10 to any number"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/yaplora/polymarket-latest-events",
    "publisherUrl": "https://clawhub.ai/yaplora/polymarket-latest-events",
    "owner": "yaplora",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/polymarket-latest-events",
    "downloadUrl": "https://openagent3.xyz/downloads/polymarket-latest-events",
    "agentUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent",
    "manifestUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent.md"
  }
}