audit work, fixed StellaOps.sln warnings/errors, fixed tests, sprints work, new advisories

This commit is contained in:
master
2026-01-07 18:49:59 +02:00
parent 04ec098046
commit 608a7f85c0
866 changed files with 56323 additions and 6231 deletions

View File

@@ -124,6 +124,10 @@ internal static class CommandFactory
// Sprint: SPRINT_20260106_003_003_EVIDENCE_export_bundle - Evidence bundle export and verify
root.Add(EvidenceCommandGroup.BuildEvidenceCommand(services, options, verboseOption, cancellationToken));
// Sprint: SPRINT_20260105_002_004_CLI - Facet seal and drift commands
root.Add(SealCommandGroup.BuildSealCommand(services, verboseOption, cancellationToken));
root.Add(DriftCommandGroup.BuildDriftCommand(services, verboseOption, cancellationToken));
// Add scan graph subcommand to existing scan command
var scanCommand = root.Children.OfType<Command>().FirstOrDefault(c => c.Name == "scan");
if (scanCommand is not null)
@@ -4632,6 +4636,9 @@ internal static class CommandFactory
vex.Add(explain);
// Sprint: SPRINT_20260105_002_004_CLI - VEX gen from drift command
vex.Add(VexGenCommandGroup.BuildVexGenCommand(services, verboseOption, cancellationToken));
return vex;
}