From 6001a002c1a159d03974057f4e9cf537f342bc16 Mon Sep 17 00:00:00 2001 From: Virgil Date: Thu, 2 Apr 2026 04:19:00 +0000 Subject: [PATCH] feat(agentic): add complete command alias Co-Authored-By: Virgil --- pkg/agentic/commands.go | 1 + pkg/agentic/commands_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg/agentic/commands.go b/pkg/agentic/commands.go index 250f303..43747b2 100644 --- a/pkg/agentic/commands.go +++ b/pkg/agentic/commands.go @@ -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}) diff --git a/pkg/agentic/commands_test.go b/pkg/agentic/commands_test.go index 5283f0a..fed2fa8 100644 --- a/pkg/agentic/commands_test.go +++ b/pkg/agentic/commands_test.go @@ -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")