/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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clawhq-dashboard - 安装完成后,直接呼叫该 Skill 的名称或使用
/clawhq-dashboard触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
OpenClaw Dashboard Connector - ClawHQ 是什么?
Reports AI agent status to ClawHQ dashboard via API on each heartbeat or manual trigger for real-time monitoring. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 698 次。
如何安装 OpenClaw Dashboard Connector - ClawHQ?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawhq-dashboard」即可一键安装,无需额外配置。
OpenClaw Dashboard Connector - ClawHQ 是免费的吗?
是的,OpenClaw Dashboard Connector - ClawHQ 完全免费(开源免费),可自由下载、安装和使用。
OpenClaw Dashboard Connector - ClawHQ 支持哪些平台?
OpenClaw Dashboard Connector - ClawHQ 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 OpenClaw Dashboard Connector - ClawHQ?
由 zachmael(@zachmael)开发并维护,当前版本 v1.0.1。