Polymarket Sports Live

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 live mode is enabled, the skill could place repeated real-money market trades based on its model without asking you before each order.

Why it was flagged

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.

Skill content
Runs every 2 minutes via cron (`*/2 * * * *`). Managed automaton (auto-executes on schedule)... If `--live`: calls `SimmerClient.trade()`
Recommendation

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.

What this means

Your API key may allow the skill to access trading functions, especially if configured for the real Polymarket venue.

Why it was flagged

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.

Skill content
SimmerClient(
            api_key=os.environ["SIMMER_API_KEY"],
            venue=os.environ.get("TRADING_VENUE", "sim")
        )
Recommendation

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.

What this means

Once installed as an automaton, it may keep running every two minutes until disabled.

Why it was flagged

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.

Skill content
"cron": "*/2 * * * *",
  "automaton": {
    "managed": true,
    "entrypoint": "sports_live.py"
  }
Recommendation

Confirm how to pause or remove the automaton before enabling it, and monitor logs/trading activity after installation.

What this means

Future or environment-specific package versions could affect how the skill behaves.

Why it was flagged

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.

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

Install in an isolated environment and pin/review dependency versions before using live trading.