Polymarket Weather Scanner
PassAudited by ClawScan on May 1, 2026.
Overview
This is a coherent weather-market scanning skill, with the main caution that it sends scan requests and any scanner API key to a disclosed external service.
This skill appears safe to use for user-requested weather-market scans, but only install it if you trust the polymarket-scanner.fly.dev service. Avoid setting POLYMARKET_SCANNER_HOST unless you trust the alternate host, use a dedicated scanner API key if you enable full access, and do not provide wallet private keys or trading credentials.
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.
Scan requests leave the local machine, and if POLYMARKET_SCANNER_HOST is set to another host, requests would go there instead.
The script uses curl to contact a remote API and allows the destination host to be overridden by an environment variable. This is consistent with the scanner purpose, but it is a trust boundary users should notice.
HOST="${POLYMARKET_SCANNER_HOST:-https://polymarket-scanner.fly.dev}" ... curl ... "${HOST}/scan/weather?days_ahead=${DAYS}"Use the default host unless you intentionally trust an alternate scanner service, and verify POLYMARKET_SCANNER_HOST is not set unexpectedly.
Anyone controlling the destination service could receive the scanner API key and potentially use the associated scanner tier or quota.
The optional scanner API key is sent as an HTTP header to the scanner API. This is declared and purpose-aligned, but it is still a credential for the service.
API_KEY="${POLYMARKET_SCANNER_API_KEY:-}" ... ${API_KEY:+-H "X-API-Key: ${API_KEY}"}Use only a dedicated scanner API key, do not provide wallet or trading credentials, and rotate the key if you suspect it was exposed.
You have limited independent information about who operates the backend service beyond the disclosed API URL.
The skill has no listed source repository or homepage, while its functionality depends on a hosted backend. This is a provenance note rather than evidence of malicious behavior.
Source: unknown; Homepage: none
Install only if you are comfortable trusting the hosted scanner service, especially before setting a paid-tier API key.
