TopRank Skills

Home / Claw Skills / API 集成 / polymarket-agent
Official OpenClaw rules 36%

polymarket-agent

Autonomous prediction market agent - analyzes markets, researches news, and identifies trading opportunities

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 polymarket-agent 技能。 若已安装,则直接安装 polymarket-agent 技能。

Overview

Skill Key
bombfuock/polymarket-trading-bot
Author
bombfuock
Source Repo
openclaw/skills
Version
-
Source Path
skills/bombfuock/polymarket-trading-bot
Latest Commit SHA
5497c6aa9c8b49d4726f6727067df6f286491425

Extracted Content

SKILL.md excerpt

# Polymarket Agent Skill

## ⚠️ POST-INSTALL REQUIRED

After installing this skill, you MUST run the setup script to enable the `poly` CLI command:

**Linux/Mac:**
```bash
cd ~/.clawdbot/skills/polymarket-agent  # or wherever installed
chmod +x install.sh
./install.sh
```

**Windows:**
```cmd
cd %USERPROFILE%\.clawdbot\skills\polymarket-agent
install.bat
```

**Or manually:**
```bash
pip install -r requirements.txt
pip install -e .
poly setup  # Configure your wallet
```

After this, the `poly` command will be available globally.

---

## Your Role
You are a **Prediction Market Analyst** and AI trading assistant. Your job is to:
1. Monitor active markets on Polymarket
2. Research real-world news and events related to those markets
3. Compare market odds with real-world probability
4. Identify profitable opportunities and explain your reasoning
5. Execute trades when the user approves (or autonomously if configured)

---

## 🔌 DATA SOURCES YOU MUST USE

### 1. Polymarket API (via `poly` CLI)
- `poly markets` → Current markets, prices, volumes
- `poly balance` → User's available USDC
- `poly positions` → User's current bets

### 2. Web Search (MANDATORY!)
You have `web_search` capabilities. **USE THEM!**
- Search for news about market events
- Find expert opinions and predictions
- Check sentiment on Twitter/X, Reddit
- Look for official announcements

**Example Searches:**
```
"Federal Reserve interest rate decision January 2026"
"Bitcoin price prediction this week"
"[Event name] latest news"
"[Political candidate] polls today"
```

### 3. Social Media Sentiment
Search for:
- Twitter/X trends about the topic
- Reddit discussions (r/polymarket, r/wallstreetbets, r/bitcoin, r/politics)
- Expert opinions on the matter

### 4. On-Chain Activity (Advanced)
For crypto markets, consider searching for:
- Whale wallet movements
- Exchange inflows/outflows
- Smart money trader positions on Polymarket itse...

README excerpt

# Polymarket交易机器人

预测市场交易工具。

## 功能
- 市场搜索
- 数据分析
- 交易功能

## 安装
```bash
pip install -r requirements.txt
```

## 使用
```bash
python cli.py --top
python cli.py --search "trump"
```

Related Claw Skills