Scan Report
5 /100
polymarket-food-agriculture-trader
Trades Polymarket prediction markets on food commodity prices, crop yields, drought-driven supply shocks, alternative protein milestones, and agricultural policy events
This is a legitimate Polymarket trading skill for food/agriculture prediction markets. It operates via the simmer-sdk, defaults to paper trading, has no shell/network/file operations, and has no documented-vs-inferred capability violations.
Safe to install
No action needed. The skill is safe to install. Ensure SIMMER_API_KEY is stored securely and version-pin simmer-sdk in a requirements.txt if you adopt it.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | simmer-sdk dependency not explicitly version-pinned Supply Chain | clawhub.json:11 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | NONE | — | No file read/write operations in trader.py |
| Network | READ | READ | ✓ Aligned | Market discovery and trade execution go through SimmerClient SDK only (trader.py… |
| Shell | NONE | NONE | — | No subprocess, os.system, or shell invocation in trader.py |
| Environment | READ | READ | ✓ Aligned | Reads only SIMMER_API_KEY and SIMMER_* tunables — all declared in SKILL.md and c… |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database access |
File Tree
3 files · 21.9 KB · 510 lines Python 1f · 323L
Markdown 1f · 119L
JSON 1f · 68L
├─
clawhub.json
JSON
├─
SKILL.md
Markdown
└─
trader.py
Python
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
simmer-sdk | unpinned | PyPI | No | Version not specified in clawhub.json |
Security Positives
✓ No shell execution, subprocess, or os.system calls — all I/O goes through the SimmerClient SDK
✓ No direct network requests — market discovery and trading are SDK-abstracted
✓ Paper trading by default (venue='sim') — zero financial risk unless --live flag is passed
✓ autostart: false and cron: null — nothing runs automatically
✓ SIMMER_API_KEY is the only credential, used only for Polymarket API auth via SDK
✓ Flip-flop and slippage safeguards implemented (context_ok function)
✓ No sensitive file access (~/.ssh, ~/.aws, .env, etc.)
✓ No obfuscation (no base64, no eval, no atob patterns)
✓ Code is readable and straightforward — no hidden functionality
✓ SKILL.md and clawhub.json match the actual implementation behavior