polymarket-combo-builder

polymarket-combo-builder is a skill for Claude Code, Codex from SpartanLabsXyz/simmer-sdk. It costs 113 tokens per session (1,349 once invoked), scanned A, original, MIT.

A Polymarket tool that combines two or more yes-or-no markets into one parlay, meaning every selected outcome must be correct for the bet to pay out.

In plain words
What is it for?
Use it to preview combined odds or place an atomic Polymarket combo with a self-custody or deposit wallet. It runs in dry-run mode by default.
Why use it?
It creates and submits the combined order as one signed transaction instead of requiring separate orders for each market leg.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to preview combined odds or place an atomic Polymarket combo with a self-custody or deposit wallet. It runs in dry-run mode by default.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/spartanlabsxyz/simmer-sdk/polymarket-combo-builder
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 SpartanLabsXyz/simmer-sdk --skill polymarket-combo-builder
Clone the repo
git clone --depth 1 https://github.com/SpartanLabsXyz/simmer-sdk

Made for: Claude Code, Codex.

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-combo-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/spartanlabsxyz/simmer-sdk/polymarket-combo-builder/github.svg)](https://agentmods.dev/skills/spartanlabsxyz/simmer-sdk/polymarket-combo-builder)
Your own site
<a href="https://agentmods.dev/skills/spartanlabsxyz/simmer-sdk/polymarket-combo-builder"><img src="https://agentmods.dev/badge/skills/spartanlabsxyz/simmer-sdk/polymarket-combo-builder/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-combo-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/spartanlabsxyz/simmer-sdk/polymarket-combo-builder"><img src="https://agentmods.dev/badge/skills/spartanlabsxyz/simmer-sdk/polymarket-combo-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,349 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.00113 $0.01349
Opus 5 $0.00056 $0.00674
Sonnet 5 $0.00023 $0.00270
Haiku 4.5 $0.00011 $0.00135

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

Security

Grade A, and why

polymarket-combo-builder 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 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (combo_builder.py, tests/test_combo_builder.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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-combo-builder/SKILL.md · 119 lines

How it starts

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

Combo Builder

Place a real Polymarket combo (parlay): bundle 2+ binary legs into one YES/NO position, settled by a single signed RFQ order on Polymarket's combo exchange. Polymarket quotes the combined odds live; you sign once; if every leg hits you win the combined payout, and if any single leg loses you lose the whole stake.

This is the atomic combo — distinct from the leg-by-leg polymarket-worldcup-parlay-roller. Live placement works with EOA / self-custody wallets, and with deposit wallets after a one-time activate_combo_dw() setup (details below).

Read DISCLAIMER.md before going live. This is a framework, not an edge, and it runs in dry-run by default. Dry-run is a local plan — it resolves legs and shows the combined-odds estimate but signs and sends nothing. There is no paper / simulated-fill mode for combos (they're Polymarket-only). Note: dry-run still reads your wallet key to resolve trading identity, but it never signs or sends.

Polymarket venue only. Combos are a BETA Polymarket product (sports markets today); label them as such to users.

How payout works

A combo's combined price is the makers' quoted probability that all legs hit. Example: three legs near 0.50 each quote around a 0.12–0.15 combined price, i.e. a ~7–8x payout multiple on the stake. The quote you sign already bakes in maker spread — it is not a naive product of the leg prices (the skill shows that product only as a pre-quote preview).

Setup

Agent: do this once with the user.

  1. Get the thesis in natural language, e.g. "Brazil to win AND over 2.5 goals AND Argentina to win."
  2. Resolve each pick to a combo leg. Combo-eligible legs come from the combo-markets feed — simmer_sdk.combo.fetch_combo_legs(). Each leg exposes position_ids = [YES_token, NO_token]; store the chosen side's token id. Moneyline, spread (-spread-), and total/over-under (-total-) legs are all eligible.
  3. Confirm with the user, restating each leg's exact resolution condition and the total-loss-if-any-leg-loses risk.
  4. Write combo_config.json from combo_config.example.json (>= 2 legs).
  5. Dry-run first, review the plan, then go live.

Read the full file on GitHub · 119 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 119 lines · 113 tokens per session scan A a1db683bc306

Subscribe to this mod's changes

polymarket-combo-builder is a skill published in the GitHub repository SpartanLabsXyz/simmer-sdk (48 stars, last pushed yesterday), licensed MIT. It adds 113 tokens to every session and 1,349 once invoked, about $0.0006 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.