Polymarket Oracle

SuspiciousAudited by ClawScan on May 10, 2026.

Overview

This skill is a real-money Polymarket trading bot that can run continuously and store powerful financial credentials, so it needs careful review before use.

Install only if you intentionally want an automated real-money trading bot. Start in simulation mode, inspect the full code, use a separate low-balance wallet, do not store your wallet private key in shell/systemd files, set strict capital limits, and disable the systemd service when not actively monitoring it.

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

A bad signal, bug, or misconfiguration could place real Polymarket orders and lose funds without the user approving each trade.

Why it was flagged

The documentation confirms that once API credentials are set, the skill can mutate a real financial account by placing trades; the artifacts do not clearly show a per-trade approval gate.

Skill content
Live mode: - ✅ Can place real orders - ✅ Executes trades - ⚠️ Uses real money!
Recommendation

Run in simulation first, inspect the trading logic, set strict capital limits, and require explicit human confirmation before any live order placement.

What this means

A wallet private key can control all funds in the wallet; storing it persistently greatly increases the impact of any local compromise or accidental disclosure.

Why it was flagged

The setup guide instructs users to persist a wallet private key in shell startup configuration, despite other parts of the same guide saying the private key is only needed once and should not be stored long-term.

Skill content
cat >> ~/.bashrc << 'EOF' ... export WALLET_PRIVATE_KEY="..."
Recommendation

Do not store WALLET_PRIVATE_KEY in ~/.bashrc, systemd, or project files. Generate API credentials locally once, then remove the private key and use a low-balance dedicated wallet/API key.

ConcernHigh Confidence
ASI10: Rogue Agents
What this means

The bot may continue scanning and trading after logout, reboot, or crash recovery, which can surprise users if they forget it is enabled.

Why it was flagged

The documented systemd setup is disclosed, but it creates a long-running autonomous service for a financial trading bot.

Skill content
Auto-starts when server boots ... Auto-restarts if scanner crashes ... Runs in background (no SSH needed)
Recommendation

Only enable systemd after live-trading safeguards are in place; document how to stop/disable the service and monitor it continuously.

What this means

Users may deploy more capital or enable automation based on overly confident claims, even though prediction-market trades can fail due to liquidity, timing, fees, cancellations, or bugs.

Why it was flagged

The skill makes strong guaranteed-profit and zero-risk claims in a real-money trading context, which can cause users to over-trust automated execution.

Skill content
Risk: ZERO (guaranteed profit) ... Win rate: 100% (if executed)
Recommendation

Treat all performance claims skeptically, use small test amounts, and require clear risk disclosures and live performance evidence before trusting the bot.

What this means

This is a normal Polymarket setup path, but an unexpected or compromised dependency version could expose sensitive wallet material during setup.

Why it was flagged

The user-directed credential-generation step installs an external package without a pinned version and uses it with wallet private-key material.

Skill content
pip install py-clob-client ... key="YOUR_WALLET_PRIVATE_KEY" ... creds = client.create_api_key()
Recommendation

Install from a trusted environment, verify the package/source, pin versions where possible, and remove private-key material immediately after generating API keys.