/install clawhq-dashboard
ClawHQ Dashboard Connector
Report agent status, heartbeats, and task completions to your ClawHQ dashboard.
Requirements
Environment variable must be set:
CLAWHQ_API_KEY— Your ClawHQ API key (generate in Settings → API Keys)
Behavior
On Session Start
Report status "working" with the current task:
Windows (PowerShell):
$headers = @{ "Authorization" = "Bearer $env:CLAWHQ_API_KEY"; "Content-Type" = "application/json" }
$body = @{ agent = "\x3Cagent_name>"; status = "working"; task = "\x3Ccurrent task summary>" } | ConvertTo-Json
Invoke-RestMethod -Uri "https://app.clawhq.co/api/agents/report" -Method Post -Headers $headers -Body $body
Mac/Linux (curl):
curl -s -X POST "https://app.clawhq.co/api/agents/report" \
-H "Authorization: Bearer $CLAWHQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{"agent":"\x3Cagent_name>","status":"working","task":"\x3Ccurrent task summary>"}'
On Session End
Report status "idle":
Windows:
$headers = @{ "Authorization" = "Bearer $env:CLAWHQ_API_KEY"; "Content-Type" = "application/json" }
$body = @{ agent = "\x3Cagent_name>"; status = "idle" } | ConvertTo-Json
Invoke-RestMethod -Uri "https://app.clawhq.co/api/agents/report" -Method Post -Headers $headers -Body $body
Mac/Linux:
curl -s -X POST "https://app.clawhq.co/api/agents/report" \
-H "Authorization: Bearer $CLAWHQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{"agent":"\x3Cagent_name>","status":"idle"}'
On Heartbeat
Post a heartbeat to keep the dashboard current. Use the same commands above with "status":"heartbeat".
Notes
- All calls should be fire-and-forget — wrap in try/catch so failures never block the agent.
- Replace
\x3Cagent_name>with the agent's name (e.g. "Eros", "Atlas"). - The API auto-creates agents on first report — no setup needed in the dashboard.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install clawhq-dashboard - After installation, invoke the skill by name or use
/clawhq-dashboard - Provide required inputs per the skill's parameter spec and get structured output
What is OpenClaw Dashboard Connector - ClawHQ?
Reports AI agent status to ClawHQ dashboard via API on each heartbeat or manual trigger for real-time monitoring. It is an AI Agent Skill for Claude Code / OpenClaw, with 698 downloads so far.
How do I install OpenClaw Dashboard Connector - ClawHQ?
Run "/install clawhq-dashboard" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is OpenClaw Dashboard Connector - ClawHQ free?
Yes, OpenClaw Dashboard Connector - ClawHQ is completely free (open-source). You can download, install and use it at no cost.
Which platforms does OpenClaw Dashboard Connector - ClawHQ support?
OpenClaw Dashboard Connector - ClawHQ is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created OpenClaw Dashboard Connector - ClawHQ?
It is built and maintained by zachmael (@zachmael); the current version is v1.0.1.