Agent Dashboard Sync for Openclaw

A high-performance, no-LLM synchronization pipeline to monitor AI agent heartbeats and runtime status via Cloudflare KV and Worker APIs.

reed1898
v0.1.0
Mar 7, 2026
0
769
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install agent-dashboard-sync

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install agent-dashboard-sync using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Agent Dashboard Sync?

Agent Dashboard Sync is a specialized data-plane skill designed to decouple high-frequency state management from Git version control. By utilizing Openclaw Skills, this tool establishes a robust bridge between local agent nodes and a centralized monitoring dashboard. It leverages Cloudflare Workers and KV storage to provide real-time visibility into agent health, cron status, and runtime events without the latency or costs associated with LLM calls.

This skill is essential for developers managing multi-agent environments who require a scalable, secure, and lean infrastructure for fleet observability. It ensures that sensitive production state remains out of commits while providing a unified API for dashboard data ingestion and retrieval.

Agent Dashboard Sync Use Cases

  • Tracking real-time heartbeats and uptime across multiple distributed AI agents.
  • Offloading high-frequency status updates from Git history to edge-based KV storage.
  • Providing a secure, token-protected data source for centralized fleet management dashboards.
  • Monitoring automated cron job executions across various agent nodes via Openclaw Skills.

How Agent Dashboard Sync Works

  1. Deploy the Cloudflare Worker and initialize the KV namespace to serve as the centralized data plane.
  2. Configure the agent-side collector with unique identifiers and secure ingest tokens.
  3. Implement a localized cron job on each node to trigger the collector script at regular intervals (e.g., every 2 minutes).
  4. The collector gathers runtime metadata and heartbeats, pushing them to the Worker's ingest endpoint.
  5. The dashboard frontend queries the Worker's read API to visualize the current state of the entire fleet.

Agent Dashboard Sync Setup

To begin using Agent Dashboard Sync within your Openclaw Skills environment, follow these steps:

  1. Deploy the Cloudflare Worker by following the commands in references/worker-setup.md.
  2. Set up the KV namespace and store the INGEST_TOKEN and READ_TOKEN as secure environment secrets.
  3. Configure your local agent node by adding the required variables to your .env file, ensuring the mode is set to cloudflare.
  4. Install the collector cron job on your host machine:
*/2 * * * * cd <PROJECTS_ROOT>/collector && ./sync.sh
  1. Verify the connection by checking the /health and /fleet endpoints on your deployed Worker.

Agent Dashboard Sync Data Schema & Taxonomy

The skill organizes fleet data using a structured KV taxonomy to ensure fast lookups and metadata integrity.

Key Pattern Description
fleet:registry Global list of all registered agent IDs in the fleet.
fleet:heartbeat:<agent_id> Most recent activity timestamp for a specific agent.
fleet:cron:<agent_id> Execution status and history for scheduled agent tasks.
fleet:runtime:<agent_id> Specific runtime metadata and environment status.
fleet:events:recent A log of the most recent significant fleet-wide events.
fleet:updated_at The master timestamp for the last global data sync.

Agent Dashboard Sync Advanced Features

  • No-LLM Pipeline: Operates as a pure data transfer layer to minimize latency and eliminate token costs.
  • Git-Clean State: Prevents repository bloat by keeping ephemeral runtime data in Cloudflare KV.
  • Token-Based Security: Implements strict INGEST_TOKEN and READ_TOKEN protocols to protect fleet data.
  • Scalable Edge Architecture: Supports massive fleets by leveraging Cloudflare's global network for data ingestion.
  • Native Integration: Designed to work seamlessly with the broader ecosystem of Openclaw Skills for agent management.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*