Scan Report
5 /100
polymarket-resolution-lattice-trader
Trades Polymarket markets by detecting logical inconsistencies between related contracts such as earlier-vs-later deadlines and prerequisite-vs-downstream event chains.
This is a legitimate Polymarket trading strategy that detects cross-market logical inconsistencies. It has safe defaults (paper trading), no shell execution, no obfuscation, and all credential access is declared and necessary for trading.
Safe to install
Approve for use. The skill is well-structured with clear safety mechanisms. Consider pinning the simmer-sdk version for reproducible builds.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | Unpinned dependency version Supply Chain | clawhub.json:10 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | NONE | — | No file operations in code |
| Network | READ | READ | ✓ Aligned | Uses SimmerClient SDK for API calls (trader.py:31) |
| Shell | NONE | NONE | — | No subprocess or shell execution detected |
| Environment | READ | READ | ✓ Aligned | Only reads declared SIMMER_* env vars (trader.py:58-65) |
| Skill Invoke | NONE | NONE | — | No skill invocation detected |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database access |
File Tree
3 files · 21.3 KB · 628 lines Python 1f · 403L
Markdown 1f · 126L
JSON 1f · 99L
├─
clawhub.json
JSON
├─
SKILL.md
Markdown
└─
trader.py
Python
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
simmer-sdk | * | pip | No | Version not pinned - recommend pinning to specific version |
Security Positives
✓ Safe defaults: paper trading (sim) mode enabled by default with explicit --live flag required for real trades
✓ No shell execution or subprocess usage
✓ No obfuscation techniques (no base64, eval, or dynamic code execution)
✓ No sensitive path access (~/.ssh, ~/.aws, .env files)
✓ No credential exfiltration - only reads SIMMER_API_KEY for trading authentication
✓ All environment variable access is declared in SKILL.md
✓ Clear documentation with safety table explaining financial risk per execution mode
✓ No hidden functionality - code matches documented behavior
✓ Implements appropriate safeguards (flip-flop detection, slippage checks, position limits)
✓ Autostart disabled, cron null - no automatic execution without user configuration