← 返回 Skills 市场
rsquaredsolutions2026

Polymarket Monitor

作者 rsquaredsolutions2026 · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
147
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install agentbets-polymarket-monitor
功能描述
Monitor Polymarket prediction markets for price movements, volume spikes, and new listings. Track specific markets, check order book depth, and surface trend...
使用说明 (SKILL.md)

Polymarket Monitor

Track prediction market prices, volume, and liquidity on Polymarket using the Gamma API and CLOB API.

When to Use

Use this skill when the user asks about:

  • Trending or popular Polymarket markets
  • Current price or probability for a prediction market
  • Volume or trading activity on a market
  • Order book depth or liquidity for a specific outcome
  • New or recently created prediction markets
  • Price movements or volume spikes on Polymarket

Key Concepts

  • Price = Implied Probability: A contract at $0.65 means 65% implied probability
  • Token ID: Each outcome (Yes/No) has a unique token ID used by the CLOB API
  • Condition ID: The unique identifier for a market (question) in the Gamma API
  • CLOB: Central Limit Order Book — where bids and asks are matched

Operations

1. List Trending Markets

Show the top active markets sorted by 24-hour volume:

curl -s "https://gamma-api.polymarket.com/markets?closed=false&active=true&order=volume24hr&ascending=false&limit=10" \
  | jq '[.[] | {
    question: .question,
    price_yes: (.outcomePrices // "[]" | fromjson | .[0] // "N/A"),
    price_no: (.outcomePrices // "[]" | fromjson | .[1] // "N/A"),
    volume_24h: ((.volume24hr // 0) | tonumber | round),
    total_volume: ((.volumeNum // 0) | tonumber | round),
    liquidity: ((.liquidityNum // 0) | tonumber | round),
    end_date: .endDate
  }]'

## About

Built by [AgentBets](https://agentbets.ai) — full tutorial at [agentbets.ai/guides/openclaw-polymarket-monitor-skill/](https://agentbets.ai/guides/openclaw-polymarket-monitor-skill/).

Part of the [OpenClaw Skills series](https://agentbets.ai/guides/#openclaw-skills) for the [Agent Betting Stack](https://agentbets.ai/guides/agent-betting-stack/).
安全使用建议
This skill appears coherent and low-risk: it simply issues HTTP requests to Polymarket and parses the JSON with jq. Before installing, consider: 1) provenance — the registry lists no homepage/source repo; if you need stronger assurance, verify the author or prefer a published repo. 2) network/privacy — the agent will make outbound requests to polymarket endpoints (no credentials requested), so sensitive local data is not required but network activity will occur. 3) rate-limiting and reliability — repeated automated polling can trigger API limits; implement sensible throttling if you invoke it frequently. If you want to be extra cautious, run the skill in a controlled environment or test with low-frequency requests first.
功能分析
Type: OpenClaw Skill Name: agentbets-polymarket-monitor Version: 1.1.0 The skill provides legitimate functionality for monitoring Polymarket prediction markets using the official Gamma API (gamma-api.polymarket.com). The operations in SKILL.md are transparent, using standard system tools (curl, jq) to fetch and format public market data without any evidence of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
Name/description (Polymarket monitoring) match the runtime instructions: the SKILL.md shows curl calls to Polymarket's Gamma API and parsing with jq. Requested binaries (curl, jq) are exactly what the examples use.
Instruction Scope
Instructions are narrowly scoped to calling the Gamma API and parsing results. The doc references the CLOB API and several operations (order-book depth, new listings) but only provides an example for listing trending markets; this is a functional incompleteness rather than a security concern. The instructions do not read local files, environment secrets, or send data to unexpected endpoints.
Install Mechanism
No install spec and no code files — instruction-only skill. This minimizes disk-write risk and matches the simple curl/jq approach.
Credentials
The skill declares no required environment variables or credentials. That is proportionate to its stated purpose (public API reads).
Persistence & Privilege
always is false (default) and the skill does not request system-wide changes or persistent credentials. Autonomous invocation is allowed (platform default) but not combined with other concerning privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agentbets-polymarket-monitor
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agentbets-polymarket-monitor 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Add attribution links to agentbets.ai guides
v1.0.0
Initial release — AgentBets OpenClaw Skills series
元数据
Slug agentbets-polymarket-monitor
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Polymarket Monitor 是什么?

Monitor Polymarket prediction markets for price movements, volume spikes, and new listings. Track specific markets, check order book depth, and surface trend... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 147 次。

如何安装 Polymarket Monitor?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agentbets-polymarket-monitor」即可一键安装,无需额外配置。

Polymarket Monitor 是免费的吗?

是的,Polymarket Monitor 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Polymarket Monitor 支持哪些平台?

Polymarket Monitor 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Polymarket Monitor?

由 rsquaredsolutions2026(@rsquaredsolutions2026)开发并维护,当前版本 v1.1.0。

💬 留言讨论