fix(projman): align command names with git-flow pattern #461

Merged
lmiranda merged 1 commits from fix/projman-command-names into development 2026-02-09 04:00:45 +00:00
Owner

Summary

Fixes projman commands to show as /projman sprint plan (spaces, no colon) instead of /projman:sprint-plan (colon, hyphens).

Problem: Projman commands showed with forced plugin prefix (:) in autocomplete because command names didn't start with the plugin name.

Solution: Updated all projman command name: fields to start with projman, matching git-flow pattern.

Changes

Updated 21 command files:

Sprint commands:

  • name: sprint planname: projman sprint plan
  • name: sprint startname: projman sprint start
  • name: sprint statusname: projman sprint status
  • name: sprint closename: projman sprint close
  • name: sprint reviewname: projman sprint review
  • name: sprint testname: projman sprint test

Project commands:

  • Added name: projman project close
  • Added name: projman project initiation
  • Added name: projman project plan
  • Added name: projman project status

ADR commands:

  • Added name: projman adr create
  • Added name: projman adr list
  • Added name: projman adr supersede
  • Added name: projman adr update

Dispatch files:

  • name: adrname: projman adr
  • name: projectname: projman project
  • name: sprintname: projman sprint
  • name: labelsname: projman labels
  • name: rfcname: projman rfc

Other:

  • name: labels syncname: projman labels sync
  • name: projman (unchanged)
  • name: projman setup (unchanged)

Before/After

Before:

/projman:sprint-plan
/projman:project-status
/projman:adr-create

After:

/projman sprint plan
/projman project status
/projman adr create

Now matches git-flow autocomplete style.

Test Plan

  • All 21 command files updated with projman prefix
  • Validation passes (pre-commit hook)
  • Pattern matches git-flow (/gitflow commit, /gitflow status)

🤖 Generated with Claude Code

## Summary Fixes projman commands to show as `/projman sprint plan` (spaces, no colon) instead of `/projman:sprint-plan` (colon, hyphens). **Problem:** Projman commands showed with forced plugin prefix (`:`) in autocomplete because command names didn't start with the plugin name. **Solution:** Updated all projman command `name:` fields to start with `projman`, matching git-flow pattern. ## Changes Updated 21 command files: **Sprint commands:** - `name: sprint plan` → `name: projman sprint plan` - `name: sprint start` → `name: projman sprint start` - `name: sprint status` → `name: projman sprint status` - `name: sprint close` → `name: projman sprint close` - `name: sprint review` → `name: projman sprint review` - `name: sprint test` → `name: projman sprint test` **Project commands:** - Added `name: projman project close` - Added `name: projman project initiation` - Added `name: projman project plan` - Added `name: projman project status` **ADR commands:** - Added `name: projman adr create` - Added `name: projman adr list` - Added `name: projman adr supersede` - Added `name: projman adr update` **Dispatch files:** - `name: adr` → `name: projman adr` - `name: project` → `name: projman project` - `name: sprint` → `name: projman sprint` - `name: labels` → `name: projman labels` - `name: rfc` → `name: projman rfc` **Other:** - `name: labels sync` → `name: projman labels sync` - `name: projman` (unchanged) - `name: projman setup` (unchanged) ## Before/After **Before:** ``` /projman:sprint-plan /projman:project-status /projman:adr-create ``` **After:** ``` /projman sprint plan /projman project status /projman adr create ``` Now matches git-flow autocomplete style. ## Test Plan - [x] All 21 command files updated with `projman` prefix - [x] Validation passes (pre-commit hook) - [x] Pattern matches git-flow (`/gitflow commit`, `/gitflow status`) 🤖 Generated with [Claude Code](https://claude.com/claude-code)
lmiranda added 1 commit 2026-02-09 03:59:26 +00:00
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 <noreply@anthropic.com>
lmiranda merged commit faedf68318 into development 2026-02-09 04:00:45 +00:00
lmiranda deleted branch fix/projman-command-names 2026-02-09 04:00:45 +00:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: personal-projects/leo-claude-mktplace#461