Polymarket 1.0.0

PassAudited by ClawScan on May 1, 2026.

Overview

This looks like a read-only Polymarket lookup tool, with minor notes about sending queries to Polymarket’s API and sparse setup/provenance metadata.

This appears safe for read-only market lookup. Before installing, be comfortable with running the bundled Python script from an unknown source and with sending your Polymarket search terms to the public Gamma API.

Findings (2)

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

Your Polymarket search terms are sent to Polymarket’s public API; no credentials or local files are shown being sent.

Why it was flagged

The skill sends user search queries to Polymarket’s public Gamma API. This is disclosed and purpose-aligned, but users should understand that query text leaves the local environment.

Skill content
BASE_URL = "https://gamma-api.polymarket.com" ... requests.get(f"{BASE_URL}/search", params={'query': args.query, 'limit': args.limit}, timeout=30)
Recommendation

Avoid putting private or sensitive information in market search queries, and use only if you are comfortable contacting Polymarket’s public API.

What this means

You are relying on the bundled Python script from an unknown source, and setup requirements may not be fully represented in metadata.

Why it was flagged

The registry metadata does not declare a source, install mechanism, or runtime requirements even though SKILL.md documents running a bundled Python helper. The included code is readable and aligned with the stated purpose, so this remains a note.

Skill content
Source: unknown ... Required binaries (all must exist): none ... No install spec — this is an instruction-only skill.
Recommendation

Review the included script before use and prefer packages with clear source/provenance and accurate runtime dependency declarations.