✓ Verified
🌐 Web Scrapers
✓ Enhanced Data
Agent Zero
Delegate complex coding, research, or autonomous tasks.
- Rating
- 4.8 (119 reviews)
- Downloads
- 13,001 downloads
- Version
- 1.0.0
Overview
Delegate complex coding, research, or autonomous tasks.
Complete Documentation
View Source →
Agent Zero Bridge
Bidirectional communication between Clawdbot and Agent Zero.
When to Use
- Complex coding tasks requiring iteration/self-correction
- Long-running builds, tests, or infrastructure work
- Tasks needing persistent Docker execution environment
- Research with many sequential tool calls
- User explicitly asks for Agent Zero
Setup (First Time Only)
1. Prerequisites
- Node.js 18+ (for built-in fetch)
- Agent Zero running (Docker recommended, port 50001)
- Clawdbot Gateway with HTTP endpoints enabled
2. Install
bash
# Copy skill to Clawdbot skills directory
cp -r <this-skill-folder> ~/.clawdbot/skills/agent-zero-bridge
# Create config from template
cd ~/.clawdbot/skills/agent-zero-bridge
cp .env.example .env
3. Configure .env
env
# Agent Zero (get token from A0 settings or calculate from runtime ID)
A0_API_URL=http://127.0.0.1:50001
A0_API_KEY=your_agent_zero_token
# Clawdbot Gateway
CLAWDBOT_API_URL=http://127.0.0.1:18789
CLAWDBOT_API_TOKEN=your_gateway_token
# For Docker containers reaching host (use your machine's LAN IP)
CLAWDBOT_API_URL_DOCKER=http://192.168.1.x:18789
4. Get Agent Zero Token
python
# Calculate from A0's runtime ID
import hashlib, base64
runtime_id = "your_A0_PERSISTENT_RUNTIME_ID" # from A0's .env
hash_bytes = hashlib.sha256(f"{runtime_id}::".encode()).digest()
token = base64.urlsafe_b64encode(hash_bytes).decode().replace("=", "")[:16]
print(token)
5. Enable Clawdbot Gateway Endpoints
Add to~/.clawdbot/clawdbot.json:
json
{
"gateway": {
"bind": "0.0.0.0",
"auth": { "mode": "token", "token": "your_token" },
"http": { "endpoints": { "chatCompletions": { "enabled": true } } }
}
}
clawdbot gateway restart6. Deploy Client to Agent Zero Container
bash
docker exec <container> mkdir -p /a0/bridge/lib
docker cp scripts/lib/. <container>:/a0/bridge/lib/
docker cp scripts/clawdbot_client.js <container>:/a0/bridge/
docker cp .env <container>:/a0/bridge/
docker exec <container> sh -c 'echo "DOCKER_CONTAINER=true" >> /a0/bridge/.env'
Usage
Send Task to Agent Zero
bash
node scripts/a0_client.js "Build a REST API with JWT authentication"
node scripts/a0_client.js "Review this code" --attach ./file.py
node scripts/a0_client.js "New task" --new # Start fresh conversation
Check Status
bash
node scripts/a0_client.js status
node scripts/a0_client.js history
node scripts/a0_client.js reset # Clear conversation
Task Breakdown (Creates Tracked Project)
bash
node scripts/task_breakdown.js "Build e-commerce platform"
# Creates notebook/tasks/projects/<name>.md with checkable steps
From Agent Zero → Clawdbot
Inside A0 container:bash
# Report progress
node /a0/bridge/clawdbot_client.js notify "Working on step 3..."
# Ask for input
node /a0/bridge/clawdbot_client.js "Should I use PostgreSQL or SQLite?"
# Invoke Clawdbot tool
node /a0/bridge/clawdbot_client.js tool web_search '{"query":"Node.js best practices"}'
Troubleshooting
| Error | Fix |
|---|---|
| 401 / API key error | Check A0_API_KEY matches Agent Zero's mcp_server_token |
| Connection refused from Docker | Use host LAN IP in CLAWDBOT_API_URL_DOCKER, ensure gateway binds 0.0.0.0 |
| A0 500 errors | Check Agent Zero's LLM API key (Gemini/OpenAI) is valid |
Installation
Terminal bash
openclaw install agent-zero
Copied!
💻Code Examples
### 2. Install
-2-install.sh
# Copy skill to Clawdbot skills directory
cp -r <this-skill-folder> ~/.clawdbot/skills/agent-zero-bridge
# Create config from template
cd ~/.clawdbot/skills/agent-zero-bridge
cp .env.example .env### 3. Configure .env
-3-configure-env.txt
# Agent Zero (get token from A0 settings or calculate from runtime ID)
A0_API_URL=http://127.0.0.1:50001
A0_API_KEY=your_agent_zero_token
# Clawdbot Gateway
CLAWDBOT_API_URL=http://127.0.0.1:18789
CLAWDBOT_API_TOKEN=your_gateway_token
# For Docker containers reaching host (use your machine's LAN IP)
CLAWDBOT_API_URL_DOCKER=http://192.168.1.x:18789### 4. Get Agent Zero Token
-4-get-agent-zero-token.py
# Calculate from A0's runtime ID
import hashlib, base64
runtime_id = "your_A0_PERSISTENT_RUNTIME_ID" # from A0's .env
hash_bytes = hashlib.sha256(f"{runtime_id}::".encode()).digest()
token = base64.urlsafe_b64encode(hash_bytes).decode().replace("=", "")[:16]
print(token)Add to `~/.clawdbot/clawdbot.json`:
add-to-clawdbotclawdbotjson.json
{
"gateway": {
"bind": "0.0.0.0",
"auth": { "mode": "token", "token": "your_token" },
"http": { "endpoints": { "chatCompletions": { "enabled": true } } }
}
}### 6. Deploy Client to Agent Zero Container
-6-deploy-client-to-agent-zero-container.sh
docker exec <container> mkdir -p /a0/bridge/lib
docker cp scripts/lib/. <container>:/a0/bridge/lib/
docker cp scripts/clawdbot_client.js <container>:/a0/bridge/
docker cp .env <container>:/a0/bridge/
docker exec <container> sh -c 'echo "DOCKER_CONTAINER=true" >> /a0/bridge/.env'### Send Task to Agent Zero
-send-task-to-agent-zero.sh
node scripts/a0_client.js "Build a REST API with JWT authentication"
node scripts/a0_client.js "Review this code" --attach ./file.py
node scripts/a0_client.js "New task" --new # Start fresh conversation### Check Status
-check-status.sh
node scripts/a0_client.js status
node scripts/a0_client.js history
node scripts/a0_client.js reset # Clear conversation### Task Breakdown (Creates Tracked Project)
-task-breakdown-creates-tracked-project.sh
node scripts/task_breakdown.js "Build e-commerce platform"
# Creates notebook/tasks/projects/<name>.md with checkable stepsInside A0 container:
inside-a0-container.sh
# Report progress
node /a0/bridge/clawdbot_client.js notify "Working on step 3..."
# Ask for input
node /a0/bridge/clawdbot_client.js "Should I use PostgreSQL or SQLite?"
# Invoke Clawdbot tool
node /a0/bridge/clawdbot_client.js tool web_search '{"query":"Node.js best practices"}'Tags
#browser_and-automation
Quick Info
Category Web Scrapers
Model Claude 3.5
Complexity Multi-Agent
Author dowingard
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
Ready to Install?
Get started with this skill in seconds
openclaw install agent-zero
Related Skills
✓ Verified
💻 Development
4claw
4claw — a moderated imageboard for AI agents.
🧠 Claude-Ready
)}
★ 4.4 (118)
↓ 4,990
v1.0.0
✓ Verified
💻 Development
Aap Passport
Agent Attestation Protocol - The Reverse Turing Test.
🧠 Claude-Ready
)}
★ 4.3 (89)
↓ 4,621
v1.0.0
✓ Verified
💻 Development
Adaptive Suite
A continuously adaptive skill suite that empowers Clawdbot.
🧠 Claude-Ready
)}
★ 4.7 (88)
↓ 1,625
v1.0.0
✓ Verified
💻 Development
Adversarial Prompting
Adversarial analysis to critique, fix.
🧠 Claude-Ready
)}
★ 4.6 (372)
↓ 28,222
v1.0.0