Scan Report
5 /100
polymarket-macro-asymmetric-longshot-trader
Systematically finds Polymarket longshot markets (2-10% probability) with cross-category macro support scoring, then places conviction-sized trades through the Simmer SDK.
A legitimate Polymarket asymmetric longshot trading skill that uses the simmer-sdk to scan markets and place paper/live trades. No malicious behavior, credential harvesting, obfuscation, or undeclared functionality found.
Safe to install
This skill is safe to use. Ensure SIMMER_API_KEY is stored securely and never share the key. Use paper mode (default) until live trading is fully understood.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | pip dependency not explicitly documented in SKILL.md Doc Mismatch | clawhub.json:4 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | READ | ✓ Aligned | trader.py reads SKILL.md and its own module -- benign |
| Network | NONE | READ | ✓ Aligned | trader.py calls client.get_markets() and client.trade() via simmer-sdk API -- le… |
| Shell | NONE | NONE | — | No subprocess, os.system, or shell execution calls found |
| Environment | READ | READ | ✓ Aligned | Only reads SIMMER_* prefixed tunables; no credential theft iteration |
File Tree
3 files · 29.3 KB · 748 lines Python 1f · 495L
Markdown 1f · 150L
JSON 1f · 103L
├─
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; SDK from Simmer Markets (SpartanLabsXyz) -- declared in clawhub.json |
Security Positives
✓ No shell execution (subprocess, os.system) found -- trade logic entirely within Python
✓ No credential theft -- only reads SIMMER_API_KEY from environment, no iteration through os.environ
✓ No data exfiltration -- all network calls are through the official simmer-sdk to polymarket API
✓ No obfuscation -- all code is plain Python with readable logic
✓ Paper mode by default (venue='sim') -- no real trades without --live flag
✓ autostart=false and cron=null -- no automatic execution without user consent
✓ No sensitive file access -- no reads of ~/.ssh, ~/.aws, .env, or similar paths
✓ Safe print function with Unicode fallback -- no code injection risk
✓ Flip-flop and slippage safeguards built into context checking
✓ Position size capping and conviction-based sizing reduce financial risk