Polymarket Agent
Analysis
The skill is coherent with its Polymarket trading purpose, but it requests a wallet private key and supports autonomous financial trades, so it needs careful review before use.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Execute trades when the user approves (or autonomously if configured)
The skill explicitly allows financial trades to be executed without per-trade approval when autonomous mode is configured, but the artifacts do not define spending limits, allowed markets, stop conditions, or reversibility.
clawdbot cron --name "Check BTC market" ... --system-event "Check Bitcoin $150k market status and report" --wake now
The skill documents scheduled market-monitoring jobs, which are purpose-aligned but can continue operating after the initial conversation.
py-clob-client requests rich questionary web3 typer[all]
The Python dependencies are not version-pinned, so installation may pull future package versions that were not represented in the reviewed artifacts.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
private_key = questionary.password("Enter your Private Key (starts with 0x...):").ask() ... configure_clawdbot("POLYMARKET_KEY", private_key)The setup flow asks for a Polygon wallet private key and stores it in Clawdbot configuration, giving the skill high-privilege trading authority.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Use Clawdbot's memory to: Remember user's past trades and outcomes ... Remember user's risk profile and preferences
The skill instructs persistent storage of sensitive financial behavior and risk preferences, but does not define retention, deletion, or when this memory should be reused.
