diff --git a/pkg/agentic/commands_plan.go b/pkg/agentic/commands_plan.go index cf9d1ff..d8a97b2 100644 --- a/pkg/agentic/commands_plan.go +++ b/pkg/agentic/commands_plan.go @@ -13,6 +13,8 @@ func (s *PrepSubsystem) registerPlanCommands() { c.Command("plan/create", core.Command{Description: "Create an implementation plan or create one from a template", Action: s.cmdPlanCreate}) c.Command("plan/from-issue", core.Command{Description: "Create an implementation plan from a tracked issue", Action: s.cmdPlanFromIssue}) c.Command("plan/list", core.Command{Description: "List implementation plans", Action: s.cmdPlanList}) + c.Command("agentic:plan/get", core.Command{Description: "Read an implementation plan", Action: s.cmdPlanShow}) + c.Command("plan/get", core.Command{Description: "Read an implementation plan", Action: s.cmdPlanShow}) c.Command("agentic:plan/read", core.Command{Description: "Read an implementation plan", Action: s.cmdPlanShow}) c.Command("plan/read", core.Command{Description: "Read an implementation plan", Action: s.cmdPlanShow}) c.Command("plan/show", core.Command{Description: "Show an implementation plan", Action: s.cmdPlanShow}) diff --git a/pkg/agentic/commands_plan_test.go b/pkg/agentic/commands_plan_test.go index 86d75b9..8cd0378 100644 --- a/pkg/agentic/commands_plan_test.go +++ b/pkg/agentic/commands_plan_test.go @@ -134,6 +134,8 @@ func TestCommandsPlan_RegisterPlanCommands_Good_SpecAliasRegistered(t *testing.T assert.Contains(t, c.Commands(), "agentic:plan") assert.Contains(t, c.Commands(), "plan") + assert.Contains(t, c.Commands(), "agentic:plan/get") + assert.Contains(t, c.Commands(), "plan/get") assert.Contains(t, c.Commands(), "agentic:plan/read") assert.Contains(t, c.Commands(), "plan/read") assert.Contains(t, c.Commands(), "plan/show")