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
+8 -4
View File
@@ -140,9 +140,12 @@ public sealed class TaskBridgeService(
await activityRepo.AddAsync(ev, ct);
// Trigger live update so the board refreshes
var board = await taskService.GetBoardAsync(ct);
liveUpdateService.Publish("tasks.board.snapshot", board);
// Keep the legacy dashboard stream as an invalidation adapter without
// rebuilding every task and activity row in this mutation request.
liveUpdateService.Publish(
"tasks.board.snapshot",
new { taskId },
"board");
return Success(ev);
}
@@ -260,5 +263,6 @@ public sealed class TaskBridgeService(
private static DashboardTaskDto MapToDto(WorkTask t) => new(
t.Id, t.Title, t.Detail, t.Source, t.State, t.Priority, t.AssignedTo,
t.ParentTaskId, t.DueDate, t.CreatedAt, t.UpdatedAt,
t.IsAgentTask, t.ExpectedFrom);
t.IsAgentTask, t.ExpectedFrom,
ProjectId: t.ProjectId);
}