🐛 Critical Bug Fix - Commands Now Work!
Fixed Command Discovery (Real Fix This Time!)
Commands now actually appear in slash command autocomplete when typing /claude-octopus:
What was REALLY broken:
- Command files used
name:in YAML frontmatter - Claude Code requires
command:field for command discovery - v7.5.4 fixed plugin.json but didn't fix the command files themselves
What's fixed:
- ✅ All 7 command files now use
command:field (notname:) - ✅ Updated all descriptions to use
/claude-octopus:namespace - ✅ Commands now properly discovered:
/claude-octopus:sys-setup/claude-octopus:sys-update/claude-octopus:skill-knowledge-mode/claude-octopus:setup(shortcut)/claude-octopus:update(shortcut)/claude-octopus:check-update(shortcut)/claude-octopus:km(shortcut)
Root cause analysis:
The issue had TWO parts:
- v7.5.4 fixed explicit registration in plugin.json ✅
- v7.5.5 fixed YAML frontmatter in command files ✅ (THIS RELEASE)
Both fixes were needed for commands to appear in autocomplete.
How to update:
Run /claude-octopus:update --update (if it works!) or manually:
```bash
/plugin uninstall claude-octopus
/plugin marketplace update nyldn-plugins
/plugin install claude-octopus@nyldn-plugins
```
After installation, restart Claude Code, then type /claude-octopus: to see all commands!
Test it:
- Type
/claude- should show/claude-octopus:commands in autocomplete - Type
/claude-octopus:- should show all 7 commands - Try a command like
/claude-octopus:setup
Full Changelog: v7.5.4...v7.5.5