omgkit 2.7.0 → 2.8.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/lib/cli.js +16 -16
- package/package.json +1 -1
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
|
+
║ 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
|
|
126
|
-
const destName = `${category}
|
|
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
|
|
216
|
-
const destPath = join(commandsDest, `mode
|
|
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
|
|
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
|
|
417
|
-
/sprint:new
|
|
418
|
-
/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]
|
|
422
|
-
/fix [issue]
|
|
423
|
-
/10x [topic]
|
|
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
|
|
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,10 +657,10 @@ export function uninstallPlugin(options = {}) {
|
|
|
657
657
|
agents: 0
|
|
658
658
|
};
|
|
659
659
|
|
|
660
|
-
// Command prefixes from our categories
|
|
660
|
+
// Command prefixes from our categories (using colon separator)
|
|
661
661
|
const commandPrefixes = [
|
|
662
|
-
'dev
|
|
663
|
-
'design
|
|
662
|
+
'dev:', 'git:', 'planning:', 'quality:', 'context:',
|
|
663
|
+
'design:', 'omega:', 'sprint:', 'mode:'
|
|
664
664
|
];
|
|
665
665
|
|
|
666
666
|
// Skill prefixes from our categories
|