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
+13 -4
View File
@@ -6,17 +6,26 @@ public sealed record IncidentSummary(
string? Date,
string Severity,
string Excerpt,
long Size);
long Size,
string SourceAgentId,
string WorkspacePath);
public sealed record IncidentDetail(
string Name,
string Title,
string? Date,
string Content,
long Size);
long Size,
string SourceAgentId,
string WorkspacePath);
public interface IIncidentService
{
Task<IReadOnlyList<IncidentSummary>> GetAllAsync();
Task<IncidentDetail?> GetByNameAsync(string name);
Task<IReadOnlyList<IncidentSummary>> GetAllAsync(
string agentId = "iris",
CancellationToken cancellationToken = default);
Task<IncidentDetail?> GetByNameAsync(
string name,
string agentId = "iris",
CancellationToken cancellationToken = default);
}