Add batch commands to PortTracker CLI and migrate batch tables into porting.db

Implements batch list/show/ready/next/start/complete commands with dependency
validation, migrates 42 implementation batches (2377 features, 2087 tests) from
porting_batches.db into the live tracking database, and documents the batch
workflow in AGENTS.md.
This commit is contained in:
Joseph Doherty
2026-02-27 13:02:43 -05:00
parent fe3fd7c74d
commit c5e0416793
7 changed files with 566 additions and 1 deletions

View File

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