@@ -30,12 +45,16 @@ export function AgentsClient({ agents }: { agents: FleetAgent[] }) {
Configured Agent Runtimes
- OpenClaw swarm members and ZeroClaw host runtimes are shown from the deployed fleet model.
+ OpenClaw swarm members and ZeroClaw host runtimes from the tracked fleet model with heartbeat and dispatch overlays.
- setQuery(event.target.value)} />
-
+
+
+ Dispatch History
+
+ Every dispatch request, success, failure, and acknowledgement recorded by the control plane.
+
+
+
+ {events.map((event) => (
+
+
+
+ Unified Task Intake
+
+ Create typed tasks, apply dispatch templates, and route work to OpenClaw or ZeroClaw.
+
+
+
+
+
+
+
+
+
+ Failure Queue
+
+ Failed dispatches stay visible until retried or completed manually.
+
+
+
+ {failedTasks.length === 0 ? (
+
No failed dispatches.
+ ) : (
+ failedTasks.map((task) => (
+
+
+
{task.title}
+ {task.dispatch_state}
+
+
{task.last_error || "No error text captured."}
+
+
+ ))
+ )}
+
+
+
+
- Unified Task Intake
+ Recent Dispatch Activity
- Assign work to OpenClaw swarm agents or ZeroClaw host runtimes from a single board.
+ Latest control-plane events across both families.
-
-