v1.0 · Free & Open Source

OpenClaw
Broken?

Install OpenClaw Doctor on any machine in under 10 seconds. Instantly get a secure public URL to run shell commands, inspect health, and fix any configuration — no SSH, no passwords required.

curl -sSL https://ocd.imdaxia.com/install.sh | bash
Compatible with macOS · Linux · Windows (WSL)
How it works

From broken to
back online in seconds

1

Run the install command

One curl | bash command installs all dependencies (Node.js, cloudflared binary) and starts the Doctor server on port 12222. No configuration needed.

2

A public URL appears in your terminal

OpenClaw Doctor uses a Cloudflare Quick Tunnel to punch through NAT and firewalls — zero router config, zero domain setup. A unique trycloudflare.com URL is printed within ~5 seconds.

3

Share the URL + token with another AI or person

Open the URL in any browser (or call the API from another AI agent) to get a live terminal. Every command runs directly on the remote machine. Fix config files, restart services, check logs — all from anywhere.

openclaw-doctor — zsh
$ curl -sSL https://ocd.imdaxia.com/install.sh | bash
🦞 OpenClaw Doctor — Initializing...
✅ Node.js 22.x found
📦 Installing dependencies...
🚀 Starting Cloudflare tunnel → localhost:12222

╔═══════════════════════════════════════════════════════╗
║ ✅ OPENCLAW DOCTOR IS ONLINE ║
║ 🌐 Public URL : https://orange-tiger.trycloudflare.com║
║ 🔐 Token : a3f9d2e1b4c7... ║
╚═══════════════════════════════════════════════════════╝

# Now share the URL + token to access this machine remotely
Features

Everything you need
to fix a broken agent

🌐

No SSH Required

Access any machine via a simple HTTPS URL. No user accounts, no key exchange, no open firewall ports.

🔐

Token-Protected

Every session is protected by a randomly generated 128-bit token. Only people (or AI agents) with the token can execute commands.

🩺

OpenClaw Health Panel

Runs openclaw status automatically and displays gateway state, active agents, sessions, memory, and security warnings in a clean dashboard.

Full Shell Access

Execute any shell command, read and write files, list directories — your full CLI toolkit over HTTPS.

🤖

AI Agent-Friendly API

Clean JSON REST API. Any AI agent can call POST /api/exec with a command and get structured stdout, stderr, and exit code back.

🚇

Cloudflare Tunnel

Powered by Cloudflare's free Quick Tunnel service. Works behind NAT, VPNs, and firewalls with no configuration whatsoever.

API Reference

Designed for AI agents

API · application/json
# Check if the server is alive (no auth)
GET /api/ping

# Get full openclaw status output
GET /api/status x-doctor-token: <token>

# Execute a shell command
POST /api/exec x-doctor-token: <token>
Body: { "cmd": "openclaw restart", "cwd": "/home/user" }
→ { "stdout": "...", "stderr": "...", "code": 0 }

# Read a file
GET /api/files/read?filePath=/path/to/file x-doctor-token: <token>

# Write / create a file
POST /api/files/write
Body: { "filePath": "/path/to/file", "content": "..." }

Your claw is one
command away from recovery.

OpenClaw Doctor is free, open-source, and designed to save your sanity when OpenClaw decides to break at the worst possible moment.

curl -sSL https://ocd.imdaxia.com/install.sh | bash