OpenClaw Dashboard Connector - ClawHQ

# ClawHQ Dashboard Connector

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "OpenClaw Dashboard Connector - ClawHQ" with this command: npx skills add zachmael/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 = "<agent_name>"; status = "working"; task = "<current 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":"<agent_name>","status":"working","task":"<current task summary>"}'

On Session End

Report status "idle":

Windows:

$headers = @{ "Authorization" = "Bearer $env:CLAWHQ_API_KEY"; "Content-Type" = "application/json" }
$body = @{ agent = "<agent_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":"<agent_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 <agent_name> with the agent's name (e.g. "Eros", "Atlas").
  • The API auto-creates agents on first report — no setup needed in the dashboard.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Openclaw Health Guardian

Monitors OpenClaw Gateway on macOS, auto-restarts on failure with 180s cooldown and max 5 restarts/hour to prevent restart loops.

Registry SourceRecently Updated
3440Profile unavailable
Automation

Uptime Monitoring with Encrypted Energy - Know the second your OpenClaw agent goes silent

Know the second your OpenClaw agent goes silent. Free hosted heartbeat monitor — every-minute pings, public status page, and email alerts when pings stop.

Registry SourceRecently Updated
910Profile unavailable
Automation

Multi-Agent Status

Cross-agent health monitoring for multi-host OpenClaw deployments. Each agent pushes structured status reports (JSON) to a central location. A PM/monitoring...

Registry SourceRecently Updated
1530Profile unavailable
Automation

Agent Health Diagnostics

Diagnose and fix the 4 most common OpenClaw agent failures — heartbeat spam, API rate limit cascades, channel death loops, and memory/embedding errors. Battl...

Registry SourceRecently Updated
1140Profile unavailable
OpenClaw Dashboard Connector - ClawHQ | V50.AI