Complete batch 012 (golden set diff) and 013 (advisory chat), fix build errors

Sprints completed:
- SPRINT_20260110_012_* (golden set diff layer - 10 sprints)
- SPRINT_20260110_013_* (advisory chat - 4 sprints)

Build fixes applied:
- Fix namespace conflicts with Microsoft.Extensions.Options.Options.Create
- Fix VexDecisionReachabilityIntegrationTests API drift (major rewrite)
- Fix VexSchemaValidationTests FluentAssertions method name
- Fix FixChainGateIntegrationTests ambiguous type references
- Fix AdvisoryAI test files required properties and namespace aliases
- Add stub types for CveMappingController (ICveSymbolMappingService)
- Fix VerdictBuilderService static context issue

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
master
2026-01-11 10:09:07 +02:00
parent a3b2f30a11
commit 7f7eb8b228
232 changed files with 58979 additions and 91 deletions

View File

@@ -425,15 +425,15 @@ public sealed class RuntimeFactsController : ControllerBase
CallDepth = e.CallDepth,
DurationMicroseconds = e.DurationMicroseconds,
Context = e.Context?.ToImmutableDictionary() ?? ImmutableDictionary<string, string>.Empty,
});
}).ToList();
var result = await _factsIngestService.IngestBatchAsync(agentId, events, ct);
var acceptedCount = await _factsIngestService.IngestAsync(agentId, events, ct);
return Ok(new FactsIngestApiResponse
{
AcceptedCount = result.AcceptedCount,
RejectedCount = result.RejectedCount,
AggregatedSymbols = result.AggregatedSymbols,
AcceptedCount = acceptedCount,
RejectedCount = request.Events.Count - acceptedCount,
AggregatedSymbols = acceptedCount,
});
}
catch (Exception ex)
@@ -641,7 +641,7 @@ public sealed record RuntimeEventApiDto
public required DateTimeOffset Timestamp { get; init; }
/// <summary>Event kind.</summary>
public RuntimeEventKind Kind { get; init; } = RuntimeEventKind.Sample;
public RuntimeEventKind Kind { get; init; } = RuntimeEventKind.MethodSample;
/// <summary>Container ID.</summary>
public string? ContainerId { get; init; }

View File

@@ -18,5 +18,6 @@
<ProjectReference Include="../../Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj" />
<ProjectReference Include="../../Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj" />
<ProjectReference Include="../../Router/__Libraries/StellaOps.Messaging/StellaOps.Messaging.csproj" />
<ProjectReference Include="../StellaOps.Signals.RuntimeAgent/StellaOps.Signals.RuntimeAgent.csproj" />
</ItemGroup>
</Project>