← 返回 Skills 市场
zachmael

OpenClaw Dashboard Connector - ClawHQ

作者 zachmael · GitHub ↗ · v1.0.1
cross-platform ⚠ suspicious
698
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install clawhq-dashboard
功能描述
Reports AI agent status to ClawHQ dashboard via API on each heartbeat or manual trigger for real-time monitoring.
使用说明 (SKILL.md)

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.
安全使用建议
What to consider before installing: 1) This skill will send your agent name, status, heartbeat timestamps, and the agent's "current task" text to https://app.clawhq.co using an API key. Only install if you trust that service. 2) Do not include secrets or sensitive PII in task descriptions — those will be transmitted. 3) The package.json and SKILL.md require CLAWHQ_API_KEY but the registry listing omitted it and other metadata (homepage/version) is inconsistent; verify the source (check the GitHub repo and the app.clawhq.co site) before providing an API key. 4) Consider testing with a throwaway API key and review network traffic or API responses. 5) If you have any doubt about provenance or data handling policies, avoid installing or contact ClawHQ to confirm the package and API behavior.
功能分析
Type: OpenClaw Skill Name: clawhq-dashboard Version: 1.0.1 The skill bundle is designed to report agent status, heartbeats, and task completions to the ClawHQ dashboard at `https://app.clawhq.co`. All instructions in `SKILL.md` and `setup.md` involve making HTTP POST requests to this legitimate domain, using an API key (`CLAWHQ_API_KEY`) retrieved from environment variables for authentication. There is no evidence of malicious intent, unauthorized data exfiltration, obfuscation, or prompt injection attempts to subvert the agent's behavior beyond its stated purpose. All actions are transparent and align with the functionality of a monitoring dashboard connector.
能力评估
Purpose & Capability
The SKILL.md and package.json both require a CLAWHQ_API_KEY and describe posting agent status to https://app.clawhq.co — that is coherent with the stated purpose. However the registry metadata provided with this evaluation listed no required env vars and no homepage while package.json and README reference a homepage and repository. There is also a package.json version (1.2.0) that doesn't match the registry version (1.0.1). These metadata mismatches reduce trust in provenance.
Instruction Scope
The runtime instructions are narrow and explicit: POST JSON with agent name, status, and current task summary to https://app.clawhq.co/api/agents/report using the CLAWHQ_API_KEY. The instructions do not request arbitrary file reads or other credentials. However they do instruct including the agent's current task description in reports — that may contain sensitive user data and will be transmitted off-host to a third-party service.
Install Mechanism
Instruction-only skill with no install spec and no code files that would be executed on install. This is low-risk from an installation/execution point of view.
Credentials
The only secret required by the instructions is CLAWHQ_API_KEY, which is proportional to the claimed functionality. But the registry metadata provided to the evaluator omitted this required env var, creating an inconsistency. Also consider that the API key grants the remote service the ability to accept reports tied to your agents — if the key is leaked or misused it could allow impersonation or data exposure.
Persistence & Privilege
The skill does not request permanent presence (always:false), does not install background agents, and does not modify other skills or system settings. It is user-invocable and can be invoked autonomously by the agent (normal default).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawhq-dashboard
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawhq-dashboard 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- security updates
v1.0.0
What it does The ClawHQ Dashboard Connector makes your OpenClaw agents automatically report their activity to ClawHQ. No code changes needed — install the skill, set one env var, and every agent starts showing up on your dashboard in real time. Features -Live agent status — See which agents are working, idle, or completed at a glance -Heartbeat monitoring — Track agent health with automatic heartbeat timestamps -Task tracking — View what each agent is currently working on -Cross-platform — Works on Windows (PowerShell) and Mac/Linux (Bash) -Non-blocking — All reporting is fire-and-forget; never slows down your agents -Zero dependencies — Uses built-in curl or Invoke-RestMethod Install Sign up at app.clawhq.co (free) Go to Settings → API Keys → Generate Set env var: CLAWHQ_API_KEY Install the skill Agents start reporting automatically
元数据
Slug clawhq-dashboard
版本 1.0.1
许可证
累计安装 1
当前安装数 1
历史版本数 2
常见问题

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。

💬 留言讨论