🐛 Bug Fix
Fixed Command Autocomplete
Commands now appear in slash command autocomplete when typing /claude-octopus:
What was broken:
- Commands weren't appearing in autocomplete after upgrading to v7.5.3
- Users had to memorize command names
What's fixed:
- Changed
commandsfield from directory path to explicit array in plugin.json - All 7 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:
Directory-based auto-discovery wasn't reliable after the namespace change in v7.5.0-7.5.2. Explicit registration (matching the skills pattern) ensures consistent command discovery.
How to update:
Run /claude-octopus:update --update or manually:
```bash
/plugin uninstall claude-octopus
/plugin marketplace update nyldn-plugins
/plugin install claude-octopus@nyldn-plugins
```
Full Changelog: v7.5.3...v7.5.4