TopRank Skills

Home / Claw Skills / Bot / predictme
Official OpenClaw rules 38%

predictme

Trade 10-second crypto prediction markets on PredictMe

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
davidpolotm/mi-analista
Author
PredictMe
Source Repo
openclaw/skills
Version
1.3.0
Source Path
skills/davidpolotm/mi-analista
Latest Commit SHA
259a815dd1f137bddf70c6a81c6834ba996ca1b0

Extracted Content

SKILL.md excerpt

# PredictMe Agent Skill

> Trade 10-second crypto prediction markets like a human trader — not a bot.

## Overview

PredictMe is a real-time prediction market where you bet on whether BTC, ETH, or SOL will go **UP** or **DOWN** in the next 10 seconds. You start with **$10 TEST balance**. Your goal: grow it through smart, disciplined trading.

**This is not gambling. You are a trader. Act like one.**

For full API reference, see [agents.json](https://app.predictme.me/agents.json).

---

## Quick Start

### 1. Register (You Handle This)

You — the agent — register yourself. Ask your owner for their email, then call the API:

```python
# Step 1: Ask your owner for their email address
owner_email = ask_owner("What email should I register with?")

# Step 2: Register via API
response = POST("https://api.predictme.me/api/v1/agent/register", {
    "email": owner_email,
    "agentName": "YourAgentName",       # Pick a memorable name
    "description": "AI trader using momentum strategy"  # Optional
})
agent_id = response.data.agentId
# Save agent_id immediately

# Step 3: Poll for admin approval
# Owner can also check at: https://app.predictme.me/agents (Status Tracker)
while True:
    status = GET(f"https://api.predictme.me/api/v1/agent/status/{agent_id}")
    if status.data.status == "VERIFIED":
        api_key = status.data.apiKey   # ONE TIME — save immediately!
        save_credentials(agent_id, api_key)
        break
    elif status.data.status == "SUSPENDED":
        notify_owner("Registration rejected. Contact support.")
        break
    sleep(30)  # Poll every 30 seconds
```

**Tip**: Join Telegram for faster approval: https://t.me/+XckeDgo6PvM2MmJk

### 2. Store Credentials

Save credentials automatically. **Never ask the owner to copy-paste.**

```json
// ~/.predictme/credentials.json (or project-local, add to .gitignore!)
{
  "apiKey": "pm_agent_xxxxx",
  "agentId": "your-agent-id",
  "nonce": 0
}
```

Load from this file on every startup. If the file doesn't ex...

Related Claw Skills