omgkit 2.24.0 → 2.24.1

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/bin/omgkit.js CHANGED
@@ -56,12 +56,13 @@ ${COLORS.bright}EXAMPLES${COLORS.reset}
56
56
  ${COLORS.bright}AFTER INSTALLATION${COLORS.reset}
57
57
  In Claude Code, type / to see all OMGKIT commands:
58
58
 
59
- Core: /feature, /fix, /plan, /test, /review
60
- Omega: /10x, /100x, /1000x, /principles
61
- Sprint: /vision:set, /sprint:new, /team:run
59
+ Core: /dev:feature, /dev:fix, /planning:plan, /quality:test, /dev:review
60
+ Omega: /omega:10x, /omega:100x, /omega:1000x, /omega:principles
61
+ Sprint: /sprint:vision-set, /sprint:sprint-new, /sprint:team-run
62
+ Workflow: /workflow:init, /workflow:status, /hooks:setup
62
63
 
63
64
  ${COLORS.bright}DOCUMENTATION${COLORS.reset}
64
- https://github.com/user/omgkit
65
+ https://omg.mintlify.app
65
66
  `);
66
67
  }
67
68
 
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 • 58 Commands • 88 Skills • 10 Modes
54
+ 41 Agents • 156 Commands • 159 Skills • 10 Modes
55
55
  ║ "Think Omega. Build Omega. Be Omega." ║
56
56
  ║ ║
57
57
  ╚════════════════════════════════════════════════════════════╝${COLORS.reset}
@@ -499,7 +499,15 @@ export function doctor(options = {}) {
499
499
 
500
500
  // Count commands
501
501
  if (existsSync(commandsDir)) {
502
- const commandPrefixes = ['dev:', 'git:', 'planning:', 'quality:', 'context:', 'design:', 'omega:', 'sprint:', 'mode:'];
502
+ const commandPrefixes = [
503
+ // All command namespaces
504
+ 'alignment:', 'auto:', 'context:', 'data:', 'design:', 'dev:', 'domain:',
505
+ 'game:', 'git:', 'hooks:', 'iot:', 'ml:', 'omega:', 'omgdata:', 'omgdeploy:',
506
+ 'omgfeature:', 'omgml:', 'omgops:', 'omgoptim:', 'omgtrain:', 'perf:',
507
+ 'planning:', 'platform:', 'quality:', 'security:', 'sprint:', 'sre:', 'workflow:',
508
+ // Modes
509
+ 'mode:'
510
+ ];
503
511
  const files = readdirSync(commandsDir).filter(f =>
504
512
  f.endsWith('.md') && commandPrefixes.some(p => f.startsWith(p))
505
513
  );
@@ -517,7 +525,14 @@ export function doctor(options = {}) {
517
525
 
518
526
  // Count skills
519
527
  if (existsSync(skillsDir)) {
520
- const skillPrefixes = ['databases-', 'devops-', 'tools-', 'languages-', 'frameworks-', 'frontend-', 'backend-', 'mobile-', 'integrations-', 'security-', 'testing-', 'methodology-', 'ai-engineering-', 'omega-'];
528
+ const skillPrefixes = [
529
+ // All skill categories
530
+ 'ai-engineering-', 'ai-ml-', 'autonomous-', 'backend-', 'databases-',
531
+ 'devops-', 'event-driven-', 'frameworks-', 'frontend-', 'game-',
532
+ 'integrations-', 'iot-', 'languages-', 'methodology-', 'microservices-',
533
+ 'ml-systems-', 'mobile-', 'mobile-advanced-', 'omega-', 'security-',
534
+ 'simulation-', 'testing-', 'tools-'
535
+ ];
521
536
  const dirs = readdirSync(skillsDir).filter(f => {
522
537
  const fullPath = join(skillsDir, f);
523
538
  return statSync(fullPath).isDirectory() && skillPrefixes.some(p => f.startsWith(p));
@@ -537,13 +552,19 @@ export function doctor(options = {}) {
537
552
  // Count agents
538
553
  if (existsSync(agentsDir)) {
539
554
  const agentFiles = [
540
- 'code-reviewer.md', 'architect.md', 'debugger.md', 'api-designer.md',
541
- 'database-admin.md', 'cicd-manager.md', 'oracle.md', 'researcher.md',
542
- 'project-manager.md', 'copywriter.md', 'vulnerability-scanner.md',
543
- 'security-auditor.md', 'journal-writer.md', 'sprint-master.md',
544
- 'tester.md', 'fullstack-developer.md', 'planner.md', 'docs-manager.md',
545
- 'git-manager.md', 'ui-ux-designer.md', 'scout.md', 'brainstormer.md',
546
- 'pipeline-architect.md'
555
+ // All 41 agents
556
+ 'ai-architect-agent.md', 'api-designer.md', 'architect.md', 'brainstormer.md',
557
+ 'cicd-manager.md', 'code-reviewer.md', 'copywriter.md', 'data-engineer.md',
558
+ 'data-scientist-agent.md', 'database-admin.md', 'debugger.md', 'devsecops.md',
559
+ 'docs-manager.md', 'domain-decomposer.md', 'embedded-systems.md',
560
+ 'experiment-analyst-agent.md', 'fullstack-developer.md', 'game-systems-designer.md',
561
+ 'git-manager.md', 'journal-writer.md', 'ml-engineer-agent.md', 'ml-engineer.md',
562
+ 'mlops-engineer-agent.md', 'model-optimizer-agent.md', 'observability-engineer.md',
563
+ 'oracle.md', 'performance-engineer.md', 'pipeline-architect.md', 'planner.md',
564
+ 'platform-engineer.md', 'production-engineer-agent.md', 'project-manager.md',
565
+ 'research-scientist-agent.md', 'researcher.md', 'scientific-computing.md',
566
+ 'scout.md', 'security-auditor.md', 'sprint-master.md', 'tester.md',
567
+ 'ui-ux-designer.md', 'vulnerability-scanner.md'
547
568
  ];
548
569
  const installed = agentFiles.filter(f => existsSync(join(agentsDir, f)));
549
570
  result.claudeCode.agents = installed.length;
@@ -663,31 +684,40 @@ export function uninstallPlugin(options = {}) {
663
684
  agents: 0
664
685
  };
665
686
 
666
- // Command prefixes from our categories (both old hyphen and new colon separator)
687
+ // Command prefixes from our categories
667
688
  const commandPrefixes = [
668
- 'dev:', 'git:', 'planning:', 'quality:', 'context:',
669
- 'design:', 'omega:', 'sprint:', 'mode:',
670
- // Also clean up old hyphen-separated format
671
- 'dev-', 'git-', 'planning-', 'quality-', 'context-',
672
- 'design-', 'omega-', 'sprint-', 'mode-'
689
+ // All command namespaces
690
+ 'alignment:', 'auto:', 'context:', 'data:', 'design:', 'dev:', 'domain:',
691
+ 'game:', 'git:', 'hooks:', 'iot:', 'ml:', 'omega:', 'omgdata:', 'omgdeploy:',
692
+ 'omgfeature:', 'omgml:', 'omgops:', 'omgoptim:', 'omgtrain:', 'perf:',
693
+ 'planning:', 'platform:', 'quality:', 'security:', 'sprint:', 'sre:', 'workflow:',
694
+ // Modes
695
+ 'mode:'
673
696
  ];
674
697
 
675
698
  // Skill prefixes from our categories
676
699
  const skillPrefixes = [
677
- 'databases-', 'devops-', 'tools-', 'languages-', 'frameworks-',
678
- 'frontend-', 'backend-', 'mobile-', 'integrations-', 'security-',
679
- 'testing-', 'methodology-', 'ai-engineering-', 'omega-'
700
+ 'ai-engineering-', 'ai-ml-', 'autonomous-', 'backend-', 'databases-',
701
+ 'devops-', 'event-driven-', 'frameworks-', 'frontend-', 'game-',
702
+ 'integrations-', 'iot-', 'languages-', 'methodology-', 'microservices-',
703
+ 'ml-systems-', 'mobile-', 'mobile-advanced-', 'omega-', 'security-',
704
+ 'simulation-', 'testing-', 'tools-'
680
705
  ];
681
706
 
682
- // Agent files we installed
707
+ // Agent files we installed (all 41 agents)
683
708
  const agentFiles = [
684
- 'code-reviewer.md', 'architect.md', 'debugger.md', 'api-designer.md',
685
- 'database-admin.md', 'cicd-manager.md', 'oracle.md', 'researcher.md',
686
- 'project-manager.md', 'copywriter.md', 'vulnerability-scanner.md',
687
- 'security-auditor.md', 'journal-writer.md', 'sprint-master.md',
688
- 'tester.md', 'fullstack-developer.md', 'planner.md', 'docs-manager.md',
689
- 'git-manager.md', 'ui-ux-designer.md', 'scout.md', 'brainstormer.md',
690
- 'pipeline-architect.md'
709
+ 'ai-architect-agent.md', 'api-designer.md', 'architect.md', 'brainstormer.md',
710
+ 'cicd-manager.md', 'code-reviewer.md', 'copywriter.md', 'data-engineer.md',
711
+ 'data-scientist-agent.md', 'database-admin.md', 'debugger.md', 'devsecops.md',
712
+ 'docs-manager.md', 'domain-decomposer.md', 'embedded-systems.md',
713
+ 'experiment-analyst-agent.md', 'fullstack-developer.md', 'game-systems-designer.md',
714
+ 'git-manager.md', 'journal-writer.md', 'ml-engineer-agent.md', 'ml-engineer.md',
715
+ 'mlops-engineer-agent.md', 'model-optimizer-agent.md', 'observability-engineer.md',
716
+ 'oracle.md', 'performance-engineer.md', 'pipeline-architect.md', 'planner.md',
717
+ 'platform-engineer.md', 'production-engineer-agent.md', 'project-manager.md',
718
+ 'research-scientist-agent.md', 'researcher.md', 'scientific-computing.md',
719
+ 'scout.md', 'security-auditor.md', 'sprint-master.md', 'tester.md',
720
+ 'ui-ux-designer.md', 'vulnerability-scanner.md'
691
721
  ];
692
722
 
693
723
  // Remove backup location
@@ -805,10 +835,10 @@ export function listComponents(type, options = {}) {
805
835
  }
806
836
 
807
837
  const componentTypes = {
808
- commands: { title: 'Commands', count: 54 },
809
- agents: { title: 'Agents', count: 23 },
810
- skills: { title: 'Skills', count: 43 },
811
- modes: { title: 'Modes', count: 9 }
838
+ commands: { title: 'Commands' },
839
+ agents: { title: 'Agents' },
840
+ skills: { title: 'Skills' },
841
+ modes: { title: 'Modes' }
812
842
  };
813
843
 
814
844
  const result = { success: true, components: {} };
@@ -818,7 +848,7 @@ export function listComponents(type, options = {}) {
818
848
  typesToList.forEach(key => {
819
849
  if (!componentTypes[key]) return;
820
850
 
821
- const { title, count } = componentTypes[key];
851
+ const { title } = componentTypes[key];
822
852
  const dir = join(pluginDir, key);
823
853
 
824
854
  if (existsSync(dir)) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.24.0",
4
- "description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 156 commands, 157 skills, 68 workflows.",
3
+ "version": "2.24.1",
4
+ "description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 156 commands, 159 skills, 68 workflows.",
5
5
  "keywords": [
6
6
  "claude-code",
7
7
  "ai",
@@ -1,9 +1,9 @@
1
1
  # OMGKIT Component Registry
2
2
  # Single Source of Truth for Agents, Skills, Commands, Workflows, and MCPs
3
- # Version: 2.24.0
3
+ # Version: 2.24.1
4
4
  # Updated: 2026-01-06
5
5
 
6
- version: "2.24.0"
6
+ version: "2.24.1"
7
7
 
8
8
  # =============================================================================
9
9
  # OPTIMIZED ALIGNMENT PRINCIPLE (OAP)