zonein
Fetch live smart money signals from Polymarket and HyperLiquid via Zonein API. Create, configure, and manage AI trading agents that follow smart money. Use PROACTIVELY when user asks about: (1) Prediction market signals, whales, smart bettors (2) Crypto perp trading signals, long/short sentiment (3) Leaderboard, top traders, wallet tracking (4) Create/manage trading agents (agent creation flow) (5) Market overview, crypto sentiment, smart money flow (6) Agent performance, stats, trades, vault balance Always use the bundled script — never call the API with inline code.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/phutt-bwai/zoneinZonein — Smart Money Intelligence
Fetch live trading intelligence from Polymarket and HyperLiquid smart money wallets using the bundled script.
Setup (credentials)
Get Your API Key
- Go to https://app.zonein.xyz/pm
- Log in with your account (you need a referral code to register)
- Click the "Get API Key" button
- Copy your API key (starts with
zn_)
Set API Key in OpenClaw
Option A — Gateway Dashboard (recommended):
- Open your OpenClaw Gateway Dashboard
- Go to
/skillsin the sidebar - Find "zonein" in Workspace Skills → click Enable
- Enter your
ZONEIN_API_KEYand save
Option B — Environment variable:
export ZONEIN_API_KEY="zn_your_key_here"
Option C — The script also reads from ~/.openclaw/openclaw.json automatically (skills.entries.zonein.apiKey).
Quick Reference
| User asks... | Command |
|---|---|
| "What's happening in the market?" | signals --limit 5 + perp-signals --limit 5 |
| "Show me PM signals for politics" | signals --categories POLITICS --limit 10 |
| "What are whales doing on crypto?" | perp-signals --limit 10 |
| "Top Polymarket traders this week" | leaderboard --period WEEK --limit 10 |
| "Which coins are smart money long?" | perp-coins |
| "Best perp traders this month" | perp-top --period month --limit 10 |
| "Track wallet 0x..." | trader 0x... or perp-trader 0x... |
| "Where is smart money flowing?" | signals --limit 10 + perp-signals --limit 10 + perp-coins |
| "Create a trading agent" | Follow Agent Creation Flow (Step 1–6) |
| "List my agents" | agents |
| "How is my agent doing?" | agent-stats <id> + agent-trades <id> |
| "Stop my agent" | agent-disable <id> |
| "What agent types are available?" | agent-templates |
| "Check my agent's balance" | agent-balance <id> |
| "What positions does my agent have?" | agent-positions <id> |
| "How do I fund my agent?" | agent-deposit <id> then send USDC, then agent-fund <id> to bridge to Hyperliquid |
| "Open a BTC long for $100" | agent-open <id> --coin BTC --direction LONG --size 100 |
| "Close my ETH position" | agent-close <id> --coin ETH |
| "Withdraw my funds" | agent-disable <id> then agent-withdraw <id> --to 0x... |
| "Backtest my agent on BTC" | agent-backtest <id> --symbol BTC --days 30 |
| "Show past backtests" | agent-backtests <id> |
Commands
Presentation Rules:
- Present results in natural, readable language. Format numbers, tables, and summaries nicely.
- If the user asks to see raw JSON or the actual command, you may show it.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-phutt-bwai-zonein": {
"enabled": true,
"auto_update": true
}
}
}