Polymarket Emerging Tech Trader
ReviewAudited by ClawScan on May 10, 2026.
Overview
This is a disclosed Polymarket trading skill that defaults to paper trading, but it needs a Simmer API key and can place live trades if explicitly run in live mode.
Install only if you understand that this is an automated trading tool. Start in paper mode, verify the Simmer API key permissions, check whether any schedule is actually enabled, and review the risk limits before ever using `--live`.
Findings (4)
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.
If run with live trading enabled, the agent may spend funds and open prediction-market positions according to its automated rules.
The skill can submit trades through the Simmer client. This matches the stated purpose and defaults to simulation, but live mode would authorize real market actions.
venue = "polymarket" if live else "sim" ... r = client.trade(... market_id=m.id, side=side, amount=size, ...)
Keep the default paper mode until you intentionally enable live trading, and review the max position, max open positions, spread, and minimum-days settings.
Anyone or anything with the configured API key may be able to act through the connected Simmer/Polymarket account depending on the key's permissions.
The skill uses a Simmer API key to access the trading provider. This is expected for the integration, but it is a sensitive credential tied to account authority.
SimmerClient(
api_key=os.environ["SIMMER_API_KEY"],
venue=venue,
)Use the least-privileged API key available, store it securely, monitor account activity, and revoke or rotate it if you stop using the skill.
Future installs could receive a different version of the SDK than the one originally tested.
The skill depends on an unpinned package. The dependency is purpose-aligned, but unpinned packages can change over time.
"pip": [
"simmer-sdk"
]Install from trusted sources and prefer a pinned or reviewed SDK version when using this with live trading funds.
A user may be unsure whether the trader will run periodically or only when invoked.
The documentation describes recurring automated operation, while the provided manifest shows no enabled cron/autostart. This looks like a documentation/configuration inconsistency rather than hidden persistence.
Runs every 15 minutes (`*/15 * * * *`).
Before enabling live mode, confirm whether the skill is scheduled, how often it runs, and whether it remains in paper mode for unattended runs.
