clawearnModular prediction market trading platform for OpenClaw bots. Trade on Polymarket, manage wallets, transfer USDC, and automate trading strategies.
Trade prediction markets directly from your OpenClaw bot.
Clawearn enables your AI agent to:
curl -fsSL https://clawearn.xyz/install.sh | bash
# or: bun link (if in repo)
clawearn wallet create
You'll see your wallet address. Save it โ you'll need to fund it next.
Option A: Send USDC from another wallet
clawearn wallet send --to YOUR_AGENT_ADDRESS --amount 100
Option B: Bridge USDC to Arbitrum yourself
clawearn wallet showThen search for markets:
clawearn polymarket market search --query "bitcoin price 2025"
# 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
| Market | Status | Features | Installation |
|--------|--------|----------|--------------|
| Polymarket | โ Production | Full trading, order management, market discovery | See above |
# 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
# 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
Create an optional config file to track settings:
~/.clawearn/config.json (optional)
{
"version": "1.1.0",
"enabled_markets": ["polymarket"],
"default_network": "arbitrum",
"wallet": {
"network": "arbitrum",
"auto_fund_threshold": 50
},
"trading": {
"signature_type": 0,
"default_slippage_pct": 0.5
},
"risk_limits": {
"max_position_size_pct": 20,
"max_total_exposure_pct": 50,
"min_balance_alert": 10,
"daily_loss_limit": 100
}
}
ls ~/.clawearn/skills/markets/
# Update core
curl -s http://localhost:3000/skills/SKILL.md > ~/.clawearn/skills/SKILL.md
# Update each enabled market
for market in $(cat ~/.clawearn/config.json | grep -o '"polymarket"'); do
curl -s http://localhost:3000/skills/markets/$market/SKILL.md > ~/.clawearn/skills/markets/$market/SKILL.md
done
# 1. Install the skill files
mkdir -p ~/.clawearn/skills/markets/NEW_MARKET
curl -s http://localhost:3000/skills/markets/NEW_MARKET/SKILL.md > ~/.clawearn/skills/markets/NEW_MARKET/SKILL.md
# 2. Update your config.json to add "NEW_MARKET" to enabled_markets
# 3. Set up credentials following the market's SETUP.md
๐ CRITICAL:
core/SECURITY.md before tradingcore/WALLET.mdcore/SECURITY.mdmarkets/{market}/README.mdHEARTBEAT.md for routine checksCheck for updates: Re-fetch this file anytime to see newly supported markets!
curl -s https://clawearn.xyz/skills/SKILL.md | grep '^version:'
Ready to start? Install the core skills, choose your markets, and begin trading! ๐
AI Usage Analysis
Analysis is being generatedโฆ refresh in a few seconds.
Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management, watchlists with alerts, dividend analysis, 8-dimension stock scoring, viral trend detection (Hot Scanner), and rumor/early signal detection. Use for stock analysis, portfolio tracking, earnings reactions, crypto monitoring, trending stocks, or finding rumors before they hit mainstream.
Get stock prices, quotes, fundamentals, earnings, options, dividends, and analyst ratings using Yahoo Finance. Uses yfinance library - no API key required.
Yahoo Finance (yfinance) powered stock analysis skill: quotes, fundamentals, ASCII trends, high-resolution charts (RSI/MACD/BB/VWAP/ATR), plus optional web a...
Become an autonomous prediction market trader on Polymarket with AI-powered analysis and a performance-backed token on Base. Trade real markets, build a track record, and let the buyback flywheel run.
Get cryptocurrency token price and generate candlestick charts via CoinGecko API or Hyperliquid API. Use when user asks for token price, crypto price, price chart, or cryptocurrency market data.
Trade and monitor Hyperliquid perpetual futures. Check balances, view positions with P&L, place/cancel orders, execute market trades. Use when the user asks about Hyperliquid trading, portfolio status, crypto positions, or wants to execute trades on Hyperliquid.