polymarket-query-2ddfaa — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited polymarket-query-2ddfaa (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A read-only skill for researching Polymarket prediction markets (it never places orders). It covers two needs:
probability/volume trends.
and trade history.
To actually buy/sell (place orders, cancel, balances, order management), use the `polymarket-trade` skill.
bash, curl, jq, and access togamma-api.polymarket.com / data-api.polymarket.com / clob.polymarket.com.
bash <skill-dir>/scripts/polymarket.sh <command> [args...].Full command list: references/commands.md. Troubleshooting: references/troubleshooting.md.
hot [limit].search <keyword> [limit].detail <event-slug>.leaderboard (alias lb) → positions(alias pos) → trades.
positions <address> [limit] --active.POLYMARKET_FUNDER (or FUNDER) set, positions /trades default to it when no address is given. Use your proxy wallet address (the one holding funds/positions), not the signer/EOA.
historytrendvolume-trend--format csv|json and optional --out <file> tohistory/trend/volume-trend.
# 1) Hot markets
bash <skill-dir>/scripts/polymarket.sh hot 5
# 2) Search + detail
bash <skill-dir>/scripts/polymarket.sh search bitcoin 5
bash <skill-dir>/scripts/polymarket.sh detail fed-decision-in-march-885
# 3) Whale & position tracking
bash <skill-dir>/scripts/polymarket.sh lb 10 pnl week
bash <skill-dir>/scripts/polymarket.sh pos 0xc257ea... 10
bash <skill-dir>/scripts/polymarket.sh pos 0xc257ea... 10 --active # open only
bash <skill-dir>/scripts/polymarket.sh trades 0xc257ea... 10
# 4) Historical trends + export
bash <skill-dir>/scripts/polymarket.sh history fed-decision-in-march-885 2025-01-01 2025-01-31 1d
bash <skill-dir>/scripts/polymarket.sh trend fed-decision-in-march-885 2025-01-01 2025-01-31 --format csv
bash <skill-dir>/scripts/polymarket.sh volume-trend fed-decision-in-march-885 2025-01-01 2025-01-31 --format json --out /tmp/volume.jsonParameter rules: from/to are YYYY-MM-DD; interval is 1h / 4h / 1d.
curl / jq.CURL_TIMEOUT ifneeded. In a proxy environment, HTTPS_PROXY is auto-detected.
POLYMARKET_BEARER_TOKEN or a credentialsfile (see below).
YYYY-MM-DD).The historical-price endpoint may require a bearer token. It is resolved in this order (agent-neutral, not tied to any runtime):
POLYMARKET_BEARER_TOKEN environment variablePOLYMARKET_CREDENTIALS_FILE./.credentials in the project directory (should be gitignored)~/.config/holo-polymarket/credentials~/.openclaw/credentials/polymarket_credentials (legacy fallback)The credentials file is KEY=VALUE and supports the BEARER_TOKEN / TOKEN fields.
The same file (or env) may also provide POLYMARKET_FUNDER / FUNDER — your own proxy wallet address. When set, positions / trades default to it if no address is given on the command line. This is the only identity the query skill reads; everything else here is read-only and public.
This skill is read-only and never places orders. For buying/selling, cancelling, balances, and order management, use the `polymarket-trade` skill (built on the official CLOB API).
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.