From 7b77ef49f15d4f119aad8968dd683f17d47ba5ac Mon Sep 17 00:00:00 2001 From: Virgil Date: Thu, 2 Apr 2026 02:51:10 +0000 Subject: [PATCH] feat(agentic): add content generation command aliases Co-Authored-By: Virgil --- pkg/agentic/commands.go | 2 ++ pkg/agentic/commands_test.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkg/agentic/commands.go b/pkg/agentic/commands.go index 2768e3c..f6f11c3 100644 --- a/pkg/agentic/commands.go +++ b/pkg/agentic/commands.go @@ -36,6 +36,8 @@ func (s *PrepSubsystem) registerCommands(ctx context.Context) { c.Command("agentic:resume", core.Command{Description: "Resume a blocked or completed workspace", Action: s.cmdResume}) c.Command("generate", core.Command{Description: "Generate content from a prompt using the platform content pipeline", Action: s.cmdGenerate}) c.Command("agentic:generate", core.Command{Description: "Generate content from a prompt using the platform content pipeline", Action: s.cmdGenerate}) + 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("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}) diff --git a/pkg/agentic/commands_test.go b/pkg/agentic/commands_test.go index 7ed8297..c79bb6f 100644 --- a/pkg/agentic/commands_test.go +++ b/pkg/agentic/commands_test.go @@ -1455,6 +1455,8 @@ func TestCommands_RegisterCommands_Good_AllRegistered(t *testing.T) { assert.Contains(t, cmds, "agentic:prep-workspace") assert.Contains(t, cmds, "resume") assert.Contains(t, cmds, "agentic:resume") + assert.Contains(t, cmds, "content/generate") + assert.Contains(t, cmds, "agentic:content/generate") assert.Contains(t, cmds, "complete") assert.Contains(t, cmds, "scan") assert.Contains(t, cmds, "agentic:scan")