Polymarket Sports Live
ReviewAudited by ClawScan on May 10, 2026.
Overview
This is transparently a sports-trading bot, but live mode can let a scheduled automaton place real Polymarket trades using your API key without per-trade confirmation.
Treat this as an unattended financial trading bot. Keep it in dry-run or simulated mode until you understand the strategy, set conservative trade sizes, verify which venue it will use, and monitor or disable the cron automaton if you do not want continuous activity.
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 live mode is enabled, the skill could place repeated real-money market trades based on its model without asking you before each order.
The skill explicitly supports scheduled automatic execution and real trade placement in live mode. Financial trades are high-impact, and the provided artifacts do not show per-trade approval or an overall exposure/loss cap.
Runs every 2 minutes via cron (`*/2 * * * *`). Managed automaton (auto-executes on schedule)... If `--live`: calls `SimmerClient.trade()`
Use dry-run or simulated venue first, set a very small trade size, and only enable live mode if you are comfortable with unattended trading risk.
Your API key may allow the skill to access trading functions, especially if configured for the real Polymarket venue.
The code uses a Simmer API key and venue selection to access the trading service. This is expected for the stated purpose, but it gives the skill delegated account authority.
SimmerClient(
api_key=os.environ["SIMMER_API_KEY"],
venue=os.environ.get("TRADING_VENUE", "sim")
)Use a scoped or limited API key if available, keep the default simulated venue until tested, and revoke the key if you stop using the skill.
Once installed as an automaton, it may keep running every two minutes until disabled.
The skill is designed to persist as a managed scheduled automaton. This is disclosed and aligned with live-score monitoring, but users should recognize it runs repeatedly in the background.
"cron": "*/2 * * * *",
"automaton": {
"managed": true,
"entrypoint": "sports_live.py"
}Confirm how to pause or remove the automaton before enabling it, and monitor logs/trading activity after installation.
Future or environment-specific package versions could affect how the skill behaves.
The skill depends on external Python packages without pinned versions in the provided artifact. This is normal for many integrations but leaves dependency behavior dependent on what gets installed.
"pip": [
"simmer-sdk",
"requests"
]Install in an isolated environment and pin/review dependency versions before using live trading.
