feat(dashboard): Implement system health check and enhance UI for agent management

This commit is contained in:
Abhimanyu Saharan
2026-02-04 23:43:40 +05:30
parent b6f31fe6ea
commit 8452dc110e
15 changed files with 727 additions and 448 deletions

View File

@@ -9,7 +9,10 @@ type Task = {
id: string;
title: string;
status: string;
priority: string;
description?: string | null;
due_at?: string | null;
assigned_agent_id?: string | null;
assignee?: string;
};