Kalshi Fed Temporal Mono Trader

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

What this means

If run with --live, the agent can spend real USDC according to the configured strategy and limits.

Why it was flagged

The skill can place real-money trades when live mode is explicitly selected.

Skill content
`python trader.py --live` | Live (Kalshi via DFlow) | Real USDC
Recommendation

Run dry-runs first, review the markets and parameters, and only use --live with funds you are prepared to risk.

What this means

A compromised API key or private key could lead to unauthorized trades or wallet loss outside this skill's intended behavior.

Why it was flagged

The skill declares credentials that can authorize trading and access wallet funds.

Skill content
`SIMMER_API_KEY` | Yes | Trading authority. Treat as a high-value credential. ... `SOLANA_PRIVATE_KEY` | Yes | Base58-encoded Solana private key for live trading.
Recommendation

Use a dedicated low-balance wallet and restricted API key if possible; never reuse a primary wallet private key.

What this means

The external SDK may handle trading requests and credentials, so its integrity matters for safe live use.

Why it was flagged

The skill relies on an external Python package for its trading integration.

Skill content
"pip": [ "simmer-sdk" ]
Recommendation

Review the SDK source and package provenance before providing live credentials, and consider pinning a reviewed version.

What this means

Users may underestimate practical trading risk if they rely on the marketing language alone.

Why it was flagged

The strategy description uses strong certainty language even though live trading still has execution, liquidity, slippage, and market risks.

Skill content
**Mathematical certainty** ... **No model risk** ... violations are temporary mispricings that must converge
Recommendation

Treat the strategy as risky financial automation despite the stated invariant, and validate assumptions with small dry-runs.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If the user later enables automation, the trading logic may run repeatedly without manual invocation.

Why it was flagged

The skill is prepared for managed automation, but the artifacts show it is not scheduled or autostarted by default.

Skill content
"cron": null, "autostart": false, "automaton": { "managed": true, "entrypoint": "trader.py" }
Recommendation

Keep automation disabled until dry-run behavior is verified; if enabling it, confirm it remains in dry-run unless live trading is intended.