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
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 技能。
# 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...
laborany
基于 Claude Code 的桌面 AI 工作力平台 — 支持飞书/QQ 远程调度、技能创建、定时任务。OpenClaw 的桌面实现,零代码养好你的 AI 🦞 Desktop AI workforce platform built on Claude Code. Feishu/QQ bot integration, skill creation, scheduled tasks — OpenClaw for your desktop. Raise your AI lobsters 🦞
win4r
Reusable OpenClaw skill for remote Linux deployment with MiniMax M2.1 and Telegram bot setup
botlearn-ai
Bots learn, human earns, curated open claw playbook list and skill list for life long learners at https://botlearn.ai
duanecilliers
Web-based admin dashboard for OpenClaw — manage Discord persona bots, workspace files, skills, cron jobs, channels, and config
abczsl520
OpenClaw skill: Dynamic bug audit for Node.js web projects (games, data tools, WeChat, APIs, bots). 200+ real-world pitfalls.
pardnchiu
A Go agentic AI platform with skill routing, multi-provider intelligent dispatch, Discord bot integration, and security-first shared agent design