omgkit 2.15.0 → 2.17.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 CHANGED
@@ -7,7 +7,7 @@
7
7
  [![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE)
8
8
 
9
9
  > **AI Team System for Claude Code**
10
- > 33 Agents • 111 Commands • 49 Workflows • 128 Skills • 10 Modes • 14 Archetypes
10
+ > 33 Agents • 113 Commands • 49 Workflows • 127 Skills • 10 Modes • 14 Archetypes
11
11
  > *"Think Omega. Build Omega. Be Omega."*
12
12
 
13
13
  OMGKIT transforms Claude Code into an autonomous AI development team with sprint management, specialized agents, and Omega-level thinking for 10x-1000x productivity improvements.
@@ -17,9 +17,9 @@ OMGKIT transforms Claude Code into an autonomous AI development team with sprint
17
17
  | Component | Count | Description |
18
18
  |-----------|-------|-------------|
19
19
  | **Agents** | 33 | Specialized AI team members |
20
- | **Commands** | 111 | Slash commands for every task |
20
+ | **Commands** | 113 | Slash commands for every task |
21
21
  | **Workflows** | 49 | Complete development processes |
22
- | **Skills** | 128 | Domain expertise modules |
22
+ | **Skills** | 127 | Domain expertise modules |
23
23
  | **Modes** | 10 | Behavioral configurations |
24
24
  | **Archetypes** | 14 | Project templates for autonomous dev |
25
25
  | **Sprint Management** | ✅ | Vision, backlog, team autonomy |
@@ -127,7 +127,7 @@ After installation, use these commands in Claude Code:
127
127
  | `architect` | System design, leverage multiplication |
128
128
  | `sprint-master` | Sprint management, team orchestration |
129
129
 
130
- ## ⚡ Commands (111)
130
+ ## ⚡ Commands (113)
131
131
 
132
132
  ### Development
133
133
  ```bash
@@ -198,6 +198,18 @@ After installation, use these commands in Claude Code:
198
198
  /auto:resume # Resume from saved state
199
199
  ```
200
200
 
201
+ ### Alignment & Dependencies ⭐
202
+ ```bash
203
+ /alignment:health # Check system alignment health status
204
+ /alignment:deps <type:name> # Show dependency graph tree
205
+ ```
206
+
207
+ The alignment commands help you understand and validate OMGKIT's component hierarchy:
208
+ - `agent:fullstack-developer` - Shows agent's skills, commands, and workflows
209
+ - `workflow:development/feature` - Shows workflow's agents, skills, commands
210
+ - `skill:methodology/writing-plans` - Shows which agents/workflows use this skill
211
+ - `command:/dev:feature` - Shows which agents trigger this command
212
+
201
213
  ## 🤖 Autonomous Development (14 Archetypes)
202
214
 
203
215
  Build complete applications autonomously from idea to deployment.
@@ -445,6 +457,42 @@ OMGKIT supports these MCP servers for enhanced capabilities:
445
457
  | Filesystem | Secure file operations |
446
458
  | Playwright | Browser automation |
447
459
 
460
+ ## 🏗️ Optimized Alignment Principle (OAP)
461
+
462
+ OMGKIT uses a **5-level component hierarchy** ensuring consistency and maintainability:
463
+
464
+ ```
465
+ Level 0: MCPs (Foundation)
466
+
467
+ Level 1: Commands → use MCPs
468
+
469
+ Level 2: Skills → use Commands, MCPs
470
+
471
+ Level 3: Agents → use Skills, Commands, MCPs
472
+
473
+ Level 4: Workflows → use Agents, Skills, Commands, MCPs
474
+ ```
475
+
476
+ ### Five Alignment Rules
477
+
478
+ 1. **Format Compliance** - Components use correct naming patterns
479
+ 2. **Existence Validation** - All references must exist
480
+ 3. **No Cross-Type Confusion** - Components not confused with other types
481
+ 4. **Hierarchical Respect** - Only reference same/lower level components
482
+ 5. **Optimization** - Minimal, appropriate, unique references
483
+
484
+ ### Component Formats
485
+
486
+ | Component | Format | Example |
487
+ |-----------|--------|---------|
488
+ | MCPs | `kebab-case` | `context7` |
489
+ | Commands | `/namespace:name` | `/dev:feature` |
490
+ | Skills | `category/name` | `methodology/writing-plans` |
491
+ | Agents | `kebab-case` | `fullstack-developer` |
492
+ | Workflows | `category/name` | `development/feature` |
493
+
494
+ All alignment rules are enforced by 400+ automated tests. See [full documentation](https://omgkit.mintlify.app/concepts/alignment-principle).
495
+
448
496
  ## 📄 License
449
497
 
450
498
  MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.15.0",
4
- "description": "Omega-Level Development Kit - AI Team System for Claude Code. 33 agents, 111 commands, 128 skills, 49 workflows.",
3
+ "version": "2.17.0",
4
+ "description": "Omega-Level Development Kit - AI Team System for Claude Code. 33 agents, 111 commands, 127 skills, 49 workflows.",
5
5
  "keywords": [
6
6
  "claude-code",
7
7
  "ai",
@@ -0,0 +1,213 @@
1
+ ---
2
+ description: Show the dependency graph tree for any OMGKIT component
3
+ argument-hint: <type:name>
4
+ allowed-tools: Read, Bash, Glob, Grep
5
+ ---
6
+
7
+ # Dependency Graph Command
8
+
9
+ Display the dependency graph tree for any component in OMGKIT.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ /alignment:deps <type>:<name>
15
+ ```
16
+
17
+ Where `<type>` is one of:
18
+ - `agent` - Show agent's skills, commands, and which workflows use it
19
+ - `workflow` - Show workflow's agents, skills, and commands
20
+ - `skill` - Show which agents and workflows use this skill
21
+ - `command` - Show which agents and workflows trigger this command
22
+
23
+ ## Examples
24
+
25
+ ### View Agent Dependencies
26
+
27
+ ```bash
28
+ /alignment:deps agent:fullstack-developer
29
+ ```
30
+
31
+ Output:
32
+ ```
33
+ 🔮 Dependency Graph: fullstack-developer
34
+ ═══════════════════════════════════════════
35
+
36
+ 📋 Agent: fullstack-developer
37
+ └── Full implementation with strict file ownership
38
+
39
+ 🧠 Skills Used (5):
40
+ ├── methodology/executing-plans
41
+ │ └── Skill for following implementation plans...
42
+ ├── methodology/verification-before-completion
43
+ │ └── Skill for verifying work before marking done...
44
+ ├── methodology/test-driven-development
45
+ │ └── Skill for TDD practices...
46
+ ├── languages/typescript
47
+ │ └── TypeScript language expertise...
48
+ └── languages/javascript
49
+ └── JavaScript language expertise...
50
+
51
+ ⚡ Commands Triggered (5):
52
+ ├── /dev:feature
53
+ ├── /dev:fix
54
+ ├── /dev:fix-fast
55
+ ├── /dev:fix-hard
56
+ └── /dev:tdd
57
+
58
+ 📊 Used By Workflows (5):
59
+ ├── development/feature
60
+ ├── development/bug-fix
61
+ ├── development/refactor
62
+ ├── omega/10x-improvement
63
+ └── fullstack/full-feature
64
+ ```
65
+
66
+ ### View Workflow Dependencies
67
+
68
+ ```bash
69
+ /alignment:deps workflow:development/feature
70
+ ```
71
+
72
+ Output:
73
+ ```
74
+ 🔮 Dependency Graph: development/feature
75
+ ═══════════════════════════════════════════
76
+
77
+ 📋 Workflow: development/feature
78
+ └── Complete feature development from planning to deployment
79
+
80
+ 🤖 Agents Orchestrated (5):
81
+ ├── planner
82
+ │ ├── Skills: methodology/writing-plans, methodology/executing-plans...
83
+ │ └── Commands: /planning:plan, /planning:plan-detailed...
84
+ ├── fullstack-developer
85
+ │ ├── Skills: methodology/executing-plans, languages/typescript...
86
+ │ └── Commands: /dev:feature, /dev:fix...
87
+ ├── tester
88
+ │ ├── Skills: methodology/test-driven-development, testing/vitest...
89
+ │ └── Commands: /dev:test, /dev:tdd...
90
+ ├── code-reviewer
91
+ │ ├── Skills: methodology/verification-before-completion...
92
+ │ └── Commands: /dev:review
93
+ └── git-manager
94
+ ├── Skills: methodology/finishing-development-branch...
95
+ └── Commands: /git:commit, /git:pr...
96
+
97
+ 🧠 Skills Applied (3):
98
+ ├── methodology/writing-plans
99
+ ├── methodology/executing-plans
100
+ └── methodology/test-driven-development
101
+
102
+ ⚡ Commands Available (6):
103
+ ├── /planning:plan
104
+ ├── /dev:feature
105
+ ├── /dev:test
106
+ ├── /dev:review
107
+ ├── /git:commit
108
+ └── /git:pr
109
+ ```
110
+
111
+ ### View Skill Usage (Reverse Lookup)
112
+
113
+ ```bash
114
+ /alignment:deps skill:methodology/writing-plans
115
+ ```
116
+
117
+ Output:
118
+ ```
119
+ 🔮 Usage Graph: methodology/writing-plans
120
+ ═══════════════════════════════════════════
121
+
122
+ 🧠 Skill: methodology/writing-plans
123
+ └── AI agent creates structured implementation plans...
124
+
125
+ 🤖 Used By Agents (2):
126
+ ├── planner
127
+ │ └── Task decomposition and implementation planning...
128
+ └── docs-manager
129
+ └── Documentation architect and maintainer...
130
+
131
+ 📊 Used By Workflows (5):
132
+ ├── development/feature
133
+ ├── fullstack/full-feature
134
+ ├── omega/10x-improvement
135
+ ├── omega/100x-architecture
136
+ └── sprint/sprint-setup
137
+ ```
138
+
139
+ ### View Command Usage (Reverse Lookup)
140
+
141
+ ```bash
142
+ /alignment:deps command:/dev:feature
143
+ ```
144
+
145
+ Output:
146
+ ```
147
+ 🔮 Usage Graph: /dev:feature
148
+ ═══════════════════════════════════════════
149
+
150
+ ⚡ Command: /dev:feature
151
+ └── Build a complete feature based on requirements
152
+
153
+ 🤖 Triggered By Agents (1):
154
+ └── fullstack-developer
155
+
156
+ 📊 Available In Workflows (4):
157
+ ├── development/feature
158
+ ├── ai-engineering/rag-development
159
+ ├── fullstack/full-feature
160
+ └── omega/10x-improvement
161
+ ```
162
+
163
+ ## Understanding the Graph
164
+
165
+ ### Forward Dependencies (dependsOn)
166
+ Shows what components THIS component uses:
167
+ - Agent → Skills it applies, Commands it triggers
168
+ - Workflow → Agents it orchestrates, Skills applied, Commands available
169
+ - Skill → Commands or MCPs it may use
170
+
171
+ ### Reverse Dependencies (usedBy)
172
+ Shows what components USE this component:
173
+ - Agent → Which workflows orchestrate it
174
+ - Skill → Which agents apply it, which workflows include it
175
+ - Command → Which agents trigger it, which workflows include it
176
+
177
+ ## Use Cases
178
+
179
+ ### 1. Impact Analysis
180
+ Before modifying a component, see what depends on it:
181
+ ```bash
182
+ /alignment:deps skill:methodology/test-driven-development
183
+ # Shows all agents and workflows that would be affected
184
+ ```
185
+
186
+ ### 2. Workflow Understanding
187
+ Understand what a workflow does and what it orchestrates:
188
+ ```bash
189
+ /alignment:deps workflow:security/security-audit
190
+ ```
191
+
192
+ ### 3. Skill Discovery
193
+ Find which agents have a particular skill:
194
+ ```bash
195
+ /alignment:deps skill:security/owasp
196
+ ```
197
+
198
+ ### 4. Command Tracing
199
+ Find which agents trigger a command:
200
+ ```bash
201
+ /alignment:deps command:/git:commit
202
+ ```
203
+
204
+ ## Related Commands
205
+
206
+ - `/alignment:health` - Check overall system alignment health
207
+ - `/omega:principles` - View Omega principles
208
+
209
+ ## See Also
210
+
211
+ - [Optimized Alignment Principle](/concepts/alignment-principle)
212
+ - [Agents Overview](/agents/overview)
213
+ - [Workflows Overview](/workflows/overview)
@@ -0,0 +1,118 @@
1
+ ---
2
+ description: Check the alignment health status of the OMGKIT system
3
+ argument-hint:
4
+ allowed-tools: Read, Bash, Glob, Grep
5
+ ---
6
+
7
+ # Alignment Health Check
8
+
9
+ Check the health status of OMGKIT's component alignment system.
10
+
11
+ ## Overview
12
+
13
+ This command validates that:
14
+ 1. **Registry Sync** - registry.yaml matches actual component files
15
+ 2. **Dependency Integrity** - All references point to existing components
16
+ 3. **Format Compliance** - All component IDs use correct formats
17
+ 4. **Hierarchy Respect** - Components only reference appropriate levels
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ /alignment:health
23
+ ```
24
+
25
+ ## Output
26
+
27
+ The command provides a comprehensive health report:
28
+
29
+ ```
30
+ 🔮 OMGKIT Alignment Health Report
31
+ =================================
32
+
33
+ Registry Sync Status: ✓ ALIGNED / ⚠ DRIFT DETECTED
34
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
35
+
36
+ 📊 Component Counts:
37
+ Agents: 33 registered, 33 actual ✓
38
+ Skills: 127 actual ✓
39
+ Commands: 111 actual ✓
40
+ Workflows: 49 registered, 49 actual ✓
41
+
42
+ 🔗 Dependency Health:
43
+ Agent→Skill refs: 153 valid ✓
44
+ Agent→Command refs: 172 valid ✓
45
+ Workflow→Agent refs: 156 valid ✓
46
+
47
+ Overall: ✓ HEALTHY
48
+ ```
49
+
50
+ ## What Gets Checked
51
+
52
+ ### 1. Component Count Validation
53
+ Verifies that the number of registered components matches actual files:
54
+ - All agents in registry exist as files
55
+ - All workflows in registry exist as files
56
+ - No orphaned entries (registry entries without files)
57
+ - No missing entries (files without registry entries)
58
+
59
+ ### 2. Dependency Reference Validation
60
+ Verifies all dependency references are valid:
61
+ - Agent skill references point to existing skills
62
+ - Agent command references point to existing commands
63
+ - Workflow agent references point to existing agents
64
+ - Workflow skill references point to existing skills
65
+ - Workflow command references point to existing commands
66
+
67
+ ### 3. Format Compliance
68
+ Verifies all component IDs use correct formats:
69
+ - Skills: `category/skill-name`
70
+ - Commands: `/namespace:command-name`
71
+ - Agents: `kebab-case`
72
+ - Workflows: `category/workflow-name`
73
+
74
+ ### 4. Hierarchy Validation
75
+ Verifies the Optimized Alignment Principle:
76
+ - Level 0: MCPs (foundation)
77
+ - Level 1: Commands → use MCPs
78
+ - Level 2: Skills → use Commands, MCPs
79
+ - Level 3: Agents → use Skills, Commands, MCPs
80
+ - Level 4: Workflows → use Agents, Skills, Commands, MCPs
81
+
82
+ ## Troubleshooting
83
+
84
+ If the health check reports issues:
85
+
86
+ ### Registry Drift
87
+ ```bash
88
+ # Check specific component
89
+ /alignment:deps agent:fullstack-developer
90
+
91
+ # Review the registry
92
+ cat plugin/registry.yaml | grep fullstack-developer
93
+ ```
94
+
95
+ ### Missing References
96
+ ```bash
97
+ # Verify skill exists
98
+ ls plugin/skills/methodology/writing-plans/SKILL.md
99
+
100
+ # Verify command exists
101
+ ls plugin/commands/dev/feature.md
102
+ ```
103
+
104
+ ### Format Issues
105
+ Ensure component references follow the correct format:
106
+ - Skills must have category prefix: `methodology/writing-plans`
107
+ - Commands must have namespace: `/dev:feature`
108
+ - Agents must be kebab-case: `fullstack-developer`
109
+
110
+ ## Related Commands
111
+
112
+ - `/alignment:deps <component>` - Show dependency graph for any component
113
+ - `/omega:principles` - View the Omega principles including alignment
114
+
115
+ ## See Also
116
+
117
+ - [Optimized Alignment Principle](/concepts/alignment-principle)
118
+ - [Registry Documentation](/concepts/registry)