polymarket

polymarket is a skill for Claude Code from ChainGPT-org/chaingpt-claude-skill. It costs 101 tokens per session (823 once invoked), scanned A, original, MIT.

A read-only skill for viewing live Polymarket prediction-market data. These markets let people trade contracts whose prices represent estimated chances of future events.

In plain words
What is it for?
Use it to find markets, inspect outcomes and implied probabilities, view available buy and sell orders, and review recent trades on Polygon.
Why use it?
It provides current market prices, trading activity, and order-book depth without requiring manual browsing of the exchange.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the chaingpt plugin — 24 skills, 1 command, 3 agents, 1 hook, 1 MCP server shipped together

Good fit Use it to find markets, inspect outcomes and implied probabilities, view available buy and sell orders, and review recent trades on Polygon.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chaingpt-org/chaingpt-claude-skill/polymarket
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ChainGPT-org/chaingpt-claude-skill --skill polymarket
Clone the repo
git clone --depth 1 https://github.com/ChainGPT-org/chaingpt-claude-skill

Made for: Claude Code.

Or install chaingpt, the plugin that ships this one along with the rest of its 24 skills, 1 command, 3 agents, 1 hook, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for polymarket

README.md
[![agentmods](https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/polymarket/github.svg)](https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/polymarket)
Your own site
<a href="https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/polymarket"><img src="https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/polymarket/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for polymarket

Your own site · 80×15
<a href="https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/polymarket"><img src="https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/polymarket.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 823 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00101 $0.00823
Opus 5 $0.00051 $0.00411
Sonnet 5 $0.00020 $0.00165
Haiku 4.5 $0.00010 $0.00082

Measured 9d ago against content hash 824a129a2181, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

polymarket scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/polymarket/SKILL.md · 64 lines

How it starts

The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ChainGPT Polymarket Skill

You read live Polymarket prediction-market data on behalf of the user. v1.6 is read-only. Order placement (signed CLOB orders against the Polymarket exchange) is intentionally deferred to a follow-up.

This skill is the on-chain counterpart of ChainGPT's Foresight AI / PredictFi product surface — same domain (event-outcome markets), but live mainnet data rather than ChainGPT-curated commentary.

What this skill can do today

Tool Purpose
chaingpt_pm_markets Discover markets sorted by 24h volume, with full-text search
chaingpt_pm_market Detail on one market by slug or condition id — outcomes, prices, token ids, volume
chaingpt_pm_orderbook L2 orderbook for one outcome token
chaingpt_pm_trades Recent fills on one outcome token

Workflow: "what is the market saying about X?"

chaingpt_pm_markets search="<topic>" limit=5
       │  (pick the most-liquid relevant one)
       ▼
chaingpt_pm_market slug="<from above>"
       │  (read YES + NO token ids and current implied probabilities)
       ▼
chaingpt_pm_orderbook tokenId="<yes-token-id>"
       │  (confirm there's actual depth at the touch — odds without size are vibes)
       ▼
chaingpt_pm_trades tokenId="<yes-token-id>"
       │  (last 20 fills tell you which side is paying up)

Surfacing what matters

When summarizing a market, lead with:

  1. The question itself
  2. Current implied probability (outcomePrices[0] for YES)
  3. 24h volume (is anyone actually trading this?)
  4. Days to resolution
  5. Top-of-book spread + depth (is the price tradeable in size?)

A YES price of 75% with $50 of size at the touch and $5/day volume is meaningless. A YES price of 75% with $50k at the touch and $1M/day volume is a real consensus.

What this skill does NOT do (yet)

  • Place orders — coming in a follow-up. Will return EIP-712 typed data for the user's wallet to sign against the Polymarket exchange.
  • Cancel orders — same constraint.
  • Resolve a held position (redeem after market closes) — same constraint.
  • Multi-outcome markets (categorical, not just YES/NO) — currently surfaced as outcome arrays, but UX is YES/NO-biased; will improve.

Read the full file on GitHub · 64 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 64 lines · 101 tokens per session scan A 824a129a2181

Subscribe to this mod's changes

polymarket is a skill published in the GitHub repository ChainGPT-org/chaingpt-claude-skill (16 stars, last pushed 10d ago), licensed MIT. It adds 101 tokens to every session and 823 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

perp-cli

Multi-DEX perpetual futures trading via the perp-cli command-line tool. Use when user asks to: trade perps, check funding rates, scan/execute arbitrage (perp-perp or spot-perp), run delta-neutral strategies, bridge USDC across chains, manage positions/orders/leverage, deposit/withdraw, hedge spot+perp, trade HIP-3…

hypurrquant/perp-cli · 152 tokens

propfund

Trade on PropFund, the decentralized on-chain prop firm for AI agents. Use this skill to get funded with the liquidity pool's capital and trade without risking your own bankroll — pass a transparent evaluation, then place leveraged long/short trades with mandatory stop-loss/take-profit and on-chain risk limits, and…

NO7r34L/PropFund.eth · 0 tokens

suwappu

Build with the Suwappu REST API: cross-chain quotes, simulation, self-custody or managed swaps, managed-wallet portfolio/prices, Polymarket research and orders, Hyperliquid market research, and Morpho lending-market research.

0xSoftBoi/suwappubot · 55 tokens

suwappu-dex

Use Suwappu's hosted MCP server for cross-chain quotes, swap simulation and unsigned transaction preparation, managed-wallet portfolio reads, prices, prediction-market research, Hyperliquid research, and Morpho market data.

0xSoftBoi/suwappubot · 50 tokens

ethereum-defi

Ethereum DeFi skill — query balances, get Chainlink prices, estimate gas, resolve ENS names, call smart contracts, ABI-encode functions, interact with ERC-8004 agent registry, query EAS attestations.

tenzro/tenzro-network · 48 tokens

defi-protocols

DeFi protocol authority — flashloans, AMM design, lending markets, concentrated liquidity, MEV, triangular and cross-DEX arbitrage, stablecoin depeg dynamics, and on-chain capital routing across Uniswap V3, Aerodrome, Balancer, Curve, and Aave V3 on Ethereum, Base, Arbitrum, Optimism, and Polygon.

LuuOW/meridian-mcp · 81 tokens