Bug Description
Typing /review at the Claude Code prompt resolves to a plugin skill (ikh:review) instead of the built-in /review (PR review) command. According to the plugin docs, plugin skills should only be reachable via their namespaced name (e.g., /ikh:review), not the short form.
Steps to Reproduce
- Install a plugin (e.g.,
ikh) that has a skill with folder name review (registered as ikh:review)
- The built-in
/review command (PR review) is also available
- Type
/review in the prompt
- Observe: it expands to the plugin's
ikh:review skill instead of the built-in /review
Expected Behavior
/review should resolve to the built-in review command. The plugin skill should only be reachable as /ikh:review (fully qualified with namespace).
The docs explicitly state:
Plugin skills are always namespaced (like /my-first-plugin:hello) to prevent conflicts when multiple plugins have skills with the same name.
Actual Behavior
/review resolves to ikh:review (the plugin skill), making the built-in /review unreachable.
Environment
- Claude Code version: 2.1.101+
- Plugin: custom plugin with
name: "ikh" in plugin.json
- Skill:
skills/review/SKILL.md with standard frontmatter
Related Issues
Suggested Fix
Built-in commands should take priority over unqualified plugin skill name matches. When a user types /review, resolution order should be:
- Built-in commands (exact match)
- Plugin skills (exact match on fully-qualified name only)
Bug Description
Typing
/reviewat the Claude Code prompt resolves to a plugin skill (ikh:review) instead of the built-in/review(PR review) command. According to the plugin docs, plugin skills should only be reachable via their namespaced name (e.g.,/ikh:review), not the short form.Steps to Reproduce
ikh) that has a skill with folder namereview(registered asikh:review)/reviewcommand (PR review) is also available/reviewin the promptikh:reviewskill instead of the built-in/reviewExpected Behavior
/reviewshould resolve to the built-in review command. The plugin skill should only be reachable as/ikh:review(fully qualified with namespace).The docs explicitly state:
Actual Behavior
/reviewresolves toikh:review(the plugin skill), making the built-in/reviewunreachable.Environment
name: "ikh"in plugin.jsonskills/review/SKILL.mdwith standard frontmatterRelated Issues
/btwcommand conflicted with superpowers plugin skill resolutionSuggested Fix
Built-in commands should take priority over unqualified plugin skill name matches. When a user types
/review, resolution order should be: