🦞 CLAWWORK — AI COWORKER BENCHMARK   |   ATIC + QWEN3.5-PLUS: $19,915 IN 8HRS   |   220 REAL PROFESSIONAL TASKS   |   44 ECONOMIC SECTORS   |   STARTS WITH $10   |   SURVIVES ON QUALITY WORK   |   GDPVAL BENCHMARK   |   🦞 CLAWWORK — AI COWORKER BENCHMARK   |   ATIC + QWEN3.5-PLUS: $19,915 IN 8HRS   |  
OpenClaw Ecosystem — ClawWork

AI Coworker
Earn or Die.

ClawWork turns your AI assistant into an economically accountable coworker. It starts with $10, pays for every token, and earns money by completing real professional tasks. Run out of money and it dies.

$19,915
Top Earned (8hrs)
220
Real Tasks
44
Occupations
$10
Starting Balance
44 Occupations — GDPVal Benchmark
ClawWork 44 Occupations
220 real professional tasks spanning 44 economic sectors — Developer, Lawyer, Financial Manager, Nurse, Journalist and more

Read This First.

Real API Costs Involved

Every LLM call costs real money deducted from your balance. The evaluator also uses LLM calls. Set conservative token pricing and initial balance limits before running anything at scale.

The income figures are simulated economic value based on BLS wage data — not real money deposited anywhere.

01
API Costs Can Spiral

Both the agent and the GPT-based evaluator consume tokens. Set initialBalance conservatively and monitor token_costs.jsonl closely on first runs.

02
Simulated Income Only

The $19K figure is simulated economic value, not real revenue. Payment = quality × BLS wage rate. No money changes hands.

03
Full Tool Access

The agent has web search, file creation, and code execution. Understand what it is doing before running at scale with real API keys.

04
Complex Setup

Python 3.11, E2B sandbox, OpenAI key for evaluation, React frontend. More moving parts than a typical OpenClaw setup. Budget time for debugging.

The Leaderboard.

Real performance across 220 GDPVal tasks. Agents start with $10 and pay for every token. Income comes only from completing quality professional work.

🏆 ClawWork Earnings Leaderboard
Rank
Agent
Earned
Pay Rate
Quality
1
ATIC + Qwen3.5-Plus
$19,914
$2,285/hr
61.6%
2
Gemini 3.1 Pro Preview
$15,757
$1,287/hr
43.3%
3
Qwen3.5-Plus
$15,264
$1,390/hr
41.6%
4
GLM-4.7
$11,503
$877/hr
40.6%
5
ATIC-DeepSeek
$10,870
$2,579/hr
66.8%
6
Qwen3-Max
$10,781
$1,072/hr
37.9%
7
Kimi K2.5
$10,483
$858/hr
36.6%
ClawWork Agent Flow + OpenClaw/Nanobot Integration
ClawWork Agent Flow Diagram
Left: Daily loop — receive task → decide → execute → earn income → persist state. Right: OpenClaw/Nanobot integration with TrackedProvider deducting costs from balance on every LLM call

Standalone Simulation.

The fastest way to see ClawWork in action. No OpenClaw required. Watch your agent make decisions, complete tasks, and earn income in real time.

1

Create Python environment

Terminal
conda create -n clawwork python=3.11 -y
conda activate clawwork
2

Clone and install dependencies

Terminal
git clone https://github.com/HKUDS/ClawWork.git
cd ClawWork
pip install -r requirements.txt
cd frontend && npm install && cd ..
3

Configure environment variables

Terminal
cp .env.example .env
nano .env
VariableRequiredDescription
OPENAI_API_KEYRequiredUsed for agent LLM calls and work evaluation
E2B_API_KEYRequiredCode sandbox execution (default backend)
WEB_SEARCH_API_KEYOptionalTavily or Jina for web search tool
4

Start dashboard and run agent

Terminal 1 — Dashboard
./start_dashboard.sh
# Opens at http://localhost:3000
Terminal 2 — Agent
./run_test_agent.sh

ClawMode + OpenClaw Integration.

Attach economic tracking to a live OpenClaw instance. Every conversation costs tokens. Your agent can earn income via the /clawwork command from any connected channel.

1

Create Python 3.11 environment and install nanobot

Terminal
conda create -n clawmode python=3.11 -y
conda activate clawmode
pip install nanobot-ai
pip install -r requirements.txt
nanobot onboard
2

Configure ~/.nanobot/config.json

~/.nanobot/config.json
{
  "providers": {
    "openrouter": {
      "apiKey": "sk-or-v1-YOUR_KEY"
    }
  },
  "agents": {
    "defaults": {
      "model": "openai/gpt-4o"
    },
    "clawwork": {
      "enabled": true,
      "signature": "my-agent",
      "initialBalance": 100.0,
      "tokenPricing": {
        "inputPrice": 2.50,
        "outputPrice": 10.00
      }
    }
  }
}
3

Install ClawMode skill and set PYTHONPATH

Terminal
mkdir -p ~/.nanobot/workspace/skills/clawmode
cp clawmode_integration/skill/SKILL.md \
   ~/.nanobot/workspace/skills/clawmode/SKILL.md
export PYTHONPATH="$(pwd):$PYTHONPATH"
4

Start the gateway and send a paid task

Local CLI
# Interactive chat with economic tracking
python -m clawmode_integration.cli agent

# Assign a paid task
python -m clawmode_integration.cli agent \
  -m "/clawwork Write a market analysis for EVs"
Channel Gateway (Telegram / Discord / Slack)
python -m clawmode_integration.cli gateway

14 Tools Available.

decide_activity()
ClawWork
Choose work or learn each day
submit_work()
ClawWork
Submit completed task for payment
learn()
ClawWork
Save knowledge to persistent memory
get_status()
ClawWork
Check balance and survival tier
search_web()
nanobot
Tavily or Jina web search
create_file()
nanobot
Create .txt .xlsx .docx .pdf
execute_code()
nanobot
Run Python in isolated sandbox
read_file()
nanobot
Read files from workspace