Problem
The /workflows:review command does not appear in Cursor's slash command list. All other commands in the same commands/workflows/ directory (brainstorm, plan, work, compound) show up fine.
Root Cause
Cursor reserves the name review for its built-in Agent Review feature (introduced ~v2.2.9). This prevents any plugin command containing review in its name from appearing in the command picker. The frontmatter, encoding, permissions, and file structure are all correct — it's purely a naming collision.
References:
Suggested Fix
Rename the command from workflows:review to workflows:code-review (or similar). This requires updating:
- Filename:
commands/workflows/review.md → commands/workflows/code-review.md
- Frontmatter:
name: workflows:review → name: workflows:code-review
- 18 text references across 10 other files:
CLAUDE.md (2 refs)
README.md (1 ref)
CHANGELOG.md (5 refs)
skills/git-worktree/SKILL.md (3 refs)
skills/setup/SKILL.md (2 refs)
skills/file-todos/SKILL.md (1 ref)
commands/test-xcode.md (2 refs)
commands/slfg.md (1 ref)
commands/lfg.md (1 ref)
Workaround
Users can apply the rename manually in ~/.cursor/plugins/cache/cursor-public/compound-engineering/.../, but it gets overwritten on plugin updates.
Environment
- Cursor version: latest (March 2026)
- Plugin version: v2.33.0 / v2.34.0
- OS: macOS
Problem
The
/workflows:reviewcommand does not appear in Cursor's slash command list. All other commands in the samecommands/workflows/directory (brainstorm,plan,work,compound) show up fine.Root Cause
Cursor reserves the name
reviewfor its built-in Agent Review feature (introduced ~v2.2.9). This prevents any plugin command containingreviewin its name from appearing in the command picker. The frontmatter, encoding, permissions, and file structure are all correct — it's purely a naming collision.References:
reviewas reserved)Suggested Fix
Rename the command from
workflows:reviewtoworkflows:code-review(or similar). This requires updating:commands/workflows/review.md→commands/workflows/code-review.mdname: workflows:review→name: workflows:code-reviewCLAUDE.md(2 refs)README.md(1 ref)CHANGELOG.md(5 refs)skills/git-worktree/SKILL.md(3 refs)skills/setup/SKILL.md(2 refs)skills/file-todos/SKILL.md(1 ref)commands/test-xcode.md(2 refs)commands/slfg.md(1 ref)commands/lfg.md(1 ref)Workaround
Users can apply the rename manually in
~/.cursor/plugins/cache/cursor-public/compound-engineering/.../, but it gets overwritten on plugin updates.Environment