Polymarket Whale Tracker
Analysis
This skill appears to be a local reporting tool that queries public Polymarket APIs, but users should treat its trading-confidence language as informational rather than guaranteed financial guidance.
Findings (3)
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.
Track the top monthly earners on Polymarket and copy their winning positions... 2+ whales in same market → HIGH conviction, follow... Kelly-sized position recommendations with $25 hard cap
The skill uses strong trading-confidence language, while the included script only reports public position data and does not verify future outcomes, place trades, or enforce the advertised cap.
DATA_API = "https://data-api.polymarket.com" ... requests.get(f"{DATA_API}/positions", params={"user": address, "sizeThreshold": min_size, "limit": 50,}, timeout=10)The script performs outbound API calls and sends wallet addresses as query parameters; this is central to the whale-tracking purpose and is not hidden.
pip install requests
The setup step installs an unpinned Python dependency and there is no install spec. This is a simple, expected dependency for the script, but it relies on the user's package source.
