Management UI for the OpenClaw agent runtime.
ClawOps connects to an OpenClaw Gateway over WebSocket and gives you a single pane of glass to monitor and manage your autonomous agents, tasks, budgets, and activity.
- Agent Registry — View, create, and manage agents with hierarchy visualisation
- Project Board — Kanban-style board grouped by agent, with drag-and-drop task cards
- Task Engine — Reusable task templates with configurable parameters
- Activity Feed — Real-time event stream from all connected agents
- Analytics — Spend tracking, quality scores, budget alerts, and per-agent drill-down
- Settings — Gateway connection, installed skills (via ClaHub), appearance theming, and notification preferences
git clone https://github.com/jakzilla/clawops.git
cd clawops
pnpm install
pnpm devOpen http://localhost:5173. You'll see the connect screen — enter your OpenClaw Gateway URL to get started.
ClawOps requires a running OpenClaw Gateway to populate with data. Without one, only the connect/setup screen is shown.
# Install OpenClaw
curl -fsSL https://openclaw.ai/install.sh | bash
# Start the gateway
openclaw onboard --install-daemon
openclaw gateway --port 18789Then enter http://127.0.0.1:18789 in the ClawOps connect screen.
- React 19 + TypeScript
- Vite 8
- Tailwind CSS 4
- React Router 7
- Lucide Icons
ClawOps is a connection-gated UI. When not connected to a Gateway, only the connect/setup screen is shown. Once connected, the full management interface populates with live data from the Gateway's WebSocket stream.
All data flows from the OpenClaw Gateway — no dummy data is bundled. Skills are managed via the ClaHub registry (clawhub install <owner/slug>).
Private — all rights reserved.