clawhq-dashboardReports AI agent status to ClawHQ dashboard via API on each heartbeat or manual trigger for real-time monitoring.
Install via ClawdBot CLI:
clawdbot install zachmael/clawhq-dashboardReport agent status, heartbeats, and task completions to your ClawHQ dashboard.
Environment variable must be set:
CLAWHQ_API_KEY — Your ClawHQ API key (generate in Settings → API Keys)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>"}'
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"}'
Post a heartbeat to keep the dashboard current. Use the same commands above with "status":"heartbeat".
with the agent's name (e.g. "Eros", "Atlas").Generated Feb 28, 2026
A managed service provider uses this skill to monitor the status of multiple AI agents deployed across client sites. When an agent starts troubleshooting a network issue, it reports 'working' with the task summary, allowing supervisors to track active engagements in real-time on the ClawHQ dashboard. This ensures efficient resource allocation and quick response to escalations.
An online retailer integrates this skill with AI agents handling customer inquiries via chat. Each agent reports 'working' when processing returns or 'idle' during low traffic, providing managers visibility into agent workload and performance trends. This helps optimize staffing and improve customer satisfaction metrics.
A clinic employs AI agents to manage appointment bookings and reminders. The skill reports agent status changes, such as 'working' during scheduling tasks, enabling administrators to monitor system uptime and agent health from a central dashboard. This supports compliance with service-level agreements and reduces manual oversight.
A fintech company uses AI agents to analyze market data and generate reports. Agents report 'heartbeat' statuses periodically, ensuring the dashboard reflects active processing and preventing downtime alerts. This allows teams to track analysis progress and maintain data pipeline reliability.
An online learning platform deploys AI agents to review user-generated content for appropriateness. The skill reports 'working' during moderation tasks and 'idle' when no content is queued, helping moderators oversee agent efficiency and flag potential issues in real-time through the dashboard.
ClawHQ offers a dashboard service with tiered subscription plans based on the number of agents monitored and features like historical data access. Revenue is generated through monthly or annual fees, appealing to businesses needing scalable agent oversight without upfront infrastructure costs.
This model charges customers based on the volume of API calls or data points reported by agents, such as per heartbeat or status update. It suits organizations with fluctuating agent activity, allowing cost control while providing flexible monitoring capabilities.
Targeting large enterprises, this model offers custom integrations, advanced analytics, and dedicated support through one-time or annual licensing fees. Revenue is driven by tailored solutions that meet specific workflow needs, such as compliance reporting or multi-team dashboards.
💬 Integration Tip
Ensure the CLAWHQ_API_KEY environment variable is securely set and wrap API calls in error handling to prevent agent disruption, as the skill is designed for simple, fire-and-forget reporting.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection