Created by Atlas with help from Zen 🦞⚡
Brothers' Resource & Intelligence Dashboard for General Execution
A web-based control board for the OpenClaw AI gateway.
✨ No database required — all data stored locally in JSON files
🔒 Local-first architecture — works entirely offline
🌐 Accessible via Tailscale — access from anywhere securely
📦 Zero dependencies — beyond OpenClaw itself
- 📊 Dashboard — Real-time overview of gateway status, agents, and tasks
- 📋 Kanban Board — Drag-and-drop task management for agents
- 📅 Calendar + Timeline — Visualize scheduled cron jobs
- 📁 File Explorer — Browse
~/.openclawwith image viewer, JSONL inspector, and inline editor - 📊 Activity Feed — Live stream of agent runs, tool calls, and messages
- 🤖 Agent Management — Monitor agent sessions, models, and workspaces
- 🛡️ Security Panel — Tailscale status, SSH logs, auth events, threat level
- 🔍 Global Search — Full-text search across workspace via QMD
- 🎨 Themes — Multiple themes (OLED, Light, Nord, Dracula, Matrix)
- 🥚 Easter Eggs — Konami code, hidden features!
# Clone
git clone https://github.com/ZenDeveloper7/openclaw-bridge.git
cd openclaw-bridge
# Set up Python environment
python3 -m venv backend/.venv
source backend/.venv/bin/activate
pip install -r requirements.txt
# Run
uvicorn backend.main:app --host 0.0.0.0 --port 8787Open http://localhost:8787 in your browser.
All configuration is via environment variables:
| Variable | Default | Description |
|---|---|---|
OPENCLAW_DIR |
~/.openclaw |
Path to your OpenClaw installation directory |
QMD_PATH |
auto-detect via PATH |
Path to qmd binary for global search |
DASHBOARD_HOST |
0.0.0.0 |
Host to bind the server to |
DASHBOARD_PORT |
8787 |
Port to run the dashboard on |
Example:
OPENCLAW_DIR=/opt/openclaw DASHBOARD_PORT=9000 uvicorn backend.main:app --host 0.0.0.0 --port 9000- Backend: Python / FastAPI / Uvicorn
- Frontend: Vanilla JavaScript — no build step, no framework, no node_modules
- Search: QMD (optional, for global search)
├── backend/
│ └── main.py # FastAPI application
├── frontend/
│ ├── index.html # Single-page app shell
│ ├── dist/ # Served static files
│ └── src/
│ ├── app.js # All frontend logic
│ └── style.css # All styles
├── requirements.txt
└── README.md
MIT © 2026 Zen & Atlas