omgkit 2.7.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/lib/cli.js +17 -14
  3. 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 (54)
105
+ ## ⚡ Commands (58)
106
106
 
107
107
  ### Development
108
108
  ```bash
package/lib/cli.js CHANGED
@@ -51,7 +51,7 @@ ${COLORS.magenta}╔════════════════════
51
51
  ║ ║
52
52
  ║ 🔮 OMGKIT - Omega-Level Development Kit ║
53
53
  ║ ║
54
- ║ 23 Agents • 54 Commands • 43 Skills • 9 Modes
54
+ ║ 23 Agents • 58 Commands • 88 Skills • 10 Modes
55
55
  ║ "Think Omega. Build Omega. Be Omega." ║
56
56
  ║ ║
57
57
  ╚════════════════════════════════════════════════════════════╝${COLORS.reset}
@@ -122,8 +122,8 @@ function copyCommands(pluginSrc, commandsDest) {
122
122
 
123
123
  for (const file of files) {
124
124
  const srcPath = join(categoryPath, file);
125
- // Use category prefix for clarity (e.g., dev-fix.md)
126
- const destName = `${category}-${file}`;
125
+ // Use category prefix with colon for clarity (e.g., dev:fix.md)
126
+ const destName = `${category}:${file}`;
127
127
  const destPath = join(commandsDest, destName);
128
128
  cpSync(srcPath, destPath);
129
129
  count++;
@@ -212,8 +212,8 @@ function copyModes(pluginSrc, commandsDest) {
212
212
 
213
213
  for (const file of files) {
214
214
  const srcPath = join(modesSrc, file);
215
- // Prefix modes with 'mode-' for clarity
216
- const destPath = join(commandsDest, `mode-${file}`);
215
+ // Prefix modes with 'mode:' for clarity
216
+ const destPath = join(commandsDest, `mode:${file}`);
217
217
  cpSync(srcPath, destPath);
218
218
  count++;
219
219
  }
@@ -327,7 +327,7 @@ ${COLORS.bright}Summary:${COLORS.reset}
327
327
  ${COLORS.bright}Next steps:${COLORS.reset}
328
328
  1. Restart Claude Code to load new commands
329
329
  2. Type /help to see available commands
330
- 3. Try /dev-fix, /git-commit, /planning-plan, etc.
330
+ 3. Try /dev:fix, /git:commit, /planning:plan, etc.
331
331
 
332
332
  ${COLORS.magenta}🔮 Think Omega. Build Omega. Be Omega.${COLORS.reset}
333
333
  `);
@@ -413,14 +413,14 @@ export function initProject(options = {}) {
413
413
  ${COLORS.bright}Project initialized!${COLORS.reset}
414
414
 
415
415
  ${COLORS.bright}Next steps in Claude Code:${COLORS.reset}
416
- /vision:set Set your product vision
417
- /sprint:new Create a sprint (add --propose for AI suggestions)
418
- /team:run Start the AI team
416
+ /sprint:vision-set Set your product vision
417
+ /sprint:sprint-new Create a sprint (add --propose for AI suggestions)
418
+ /sprint:team-run Start the AI team
419
419
 
420
420
  ${COLORS.bright}Quick commands:${COLORS.reset}
421
- /feature [desc] Build a feature
422
- /fix [issue] Fix a bug
423
- /10x [topic] Find 10x improvement
421
+ /dev:feature [desc] Build a feature
422
+ /dev:fix [issue] Fix a bug
423
+ /omega:10x [topic] Find 10x improvement
424
424
 
425
425
  ${COLORS.magenta}🔮 Your Omega journey begins!${COLORS.reset}
426
426
  `);
@@ -494,7 +494,7 @@ export function doctor(options = {}) {
494
494
 
495
495
  // Count commands
496
496
  if (existsSync(commandsDir)) {
497
- const commandPrefixes = ['dev-', 'git-', 'planning-', 'quality-', 'context-', 'design-', 'omega-', 'sprint-', 'mode-'];
497
+ const commandPrefixes = ['dev:', 'git:', 'planning:', 'quality:', 'context:', 'design:', 'omega:', 'sprint:', 'mode:'];
498
498
  const files = readdirSync(commandsDir).filter(f =>
499
499
  f.endsWith('.md') && commandPrefixes.some(p => f.startsWith(p))
500
500
  );
@@ -657,8 +657,11 @@ 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
+ 'dev:', 'git:', 'planning:', 'quality:', 'context:',
663
+ 'design:', 'omega:', 'sprint:', 'mode:',
664
+ // Also clean up old hyphen-separated format
662
665
  'dev-', 'git-', 'planning-', 'quality-', 'context-',
663
666
  'design-', 'omega-', 'sprint-', 'mode-'
664
667
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.7.0",
3
+ "version": "2.9.0",
4
4
  "description": "Omega-Level Development Kit - AI Team System for Claude Code. 23 agents, 58 commands, 88 skills, sprint management.",
5
5
  "keywords": [
6
6
  "claude-code",