← Back to Skills Marketplace
zachmael

OpenClaw Dashboard Connector - ClawHQ

by zachmael · GitHub ↗ · v1.0.1
cross-platform ⚠ suspicious
698
Downloads
0
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install clawhq-dashboard
Description
Reports AI agent status to ClawHQ dashboard via API on each heartbeat or manual trigger for real-time monitoring.
README (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.
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawhq-dashboard
  3. After installation, invoke the skill by name or use /clawhq-dashboard
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug clawhq-dashboard
Version 1.0.1
License
All-time Installs 1
Active Installs 1
Total Versions 2
Frequently Asked Questions

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.

💬 Comments