Polymarket Kalshi Divergence
Analysis
This is a disclosed trading automaton, but live mode can place real Polymarket trades on a recurring schedule using a Simmer API key.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Runs every 5 minutes via cron (`*/5 * * * *`). Managed automaton (auto-executes on schedule). Dry-run by default. Pass `--live` to execute real trades.
The artifacts clearly disclose scheduled automation and real trade execution in live mode. Because trades can spend funds and the artifacts do not describe per-trade approval or aggregate exposure limits, this is high-impact authority users should review before enabling.
"pip": [
"simmer-sdk",
"requests"
]The skill depends on external Python packages and does not pin versions. This is normal for an API integration, but dependency changes could affect a financial trading automaton.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
_client = SimmerClient(
api_key=os.environ["SIMMER_API_KEY"],
venue=os.environ.get("TRADING_VENUE", "sim")
)The script uses a Simmer API key and a venue selector. This is expected for the stated purpose, but it grants account-level authority that can become real trading authority when the venue/live settings are changed.
