Polymarket Music Entertainment Trader

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a real-money Polymarket trading bot with disclosed live mode, but some documented safety limits do not match the actual code/config defaults.

Treat this as a high-risk financial automation skill. It appears designed to default to paper trading, but before using live mode, verify the real defaults in code/config, set your own caps, use a limited-balance account, and do not rely only on the SKILL.md risk table.

Findings (5)

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 in live mode, the bot may trade markets closer to resolution than the user expects from the documentation.

Why it was flagged

The actual code defaults the minimum days-to-resolution safeguard to 0, while SKILL.md presents 'Min days to resolution' as 7. In a live financial trading bot, weaker actual safeguards than documented can mislead users about risk.

Skill content
MIN_DAYS       = int(os.environ.get(  "SIMMER_MIN_DAYS",      "0"))
Recommendation

Before live trading, explicitly set SIMMER_MIN_DAYS and other risk tunables, and require the skill maintainer to align the documentation, clawhub.json, and code defaults.

What this means

A live run can place real prediction-market trades and spend USDC according to the bot's strategy.

Why it was flagged

The skill can perform real-money trading when live mode is explicitly enabled. This is aligned with the stated trading purpose, but it is high-impact authority.

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

Use paper mode first, review all thresholds and position caps, and only enable --live with funds you are prepared to risk.

What this means

Anyone or anything with this key may be able to act through the linked Simmer/Polymarket setup, depending on the account permissions.

Why it was flagged

The skill requires a Simmer API key. That credential is expected for this integration, but it may provide access to trading/account functions.

Skill content
"requires": { "env": [ "SIMMER_API_KEY" ], "pip": [ "simmer-sdk" ] }
Recommendation

Use a dedicated, limited-balance trading account/key if possible and revoke the key if you stop using the skill.

What this means

A future or unexpected package version could change trading behavior or credential handling.

Why it was flagged

The external package dependency is not pinned to a specific version. This is common for integrations but leaves behavior dependent on the package version resolved at install time.

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

Pin and verify the simmer-sdk version before production/live use.

What this means

It should not start trading automatically on install, but enabling a schedule later could make it operate repeatedly.

Why it was flagged

The skill is structured as a managed automaton, but the provided config disables scheduled/autostart execution by default.

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

Keep cron disabled unless you intentionally want recurring runs, and use paper mode for scheduled testing.