feat: add audit command — orchestrates feature status classification

This commit is contained in:
Joseph Doherty
2026-02-27 05:18:28 -05:00
parent 0436e08fc1
commit 26d6d7fe68
4 changed files with 253 additions and 1 deletions

View File

@@ -39,6 +39,7 @@ rootCommand.Add(LibraryCommands.Create(dbOption, schemaOption));
rootCommand.Add(DependencyCommands.Create(dbOption, schemaOption));
rootCommand.Add(ReportCommands.Create(dbOption, schemaOption));
rootCommand.Add(PhaseCommands.Create(dbOption, schemaOption));
rootCommand.Add(AuditCommand.Create(dbOption));
var parseResult = rootCommand.Parse(args);
return await parseResult.InvokeAsync();