Polymarket 1.0.0
v1.0.0Query Polymarket prediction markets - check odds, trending markets, search events, track prices.
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
The name/description say 'query Polymarket' and the included script only calls the public Gamma API (gamma-api.polymarket.com) to list/search/format markets. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md instructs running the included Python script with specific subcommands. The script's runtime behavior is limited to HTTP GET requests to Polymarket's public API, JSON parsing, and formatting output. It does not read local files, environment secrets, or send data to unexpected endpoints.
Install Mechanism
There is no install spec (instruction-only at install time) and the script is bundled in the skill. This is low-risk; the script notes a dependency on the 'requests' Python package but does not automatically download or execute external code from arbitrary URLs.
Credentials
The skill declares no required environment variables or credentials and the code does not access environment variables. It only needs network access to Polymarket's public API, which is proportionate to its purpose.
Persistence & Privilege
The package does not request permanent presence (always is false), does not modify other skills or system-wide settings, and does not store credentials. Autonomous invocation is allowed by default but the skill's capabilities are limited and read-only.
Assessment
This skill appears to do exactly what it says: it runs a bundled Python script that queries Polymarket's public Gamma API and prints formatted results. It requires network access and the Python 'requests' library but no secrets or cloud credentials. Before installing: (1) ensure you trust the skill source (the registry owner/slug) because it will execute bundled Python code; (2) confirm the runtime environment has Python and the 'requests' package, or install that package in an isolated environment; (3) if you have strict network policies, note the skill will make outbound HTTPS requests to gamma-api.polymarket.com; (4) if you expect trading/wallet functionality, this skill is read-only and does not handle authentication or keys. If any of these are concerns, run the script manually in a sandboxed environment or review/modify the code before enabling autonomous invocation.Like a lobster shell, security has layers — review code before you run it.
Runtime requirements
📊 Clawdis
latest
Polymarket
Query Polymarket prediction markets. Check odds, find trending markets, search events.
Commands
# Trending/active markets
python3 {baseDir}/scripts/polymarket.py trending
# Search markets
python3 {baseDir}/scripts/polymarket.py search "trump"
python3 {baseDir}/scripts/polymarket.py search "bitcoin"
# Get specific market by slug
python3 {baseDir}/scripts/polymarket.py event "fed-decision-in-october"
# Get markets by category
python3 {baseDir}/scripts/polymarket.py category politics
python3 {baseDir}/scripts/polymarket.py category crypto
python3 {baseDir}/scripts/polymarket.py category sports
Example Chat Usage
- "What are the odds Trump wins 2028?"
- "Trending on Polymarket?"
- "Search Polymarket for Bitcoin"
- "What's the spread on the Fed rate decision?"
- "Any interesting crypto markets?"
Output
Markets show:
- Question/title
- Current odds (Yes/No prices)
- Volume
- End date
API
Uses the public Gamma API (no auth required for reading):
- Base URL:
https://gamma-api.polymarket.com - Docs: https://docs.polymarket.com
Note
This is read-only. Trading requires wallet authentication (not implemented).
Comments
Loading comments...
