feat: ship agent-first mission control v0.2.57
CI - Build & Test / Backend (.NET) (push) Successful in 42s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 2m46s
CI - Build & Test / Security Check (push) Successful in 3s
CI - Build & Test / Deploy Nexus (push) Successful in 56s

This commit is contained in:
AzuTear
2026-07-31 22:39:47 +02:00
parent 3bc7622977
commit f5552218bc
535 changed files with 95242 additions and 8791 deletions
+16 -5
View File
@@ -9,7 +9,7 @@ public sealed record DashboardAgentInfo(
string? CurrentTask,
string? Description,
string[] Tags,
int Progress = 0,
double? Progress = null,
int Workload = 0,
string? Goal = null,
string RoleBadge = "badge-slate",
@@ -18,7 +18,10 @@ public sealed record DashboardAgentInfo(
string? StatusDetail = null,
string? Elapsed = null,
string? Think = null,
string? Next = null
string? Next = null,
long? TotalTokens = null,
decimal? CostUsd = null,
DateTimeOffset? TelemetryAt = null
);
public sealed record MessageEntry(
@@ -99,7 +102,9 @@ public sealed record DashboardTaskDto(
List<DashboardTaskDto>? ChildTasks = null,
int ChildTaskCount = 0,
int OpenChildTaskCount = 0,
bool HasVisibleDelegation = false
bool HasVisibleDelegation = false,
Guid? ProjectId = null,
OperationResultDto? Operation = null
);
public sealed record CreateDashboardTaskRequest(
@@ -175,7 +180,8 @@ public sealed record ResetStaleRequest(
);
public sealed record ResetStaleResponse(
int ResetCount
int ResetCount,
OperationResultDto? Operation = null
);
public sealed record PostActivityRequest(
@@ -201,9 +207,14 @@ public sealed record AgentWorkflowOverview(
public sealed record NotificationDto(
Guid Id, string Type, string Title, string? Message,
string ForUser, Guid? TaskId, bool IsRead, DateTimeOffset CreatedAt
string ForUser, Guid? TaskId, bool IsRead, DateTimeOffset CreatedAt,
OperationResultDto? Operation = null
);
public sealed record NotificationReadAllResultDto(
int Marked,
OperationResultDto Operation);
public sealed record UnreadCountDto(int Count);
public sealed record LiveUpdateEnvelope(