Scans Polymarket prediction markets for trading edges using their public APIs. The four scripts cover the basics: finding arbitrage (when YES + NO prices don't sum to $1), analyzing order book depth to see if an edge is actually tradable, detecting volume and price momentum, and tracking correlated exposure across your positions. No authentication needed since it's all read-only analysis. The fee awareness is solid, especially the note about dynamic fees on crypto short-term markets. Honest about limitations and includes a reference doc on strategies that still work. If you're actively trading prediction markets or just curious about market inefficiencies, this gives you the scanning infrastructure without having to write it yourself.
npx -y skills add mjunaidca/polymarket-skills --skill polymarket-analyzer --agent claude-codeInstalls into .claude/skills of the current project.
Detect trading edges and opportunities across Polymarket prediction markets using real-time data from the Gamma and CLOB APIs. Zero authentication required -- all analysis is read-only.
scripts/find_edges.py)Scans all active markets for pricing inefficiencies:
python scripts/find_edges.py
python scripts/find_edges.py --min-edge 0.02 --limit 500
scripts/analyze_orderbook.py)Deep analysis of a single market's order book:
python scripts/analyze_orderbook.py --token-id <TOKEN_ID>
python scripts/analyze_orderbook.py --token-id <TOKEN_ID> --depth 10
scripts/momentum_scanner.py)Detect markets with unusual activity:
python scripts/momentum_scanner.py
python scripts/momentum_scanner.py --min-volume 10000 --limit 300
scripts/correlation_tracker.py)Detect hidden correlated exposure in your portfolio:
python scripts/correlation_tracker.py
python scripts/correlation_tracker.py --json
python scripts/correlation_tracker.py --threshold 0.10
find_edges.py to scan for arbitrage across all active marketsanalyze_orderbook.py to check if the edge is executablemomentum_scanner.py to find markets with directional momentumMost Polymarket markets are fee-free. Crypto 5-min/15-min markets have dynamic taker
fees: fee = baseRate * min(price, 1 - price) * size. See references/fee-model.md
for the full fee calculator and breakeven analysis.
See references/viable-strategies.md for the four strategies that still work in 2026
with win rates, expected returns, and risk profiles.
juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills