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.
If run in live mode, the bot may trade markets closer to resolution than the user expects from the documentation.
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.
MIN_DAYS = int(os.environ.get( "SIMMER_MIN_DAYS", "0"))
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.
A live run can place real prediction-market trades and spend USDC according to the bot's strategy.
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.
`python trader.py --live` | Live (polymarket) | Real USDC
Use paper mode first, review all thresholds and position caps, and only enable --live with funds you are prepared to risk.
Anyone or anything with this key may be able to act through the linked Simmer/Polymarket setup, depending on the account permissions.
The skill requires a Simmer API key. That credential is expected for this integration, but it may provide access to trading/account functions.
"requires": { "env": [ "SIMMER_API_KEY" ], "pip": [ "simmer-sdk" ] }Use a dedicated, limited-balance trading account/key if possible and revoke the key if you stop using the skill.
A future or unexpected package version could change trading behavior or credential handling.
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.
"pip": [ "simmer-sdk" ]
Pin and verify the simmer-sdk version before production/live use.
It should not start trading automatically on install, but enabling a schedule later could make it operate repeatedly.
The skill is structured as a managed automaton, but the provided config disables scheduled/autostart execution by default.
"cron": null, "autostart": false, "automaton": { "managed": true, "entrypoint": "trader.py" }Keep cron disabled unless you intentionally want recurring runs, and use paper mode for scheduled testing.
