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
+19
View File
@@ -1,4 +1,5 @@
using Nexus.Api.Data;
using Nexus.Api.Models;
namespace Nexus.Api.Repositories;
@@ -14,4 +15,22 @@ public interface ITaskRepository
Task<int> CountAsync(CancellationToken ct = default);
Task<int> CountByStateAsync(string state, CancellationToken ct = default);
Task<WorkTask?> GetLastBlockedAsync(CancellationToken ct = default);
Task<TaskBoardQueryPage> GetBoardPageAsync(
int doneLimit,
DateTimeOffset? doneBeforeUpdatedAt,
Guid? doneBeforeId,
CancellationToken ct = default);
Task<TaskBoardCardDto?> GetBoardCardAsync(
Guid id,
CancellationToken ct = default);
}
public sealed record TaskBoardQueryPage(
IReadOnlyList<TaskBoardCardDto> ActiveTasks,
IReadOnlyList<TaskBoardCardDto> DoneTasks,
bool HasMoreDone,
TaskBoardRevisionPoint? Revision);
public sealed record TaskBoardRevisionPoint(
DateTimeOffset UpdatedAt,
Guid Id);