omgkit 2.8.0 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/cli.js +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ After installation, use these commands in Claude Code:
|
|
|
102
102
|
| `architect` | System design, leverage multiplication |
|
|
103
103
|
| `sprint-master` | Sprint management, team orchestration |
|
|
104
104
|
|
|
105
|
-
## ⚡ Commands (
|
|
105
|
+
## ⚡ Commands (58)
|
|
106
106
|
|
|
107
107
|
### Development
|
|
108
108
|
```bash
|
package/lib/cli.js
CHANGED
|
@@ -657,10 +657,13 @@ export function uninstallPlugin(options = {}) {
|
|
|
657
657
|
agents: 0
|
|
658
658
|
};
|
|
659
659
|
|
|
660
|
-
// Command prefixes from our categories (
|
|
660
|
+
// Command prefixes from our categories (both old hyphen and new colon separator)
|
|
661
661
|
const commandPrefixes = [
|
|
662
662
|
'dev:', 'git:', 'planning:', 'quality:', 'context:',
|
|
663
|
-
'design:', 'omega:', 'sprint:', 'mode:'
|
|
663
|
+
'design:', 'omega:', 'sprint:', 'mode:',
|
|
664
|
+
// Also clean up old hyphen-separated format
|
|
665
|
+
'dev-', 'git-', 'planning-', 'quality-', 'context-',
|
|
666
|
+
'design-', 'omega-', 'sprint-', 'mode-'
|
|
664
667
|
];
|
|
665
668
|
|
|
666
669
|
// Skill prefixes from our categories
|