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.
npx skills add runesleo/polymarket-toolkit --skill polymarket-profilegit clone --depth 1 https://github.com/runesleo/polymarket-toolkitWrote 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.
[](https://agentmods.dev/skills/runesleo/polymarket-toolkit/polymarket-profile)<a href="https://agentmods.dev/skills/runesleo/polymarket-toolkit/polymarket-profile"><img src="https://agentmods.dev/badge/skills/runesleo/polymarket-toolkit/polymarket-profile/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.
<a href="https://agentmods.dev/skills/runesleo/polymarket-toolkit/polymarket-profile"><img src="https://agentmods.dev/badge/skills/runesleo/polymarket-toolkit/polymarket-profile.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00051 | $0.03917 |
| Opus 5 | $0.00026 | $0.01959 |
| Sonnet 5 | $0.00010 | $0.00783 |
| Haiku 4.5 | $0.00005 | $0.00392 |
Grade A, and why
polymarket-profile scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
allowed-tools: Bash(curl:*) Bash(node:*) Read Write Edit How it starts
The opening of the file, as written. The whole thing — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Polymarket Address Profile
Generate a complete trading profile for any Polymarket address. All data comes from public APIs in real-time — no local database or API key required.
Trigger
User provides a Polymarket identity and wants analysis, profile, or trading overview.
Input Resolution
The skill requires a 0x proxy wallet address. Users may provide:
| Input Type | Example | How to handle |
|---|---|---|
| 0x address | 0x63ce3421... |
Use directly |
| Profile URL | polymarket.com/profile/Theo4 |
Extract username from URL, then resolve via leaderboard lookup (see below) |
| Username | Theo4 |
Resolve via leaderboard lookup (see below) |
When user provides a username or URL (not 0x address)
Step 1: Try leaderboard lookup — Search lb-api.polymarket.com/profit to resolve username → address.
# Paginate through the leaderboard searching for the username
# Start with offset=0, increment by 500 until found or no more results
curl -s "https://lb-api.polymarket.com/profit?window=all&limit=500&offset=0"
Response is an array of objects with name, pseudonym, and proxyWallet fields. Search for a case-insensitive match on name or pseudonym.
- Found → use the
proxyWalletas the 0x address, continue to Step 1 of execution - Not found after 3 pages (1500 users) → the account is likely unranked, fall back to Step 2
Step 2: Manual fallback (only if leaderboard lookup fails)
"This username isn't in the Polymarket leaderboard (only ranked users can be auto-resolved). You can find the 0x address by:
- Open the profile page on Polymarket
- Click the address/wallet icon near the username — it copies the 0x address
- Or check the browser URL — some profile pages show the address"
NOTE: Leaderboard lookup covers all users with a PnL ranking (tens of thousands). Only very new or inactive accounts with zero trading history won't be found.
API Endpoints
All endpoints are public, no authentication needed.
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.
- 9d ago First seen · 337 lines · 51 tokens per session scan A 91f65e33eaf3
polymarket-profile is a skill published in the GitHub repository runesleo/polymarket-toolkit (192 stars, last pushed 19d ago), licensed MIT. It adds 51 tokens to every session and 3,917 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
polymarket
Trade on Polymarket prediction markets (CLOB V2) from a Privy EOA wallet. Search markets, place/cancel orders, manage positions. No private key handling. Use when the user wants to bet on event outcomes (e.g. "buy YES at 0.65 on the ceasefire market", "what are my open positions", "close my Trump bet").
polymarket
Query Polymarket prediction market data — search markets, get prices, orderbooks, and price history. Read-only via public REST APIs, no API key needed.
polymarket
Query Polymarket: markets, prices, orderbooks, history.
polymarket
Query Polymarket: markets, prices, orderbooks, history.
polymarket-copytrading
Mirror positions from top Polymarket traders. Polling mode (free) for portfolio-style copying, Reactor mode (Pro) for event-driven real-time mirroring via Simmer's on-chain signal infrastructure.
polymarket-fast-loop
Trade Polymarket BTC 5-minute and 15-minute fast markets using CEX price momentum signals via Simmer API. Default signal is Binance BTC/USDT klines. Use when user wants to trade sprint/fast markets, automate short-term crypto trading, or use CEX momentum as a Polymarket signal.