From d09958cd7503a13e1c81e6f0a6c9beca1d30b4c6 Mon Sep 17 00:00:00 2001 From: Virgil Date: Wed, 1 Apr 2026 22:41:20 +0000 Subject: [PATCH] feat(agentic): add status 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 7084856..664a4e5 100644 --- a/pkg/agentic/commands.go +++ b/pkg/agentic/commands.go @@ -60,6 +60,7 @@ func (s *PrepSubsystem) registerCommands(ctx context.Context) { 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("agentic: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("prompt/version", core.Command{Description: "Read the current prompt snapshot for a workspace", Action: s.cmdPromptVersion}) c.Command("agentic:prompt/version", core.Command{Description: "Read the current prompt snapshot for a workspace", Action: s.cmdPromptVersion}) diff --git a/pkg/agentic/commands_test.go b/pkg/agentic/commands_test.go index 49294a7..ebce9f4 100644 --- a/pkg/agentic/commands_test.go +++ b/pkg/agentic/commands_test.go @@ -1378,6 +1378,7 @@ func TestCommands_RegisterCommands_Good_AllRegistered(t *testing.T) { assert.Contains(t, cmds, "brain/forget") assert.Contains(t, cmds, "brain:forget") assert.Contains(t, cmds, "status") + assert.Contains(t, cmds, "agentic:status") assert.Contains(t, cmds, "prompt") assert.Contains(t, cmds, "prompt/version") assert.Contains(t, cmds, "extract")