From 035cd00f4b7a9af8164f13063062d4534411835c Mon Sep 17 00:00:00 2001 From: lmiranda Date: Sun, 8 Feb 2026 22:57:42 -0500 Subject: [PATCH] fix(projman): align command names with git-flow pattern All projman command names now start with 'projman' prefix to match git-flow behavior and avoid forced plugin namespace in autocomplete. Before: /projman:sprint-plan, /projman:project-status After: /projman sprint plan, /projman project status This matches git-flow which shows /gitflow commit, /gitflow status. Co-Authored-By: Claude Sonnet 4.5 --- .claude/settings.json | 3 +++ plugins/projman/commands/adr-create.md | 1 + plugins/projman/commands/adr-list.md | 1 + plugins/projman/commands/adr-supersede.md | 1 + plugins/projman/commands/adr-update.md | 1 + plugins/projman/commands/adr.md | 4 ++-- plugins/projman/commands/labels-sync.md | 2 +- plugins/projman/commands/labels.md | 4 ++-- plugins/projman/commands/project-close.md | 1 + plugins/projman/commands/project-initiation.md | 1 + plugins/projman/commands/project-plan.md | 1 + plugins/projman/commands/project-status.md | 1 + plugins/projman/commands/project.md | 4 ++-- plugins/projman/commands/rfc.md | 2 +- plugins/projman/commands/sprint-close.md | 2 +- plugins/projman/commands/sprint-plan.md | 2 +- plugins/projman/commands/sprint-review.md | 2 +- plugins/projman/commands/sprint-start.md | 2 +- plugins/projman/commands/sprint-status.md | 2 +- plugins/projman/commands/sprint-test.md | 2 +- plugins/projman/commands/sprint.md | 4 ++-- 21 files changed, 27 insertions(+), 16 deletions(-) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..fa8e791 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,3 @@ +{ + "model": "opusplan" +} diff --git a/plugins/projman/commands/adr-create.md b/plugins/projman/commands/adr-create.md index a1fbe6a..f1a08c6 100644 --- a/plugins/projman/commands/adr-create.md +++ b/plugins/projman/commands/adr-create.md @@ -1,4 +1,5 @@ --- +name: projman adr create description: Create a new Architecture Decision Record wiki page agent: planner --- diff --git a/plugins/projman/commands/adr-list.md b/plugins/projman/commands/adr-list.md index 41a3880..de83679 100644 --- a/plugins/projman/commands/adr-list.md +++ b/plugins/projman/commands/adr-list.md @@ -1,4 +1,5 @@ --- +name: projman adr list description: List all ADRs grouped by status agent: planner --- diff --git a/plugins/projman/commands/adr-supersede.md b/plugins/projman/commands/adr-supersede.md index e08ed21..7c0c049 100644 --- a/plugins/projman/commands/adr-supersede.md +++ b/plugins/projman/commands/adr-supersede.md @@ -1,4 +1,5 @@ --- +name: projman adr supersede description: Mark an ADR as superseded by a newer ADR agent: planner --- diff --git a/plugins/projman/commands/adr-update.md b/plugins/projman/commands/adr-update.md index 5621ee0..190648f 100644 --- a/plugins/projman/commands/adr-update.md +++ b/plugins/projman/commands/adr-update.md @@ -1,4 +1,5 @@ --- +name: projman adr update description: Update an existing ADR's content or status agent: planner --- diff --git a/plugins/projman/commands/adr.md b/plugins/projman/commands/adr.md index 89c462c..710c5e6 100644 --- a/plugins/projman/commands/adr.md +++ b/plugins/projman/commands/adr.md @@ -1,6 +1,6 @@ --- -name: adr -description: Architecture Decision Records management — type /adr for commands +name: projman adr +description: Architecture Decision Records management — type /projman adr for commands --- # /adr diff --git a/plugins/projman/commands/labels-sync.md b/plugins/projman/commands/labels-sync.md index 8fc3a3c..4908232 100644 --- a/plugins/projman/commands/labels-sync.md +++ b/plugins/projman/commands/labels-sync.md @@ -1,5 +1,5 @@ --- -name: labels sync +name: projman labels sync description: Fetch and validate label taxonomy from Gitea, create missing required labels --- diff --git a/plugins/projman/commands/labels.md b/plugins/projman/commands/labels.md index 3c34bae..6acd4d2 100644 --- a/plugins/projman/commands/labels.md +++ b/plugins/projman/commands/labels.md @@ -1,6 +1,6 @@ --- -name: labels -description: Label management — type /labels for commands +name: projman labels +description: Label management — type /projman labels for commands --- # /labels diff --git a/plugins/projman/commands/project-close.md b/plugins/projman/commands/project-close.md index f0a3187..d68d247 100644 --- a/plugins/projman/commands/project-close.md +++ b/plugins/projman/commands/project-close.md @@ -1,4 +1,5 @@ --- +name: projman project close description: Close a completed project — retrospective, archive, lessons learned agent: orchestrator --- diff --git a/plugins/projman/commands/project-initiation.md b/plugins/projman/commands/project-initiation.md index 6a3a154..e03cff8 100644 --- a/plugins/projman/commands/project-initiation.md +++ b/plugins/projman/commands/project-initiation.md @@ -1,4 +1,5 @@ --- +name: projman project initiation description: Discover, analyze, and charter a new project agent: planner --- diff --git a/plugins/projman/commands/project-plan.md b/plugins/projman/commands/project-plan.md index 0e3ba49..8109fe8 100644 --- a/plugins/projman/commands/project-plan.md +++ b/plugins/projman/commands/project-plan.md @@ -1,4 +1,5 @@ --- +name: projman project plan description: Create WBS, risk register, and sprint roadmap for an initiated project agent: planner --- diff --git a/plugins/projman/commands/project-status.md b/plugins/projman/commands/project-status.md index e862a0c..da6ba3c 100644 --- a/plugins/projman/commands/project-status.md +++ b/plugins/projman/commands/project-status.md @@ -1,4 +1,5 @@ --- +name: projman project status description: Full project hierarchy status view (absorbs /proposal-status) agent: planner --- diff --git a/plugins/projman/commands/project.md b/plugins/projman/commands/project.md index 02e36e4..58bc986 100644 --- a/plugins/projman/commands/project.md +++ b/plugins/projman/commands/project.md @@ -1,6 +1,6 @@ --- -name: project -description: Project lifecycle management — type /project for commands +name: projman project +description: Project lifecycle management — type /projman project for commands --- # /project diff --git a/plugins/projman/commands/rfc.md b/plugins/projman/commands/rfc.md index d6d2d11..301d40f 100644 --- a/plugins/projman/commands/rfc.md +++ b/plugins/projman/commands/rfc.md @@ -1,5 +1,5 @@ --- -name: rfc +name: projman rfc description: RFC lifecycle management - create, list, review, approve, reject agent: planner --- diff --git a/plugins/projman/commands/sprint-close.md b/plugins/projman/commands/sprint-close.md index ea317a1..8021769 100644 --- a/plugins/projman/commands/sprint-close.md +++ b/plugins/projman/commands/sprint-close.md @@ -1,5 +1,5 @@ --- -name: sprint close +name: projman sprint close description: Complete sprint and capture lessons learned to Gitea Wiki agent: orchestrator --- diff --git a/plugins/projman/commands/sprint-plan.md b/plugins/projman/commands/sprint-plan.md index 87c0238..0bac94e 100644 --- a/plugins/projman/commands/sprint-plan.md +++ b/plugins/projman/commands/sprint-plan.md @@ -1,5 +1,5 @@ --- -name: sprint plan +name: projman sprint plan description: Start sprint planning with AI-guided architecture analysis and issue creation agent: planner --- diff --git a/plugins/projman/commands/sprint-review.md b/plugins/projman/commands/sprint-review.md index 136e174..f9365aa 100644 --- a/plugins/projman/commands/sprint-review.md +++ b/plugins/projman/commands/sprint-review.md @@ -1,5 +1,5 @@ --- -name: sprint review +name: projman sprint review description: Pre-sprint-close code quality review agent: code-reviewer --- diff --git a/plugins/projman/commands/sprint-start.md b/plugins/projman/commands/sprint-start.md index 721f4d0..6ce3574 100644 --- a/plugins/projman/commands/sprint-start.md +++ b/plugins/projman/commands/sprint-start.md @@ -1,5 +1,5 @@ --- -name: sprint start +name: projman sprint start description: Begin sprint execution with relevant lessons learned from previous sprints agent: orchestrator --- diff --git a/plugins/projman/commands/sprint-status.md b/plugins/projman/commands/sprint-status.md index 10c694f..96ad4d5 100644 --- a/plugins/projman/commands/sprint-status.md +++ b/plugins/projman/commands/sprint-status.md @@ -1,5 +1,5 @@ --- -name: sprint status +name: projman sprint status description: Check current sprint progress, identify blockers, optionally generate dependency diagram or token budget report --- diff --git a/plugins/projman/commands/sprint-test.md b/plugins/projman/commands/sprint-test.md index 3fb9ac4..129152f 100644 --- a/plugins/projman/commands/sprint-test.md +++ b/plugins/projman/commands/sprint-test.md @@ -1,5 +1,5 @@ --- -name: sprint test +name: projman sprint test description: Run tests with coverage or generate tests for specified code --- diff --git a/plugins/projman/commands/sprint.md b/plugins/projman/commands/sprint.md index a0f28a1..f39e56c 100644 --- a/plugins/projman/commands/sprint.md +++ b/plugins/projman/commands/sprint.md @@ -1,6 +1,6 @@ --- -name: sprint -description: Sprint lifecycle management — type /sprint for commands +name: projman sprint +description: Sprint lifecycle management — type /projman sprint for commands --- # /sprint -- 2.49.1