可信 — 风险评分 5/100
上次扫描:1 天前 重新扫描
5 /100
polymarket-24h-geopolitics-cluster-trader
Trades logical inconsistencies in geopolitical event clusters on Polymarket using the simmer-sdk. Detects monotonicity, correlation, and prerequisite-chain violations in strike-count, daily-military-action, and bilateral markets.
A straightforward Polymarket cluster arbitrage trading script using the simmer-sdk. No shell execution, no sensitive file access, no obfuscation, and no undeclared network calls. All behavior is fully documented in SKILL.md.
技能名称polymarket-24h-geopolitics-cluster-trader
分析耗时34.5s
引擎pi
可以安装
Approve for use. The skill is safe: paper trading is the default, the external dependency (simmer-sdk) is declared, and the only credential accessed is SIMMER_API_KEY used exclusively for Polymarket trading via the SDK.
资源类型声明权限推断权限状态证据
环境变量 NONE READ ✓ 一致 trader.py:34-42,60 — reads SIMMER_* tunables and SIMMER_API_KEY, all declared in…
命令执行 NONE NONE trader.py — no subprocess, no shell commands, no curl/wget
文件系统 NONE NONE trader.py — no file reads or writes beyond the script itself
网络访问 NONE READ ✓ 一致 trader.py:19 — uses simmer-sdk (declared in SKILL.md & clawhub.json) which wraps…

目录结构

3 文件 · 31.7 KB · 800 行
Python 1f · 594L Markdown 1f · 119L JSON 1f · 87L
├─ 📋 clawhub.json JSON 87L · 1.9 KB
├─ 📝 SKILL.md Markdown 119L · 6.2 KB
└─ 🐍 trader.py Python 594L · 23.6 KB

依赖分析 1 项

包名版本来源已知漏洞备注
simmer-sdk unpinned pip Dependency declared in SKILL.md and clawhub.json but version not pinned in requirements; this is a known-trading-platform SDK with no known vulnerabilities

安全亮点

✓ Paper trading (venue="sim") is the hard default; --live flag required for real trades
✓ No shell execution, subprocess, or system command invocation
✓ No sensitive file or path access (~/.ssh, ~/.aws, .env, etc.)
✓ os.environ reads are limited to SIMMER_* prefixed variables and SIMMER_API_KEY — no environment variable iteration
✓ No obfuscation: no base64, eval, exec, or encoded payloads
✓ All behavior is clearly documented in SKILL.md with safety tables and parameter declarations
✓ Safeguards implemented: flip-flop detection, slippage checks, spread/days gates, position limits
✓ External dependency (simmer-sdk) declared in both SKILL.md and clawhub.json