技能详情(站内镜像,无评论)
作者:Danny Shmueli @dannyshmueli
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 16 · 6.2k · 56 current installs · 58 all-time installs
⭐ 16
安装量(当前) 58
🛡 VirusTotal :良性 · OpenClaw :良性
Package:dannyshmueli/polymarket-api
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill is internally consistent: it is a read-only Polymarket client that queries the public Polymarket API and does not request credentials or install code.
目的
Name/description match the implementation: the script queries Polymarket's public API endpoints (/markets, /events) and formats market data. No unrelated capabilities, binaries, or credentials are requested.
说明范围
SKILL.md and the script limit actions to fetching and displaying public API data from gamma-api.polymarket.com. The instructions do not read local files, environment secrets, or send data to any unexpected endpoints.
安装机制
No install spec; the skill is instruction + a small Python script. No downloads or archive extraction occur. Risk from install mechanism is minimal.
证书
No environment variables, credentials, or config paths are required. The skill only needs network access to the public Polymarket API, which aligns with its purpose.
持久
always is false and the skill does not request persistent privileges or modify other skills or system settings. Autonomous invocation is allowed (platform default) but not by itself a concern here.
综合结论
This skill is a lightweight, read-only Polymarket client that makes HTTPS requests to gamma-api.polymarket.com and prints results. It does not request credentials or write files. Before installing, confirm you trust outbound network access to that domain (the script will perform live API calls). Also note this tool relies on the public API responses — results reflect Polymarket data and may change; there are no hidden endpoints or exfiltration…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Polymarket API」。简介:Query Polymarket prediction markets. Use for questions about prediction markets…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/dannyshmueli/polymarket-api/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: polymarket
description: Query Polymarket prediction markets. Use for questions about prediction markets, betting odds, market prices, event probabilities, or when user asks about Polymarket data.
---
# Polymarket
Query prediction market data from Polymarket's public API (no auth required).
## Quick Start
```bash
# Top markets by 24h volume
python3 scripts/polymarket.py --top
# Search markets
python3 scripts/polymarket.py --search "trump"
# Get specific market by slug
python3 scripts/polymarket.py --slug "will-trump-win-the-2024-election"
# List events (grouped markets)
python3 scripts/polymarket.py --events
```
## Script Location
`skills/polymarket/scripts/polymarket.py`
## API Endpoints
The script uses `gamma-api.polymarket.com`:
- `/markets` - Individual markets with prices, volumes
- `/events` - Event groups containing related markets
## Output Format
Markets show: question, Yes/No prices (as percentages), 24h volume, total volume.
## Interpreting Prices
- `outcomePrices` are 0-1 representing probability
- Price of 0.65 for "Yes" = market thinks 65% chance of Yes
- Higher volume = more liquid, more reliable signal