diff --git a/pkg/agentic/commands.go b/pkg/agentic/commands.go index 656f38e..bb42017 100644 --- a/pkg/agentic/commands.go +++ b/pkg/agentic/commands.go @@ -49,6 +49,7 @@ func (s *PrepSubsystem) registerCommands(ctx context.Context) { c.Command("pr-manage", core.Command{Description: "Manage open PRs (merge, close, review)", Action: s.cmdPRManage}) c.Command("agentic:pr-manage", core.Command{Description: "Manage open PRs (merge, close, review)", Action: s.cmdPRManage}) c.Command("review-queue", core.Command{Description: "Process the CodeRabbit review queue", Action: s.cmdReviewQueue}) + c.Command("agentic:review-queue", core.Command{Description: "Process the CodeRabbit review queue", Action: s.cmdReviewQueue}) c.Command("status", core.Command{Description: "List agent workspace statuses", Action: s.cmdStatus}) c.Command("prompt", core.Command{Description: "Build and display an agent prompt for a repo", Action: s.cmdPrompt}) c.Command("extract", core.Command{Description: "Extract a workspace template to a directory", Action: s.cmdExtract}) diff --git a/pkg/agentic/commands_test.go b/pkg/agentic/commands_test.go index 1f89202..afc2be5 100644 --- a/pkg/agentic/commands_test.go +++ b/pkg/agentic/commands_test.go @@ -1302,6 +1302,7 @@ func TestCommands_RegisterCommands_Good_AllRegistered(t *testing.T) { assert.Contains(t, cmds, "pr-manage") assert.Contains(t, cmds, "agentic:pr-manage") assert.Contains(t, cmds, "review-queue") + assert.Contains(t, cmds, "agentic:review-queue") assert.Contains(t, cmds, "task") assert.Contains(t, cmds, "task/update") assert.Contains(t, cmds, "task/toggle") diff --git a/pkg/agentic/prep_test.go b/pkg/agentic/prep_test.go index 01cea6a..d363e4e 100644 --- a/pkg/agentic/prep_test.go +++ b/pkg/agentic/prep_test.go @@ -667,6 +667,7 @@ func TestPrep_OnStartup_Good_RegistersGenerateCommand(t *testing.T) { assert.Contains(t, c.Commands(), "session/resume") assert.Contains(t, c.Commands(), "session/replay") assert.Contains(t, c.Commands(), "review-queue") + assert.Contains(t, c.Commands(), "agentic:review-queue") assert.Contains(t, c.Commands(), "task") assert.Contains(t, c.Commands(), "task/create") assert.Contains(t, c.Commands(), "task/update")