feat(agentic): add complete command alias

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Virgil 2026-04-02 04:19:00 +00:00
parent ff24898cd4
commit 6001a002c1
2 changed files with 2 additions and 0 deletions

View file

@ -44,6 +44,7 @@ func (s *PrepSubsystem) registerCommands(ctx context.Context) {
c.Command("content/generate", core.Command{Description: "Generate content from a prompt using the platform content pipeline", Action: s.cmdGenerate})
c.Command("agentic:content/generate", core.Command{Description: "Generate content from a prompt using the platform content pipeline", Action: s.cmdGenerate})
c.Command("complete", core.Command{Description: "Run the completion pipeline (QA → PR → Verify → Commit → Ingest → Poke)", Action: s.cmdComplete})
c.Command("agentic:complete", core.Command{Description: "Run the completion pipeline (QA → PR → Verify → Commit → Ingest → Poke)", Action: s.cmdComplete})
c.Command("scan", core.Command{Description: "Scan Forge repos for actionable issues", Action: s.cmdScan})
c.Command("agentic:scan", core.Command{Description: "Scan Forge repos for actionable issues", Action: s.cmdScan})
c.Command("mirror", core.Command{Description: "Mirror Forge repos to GitHub", Action: s.cmdMirror})

View file

@ -1480,6 +1480,7 @@ func TestCommands_RegisterCommands_Good_AllRegistered(t *testing.T) {
assert.Contains(t, cmds, "content/generate")
assert.Contains(t, cmds, "agentic:content/generate")
assert.Contains(t, cmds, "complete")
assert.Contains(t, cmds, "agentic:complete")
assert.Contains(t, cmds, "scan")
assert.Contains(t, cmds, "agentic:scan")
assert.Contains(t, cmds, "mirror")