Polymarket Nothing Ever Happens

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a disclosed real-money trading bot, but its defaults and packaging do not fully match its user-facing description, and it relies on an unprovided helper module before making trades.

Review and fix the packaging and defaults before installing. If you still use it, run only scan/dry-run first, explicitly set the price cap and budget, use a dedicated low-balance wallet, and do not enable live trading until the missing gamma_api dependency is reviewed.

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 skill can place real prediction-market trades and lose money within its configured limits.

Why it was flagged

The skill explicitly supports live trade execution through Simmer/Polymarket. This matches the stated purpose, but it is high-impact because it can spend real USDC.

Skill content
# Execute real trades
python nothing_ever_happens.py --live
Recommendation

Run scan/dry-run first, set conservative caps explicitly, and require manual confirmation before live trading.

What this means

A mishandled wallet private key could put the user's trading wallet funds at risk.

Why it was flagged

The requested API key and wallet private key are expected for live trading, but they grant sensitive account and signing authority.

Skill content
Ask for Simmer API key ... Store in environment as `SIMMER_API_KEY` ... Ask for wallet private key ... Store in environment as `WALLET_PRIVATE_KEY`
Recommendation

Use a dedicated wallet with limited funds, avoid reusing a main wallet key, and verify where credentials are stored before live use.

What this means

Live trading decisions may depend on unreviewed local code, or the skill may fail unexpectedly if that helper is absent.

Why it was flagged

The script imports a gamma_api helper from outside this skill if the normal import fails, but gamma_api.py is not included in the manifest or declared in the install spec.

Skill content
sys.path.insert(0, str(script_dir.parent / "polymarket-ai-divergence")) ... from gamma_api import GammaClient
Recommendation

Do not run live until the gamma_api dependency is packaged, pinned, and reviewed as part of this skill.

What this means

A user relying on the documentation may unintentionally allow trades at twice the advertised default price cap.

Why it was flagged

The source defaults to buying NO up to 10¢, while SKILL.md describes the default strategy as buying at 5¢ or less. For a trading skill, that mismatch materially changes risk.

Skill content
"default": 0.10, "help": "Max NO ask price to buy (e.g. 0.10 = buy NO at ≤10¢)"
Recommendation

Set `SIMMER_NEH_PRICE_CAP` explicitly before live trading, and the maintainer should align SKILL.md, clawhub.json, and code defaults.

What this means

Users may overestimate the production readiness or review status of a skill that can spend real funds.

Why it was flagged

The package metadata says this live-trading strategy was intended as entertainment/reference material and not for ClawHub, which conflicts with it being presented as a published installable skill.

Skill content
"publish": false, "publish_reason": "Entertainment-only strategy (sterlingcrispin). Kept as SDK reference/example, not for ClawHub."
Recommendation

Treat this as an experimental/reference bot unless the publisher updates the package metadata and provides clear production-use guidance.