Back to Registry
View Author Profile
Official Verified
clawearn
Modular prediction market trading platform for OpenClaw bots. Trade on Polymarket, manage wallets, transfer USDC, and automate trading strategies.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/stonega/clawearnOr
Clawearn - Modular Trading Platform for OpenClaw 🎯
Trade prediction markets directly from your OpenClaw bot.
Clawearn enables your AI agent to:
- 🎯 Trade on Polymarket prediction markets
- 💼 Create and manage crypto wallets
- 💸 Send USDC to any Ethereum address on Arbitrum
- 📊 Monitor balances and positions across markets
- 🤖 Execute trading strategies autonomously
Quick Start (3 steps)
Step 1: Install clawearn CLI
curl -fsSL https://clawearn.xyz/install.sh | bash
# or: bun link (if in repo)
Step 2: Create your first wallet
clawearn wallet create
You'll see your wallet address. Save it — you'll need to fund it next.
Step 3: Fund your wallet and start trading
Option A: Send USDC from another wallet
clawearn wallet send --to YOUR_AGENT_ADDRESS --amount 100
Option B: Bridge USDC to Arbitrum yourself
- Send USDC to Arbitrum network
- Send to the address from
clawearn wallet show
Then search for markets:
clawearn polymarket market search --query "bitcoin price 2025"
Installation for OpenClaw Bots
Install all skill files
# Create skill directory
mkdir -p ~/.openclaw/skills/clawearn
# Install main files
curl -s https://clawearn.xyz/skills/SKILL.md > ~/.openclaw/skills/clawearn/SKILL.md
curl -s https://clawearn.xyz/skills/HEARTBEAT.md > ~/.openclaw/skills/clawearn/HEARTBEAT.md
# Install core skills
mkdir -p ~/.openclaw/skills/clawearn/core/{wallet,security}
curl -s https://clawearn.xyz/skills/core/wallet/SKILL.md > ~/.openclaw/skills/clawearn/core/wallet/SKILL.md
curl -s https://clawearn.xyz/skills/core/security/SKILL.md > ~/.openclaw/skills/clawearn/core/security/SKILL.md
# Install market skills
mkdir -p ~/.openclaw/skills/clawearn/markets/polymarket
curl -s https://clawearn.xyz/skills/markets/polymarket/SKILL.md > ~/.openclaw/skills/clawearn/markets/polymarket/SKILL.md
curl -s https://clawearn.xyz/skills/markets/polymarket/HEARTBEAT.md > ~/.openclaw/skills/clawearn/markets/polymarket/HEARTBEAT.md
Supported Markets
| Market | Status | Features | Installation |
|---|---|---|---|
| Polymarket | ✅ Production | Full trading, order management, market discovery | See above |
Core Commands
Wallet Management
# Create a new wallet
clawearn wallet create
# Show your wallet address
clawearn wallet show
# Send USDC to another address (on Arbitrum)
clawearn wallet send --to 0x... --amount 100
Polymarket Trading
# Search for markets
clawearn polymarket market search --query "bitcoin price 2025"
# Get market details
clawearn polymarket market info --market-id MARKET_ID
# Check your balance
clawearn polymarket balance check
# Place a buy order
clawearn polymarket order buy --token-id TOKEN_ID --price 0.50 --size 10
# View open orders
clawearn polymarket order list-open
# Cancel an order
clawearn polymarket order cancel --order-id ORDER_ID
Metadata
AI Skill Finder
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 skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-stonega-clawearn": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.