omgkit 2.19.3 → 2.21.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 (73) hide show
  1. package/README.md +537 -338
  2. package/package.json +2 -2
  3. package/plugin/agents/ai-architect-agent.md +282 -0
  4. package/plugin/agents/data-scientist-agent.md +221 -0
  5. package/plugin/agents/experiment-analyst-agent.md +318 -0
  6. package/plugin/agents/ml-engineer-agent.md +165 -0
  7. package/plugin/agents/mlops-engineer-agent.md +324 -0
  8. package/plugin/agents/model-optimizer-agent.md +287 -0
  9. package/plugin/agents/production-engineer-agent.md +360 -0
  10. package/plugin/agents/research-scientist-agent.md +274 -0
  11. package/plugin/commands/omgdata/augment.md +86 -0
  12. package/plugin/commands/omgdata/collect.md +81 -0
  13. package/plugin/commands/omgdata/label.md +83 -0
  14. package/plugin/commands/omgdata/split.md +83 -0
  15. package/plugin/commands/omgdata/validate.md +76 -0
  16. package/plugin/commands/omgdata/version.md +85 -0
  17. package/plugin/commands/omgdeploy/ab.md +94 -0
  18. package/plugin/commands/omgdeploy/cloud.md +89 -0
  19. package/plugin/commands/omgdeploy/edge.md +93 -0
  20. package/plugin/commands/omgdeploy/package.md +91 -0
  21. package/plugin/commands/omgdeploy/serve.md +92 -0
  22. package/plugin/commands/omgfeature/embed.md +93 -0
  23. package/plugin/commands/omgfeature/extract.md +93 -0
  24. package/plugin/commands/omgfeature/select.md +85 -0
  25. package/plugin/commands/omgfeature/store.md +97 -0
  26. package/plugin/commands/omgml/init.md +60 -0
  27. package/plugin/commands/omgml/status.md +82 -0
  28. package/plugin/commands/omgops/drift.md +87 -0
  29. package/plugin/commands/omgops/monitor.md +99 -0
  30. package/plugin/commands/omgops/pipeline.md +102 -0
  31. package/plugin/commands/omgops/registry.md +109 -0
  32. package/plugin/commands/omgops/retrain.md +91 -0
  33. package/plugin/commands/omgoptim/distill.md +90 -0
  34. package/plugin/commands/omgoptim/profile.md +92 -0
  35. package/plugin/commands/omgoptim/prune.md +81 -0
  36. package/plugin/commands/omgoptim/quantize.md +83 -0
  37. package/plugin/commands/omgtrain/baseline.md +78 -0
  38. package/plugin/commands/omgtrain/compare.md +99 -0
  39. package/plugin/commands/omgtrain/evaluate.md +85 -0
  40. package/plugin/commands/omgtrain/train.md +81 -0
  41. package/plugin/commands/omgtrain/tune.md +89 -0
  42. package/plugin/registry.yaml +252 -2
  43. package/plugin/skills/ml-systems/SKILL.md +65 -0
  44. package/plugin/skills/ml-systems/ai-accelerators/SKILL.md +342 -0
  45. package/plugin/skills/ml-systems/data-eng/SKILL.md +126 -0
  46. package/plugin/skills/ml-systems/deep-learning-primer/SKILL.md +143 -0
  47. package/plugin/skills/ml-systems/deployment-paradigms/SKILL.md +148 -0
  48. package/plugin/skills/ml-systems/dnn-architectures/SKILL.md +128 -0
  49. package/plugin/skills/ml-systems/edge-deployment/SKILL.md +366 -0
  50. package/plugin/skills/ml-systems/efficient-ai/SKILL.md +316 -0
  51. package/plugin/skills/ml-systems/feature-engineering/SKILL.md +151 -0
  52. package/plugin/skills/ml-systems/ml-frameworks/SKILL.md +187 -0
  53. package/plugin/skills/ml-systems/ml-serving-optimization/SKILL.md +371 -0
  54. package/plugin/skills/ml-systems/ml-systems-fundamentals/SKILL.md +103 -0
  55. package/plugin/skills/ml-systems/ml-workflow/SKILL.md +162 -0
  56. package/plugin/skills/ml-systems/mlops/SKILL.md +386 -0
  57. package/plugin/skills/ml-systems/model-deployment/SKILL.md +350 -0
  58. package/plugin/skills/ml-systems/model-dev/SKILL.md +160 -0
  59. package/plugin/skills/ml-systems/model-optimization/SKILL.md +339 -0
  60. package/plugin/skills/ml-systems/robust-ai/SKILL.md +395 -0
  61. package/plugin/skills/ml-systems/training-data/SKILL.md +152 -0
  62. package/plugin/workflows/ml-systems/data-preparation-workflow.md +276 -0
  63. package/plugin/workflows/ml-systems/edge-deployment-workflow.md +413 -0
  64. package/plugin/workflows/ml-systems/full-ml-lifecycle-workflow.md +405 -0
  65. package/plugin/workflows/ml-systems/hyperparameter-tuning-workflow.md +352 -0
  66. package/plugin/workflows/ml-systems/mlops-pipeline-workflow.md +384 -0
  67. package/plugin/workflows/ml-systems/model-deployment-workflow.md +392 -0
  68. package/plugin/workflows/ml-systems/model-development-workflow.md +218 -0
  69. package/plugin/workflows/ml-systems/model-evaluation-workflow.md +416 -0
  70. package/plugin/workflows/ml-systems/model-optimization-workflow.md +390 -0
  71. package/plugin/workflows/ml-systems/monitoring-drift-workflow.md +446 -0
  72. package/plugin/workflows/ml-systems/retraining-workflow.md +401 -0
  73. package/plugin/workflows/ml-systems/training-pipeline-workflow.md +382 -0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 🔮 OMGKIT - Omega-Level Development Kit
1
+ # OMGKIT - Omega-Level Development Kit
2
2
 
3
3
  [![CI](https://github.com/doanchienthangdev/omgkit/actions/workflows/ci.yml/badge.svg)](https://github.com/doanchienthangdev/omgkit/actions/workflows/ci.yml)
4
4
  [![npm version](https://img.shields.io/npm/v/omgkit.svg)](https://www.npmjs.com/package/omgkit)
@@ -7,26 +7,97 @@
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 • 113 Commands • 49 Workflows • 128 Skills • 10 Modes • 14 Archetypes
10
+ >
11
11
  > *"Think Omega. Build Omega. Be Omega."*
12
12
 
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.
13
+ ---
14
+
15
+ ## What is OMGKIT?
16
+
17
+ **OMGKIT** (Omega-Level Development Kit) transforms Claude Code into an autonomous AI development team. It provides a complete ecosystem of specialized AI agents, slash commands, skills, and workflows that work together to deliver 10x-1000x productivity improvements.
18
+
19
+ ### The Vision
20
+
21
+ Traditional AI assistants respond to prompts. OMGKIT creates an **AI Team** that:
22
+
23
+ - **Plans** like a senior architect
24
+ - **Researches** like a staff engineer
25
+ - **Codes** like a full-stack developer
26
+ - **Reviews** like a security expert
27
+ - **Tests** like a QA specialist
28
+ - **Documents** like a technical writer
29
+ - **Ships** like a DevOps engineer
30
+
31
+ All coordinated through **Omega-level thinking** - a framework for finding breakthrough solutions rather than incremental improvements.
32
+
33
+ ---
14
34
 
15
- ## Features
35
+ ## Key Numbers
16
36
 
17
37
  | Component | Count | Description |
18
38
  |-----------|-------|-------------|
19
- | **Agents** | 33 | Specialized AI team members |
20
- | **Commands** | 113 | Slash commands for every task |
21
- | **Workflows** | 49 | Complete development processes |
22
- | **Skills** | 128 | Domain expertise modules |
23
- | **Modes** | 10 | Behavioral configurations |
24
- | **Archetypes** | 14 | Project templates for autonomous dev |
25
- | **Sprint Management** | ✅ | Vision, backlog, team autonomy |
26
- | **Omega Thinking** | ✅ | 7 modes for 10x-1000x solutions |
27
- | **Autonomous Dev** | ✅ | Build complete apps from idea to deploy |
28
-
29
- ## 🚀 Installation
39
+ | **Agents** | 41 | Specialized AI team members with distinct roles |
40
+ | **Commands** | 144 | Slash commands for every development task |
41
+ | **Workflows** | 61 | Complete development processes from idea to deploy |
42
+ | **Skills** | 145 | Domain expertise modules across 23 categories |
43
+ | **Modes** | 10 | Behavioral configurations for different contexts |
44
+ | **Archetypes** | 14 | Project templates for autonomous development |
45
+
46
+ ---
47
+
48
+ ## Core Concepts
49
+
50
+ ### 1. Optimized Alignment Principle (OAP)
51
+
52
+ OMGKIT uses a **5-level component hierarchy** ensuring consistency and maintainability:
53
+
54
+ ```
55
+ Level 0: MCPs (Foundation)
56
+
57
+ Level 1: Commands → use MCPs
58
+
59
+ Level 2: Skills → use Commands, MCPs
60
+
61
+ Level 3: Agents → use Skills, Commands, MCPs
62
+
63
+ Level 4: Workflows → use Agents, Skills, Commands, MCPs
64
+ ```
65
+
66
+ Each level builds on lower levels, creating a coherent system where components work together seamlessly.
67
+
68
+ ### 2. Omega Philosophy
69
+
70
+ Seven principles guide OMGKIT's approach to problem-solving:
71
+
72
+ | Principle | Focus |
73
+ |-----------|-------|
74
+ | **Leverage Multiplication** | Build systems, not features |
75
+ | **Transcendent Abstraction** | Solve classes of problems, not instances |
76
+ | **Agentic Decomposition** | Orchestrate specialists |
77
+ | **Feedback Acceleration** | Compress learning loops |
78
+ | **Zero-Marginal-Cost Scaling** | Build once, scale infinitely |
79
+ | **Emergent Intelligence** | System greater than sum of parts |
80
+ | **Aesthetic Perfection** | Excellence in everything |
81
+
82
+ ### 3. Sprint Management
83
+
84
+ OMGKIT brings agile methodology to AI-assisted development:
85
+
86
+ - **Vision**: Define what you're building and why
87
+ - **Backlog**: Prioritized list of work items
88
+ - **Sprints**: Time-boxed development cycles
89
+ - **AI Team**: Autonomous execution with human oversight
90
+
91
+ ---
92
+
93
+ ## Installation
94
+
95
+ ### Prerequisites
96
+
97
+ - Node.js 18+
98
+ - Claude Code CLI installed and authenticated
99
+
100
+ ### Install OMGKIT
30
101
 
31
102
  ```bash
32
103
  # Install globally
@@ -40,423 +111,499 @@ cd your-project
40
111
  omgkit init
41
112
  ```
42
113
 
43
- ## 📋 Quick Start
114
+ ### Verify Installation
115
+
116
+ ```bash
117
+ omgkit doctor
118
+ ```
119
+
120
+ ---
121
+
122
+ ## Quick Start
44
123
 
45
124
  After installation, use these commands in Claude Code:
46
125
 
47
126
  ```bash
48
- # Set your vision
127
+ # 1. Set your product vision
49
128
  /vision:set
50
129
 
51
- # Create a sprint (AI proposes tasks)
130
+ # 2. Create a sprint with AI-proposed tasks
52
131
  /sprint:new --propose
53
132
 
54
- # Start the AI team
133
+ # 3. Start the AI team
55
134
  /team:run
56
135
 
57
- # Or use individual commands
136
+ # 4. Or use individual commands
58
137
  /feature "add user authentication"
59
138
  /fix "login not working"
60
139
  /10x "improve performance"
61
140
  ```
62
141
 
63
- ## 🤖 Agents (33)
142
+ ---
143
+
144
+ ## Agents (41)
145
+
146
+ Agents are specialized AI team members, each with distinct expertise and responsibilities.
64
147
 
65
148
  ### Core Development
66
- | Agent | Description |
67
- |-------|-------------|
68
- | `planner` | Task decomposition, implementation planning |
69
- | `researcher` | Technology research, best practices |
70
- | `debugger` | Error analysis, root cause finding |
71
- | `tester` | Test generation, coverage analysis |
72
- | `code-reviewer` | Code review with security focus |
73
- | `scout` | Codebase exploration, file search |
149
+
150
+ | Agent | Description | Key Skills |
151
+ |-------|-------------|------------|
152
+ | `planner` | Task decomposition, implementation planning | Writing plans, task breakdown |
153
+ | `researcher` | Technology research, best practices | Documentation analysis, comparisons |
154
+ | `debugger` | Error analysis, root cause finding | RAPID methodology, log analysis |
155
+ | `tester` | Test generation, coverage analysis | Framework-specific testing |
156
+ | `code-reviewer` | Code review with security focus | OWASP checks, severity rating |
157
+ | `scout` | Codebase exploration, file search | Pattern discovery, architecture mapping |
158
+ | `fullstack-developer` | Full implementation | All development skills |
74
159
 
75
160
  ### Operations
161
+
76
162
  | Agent | Description |
77
163
  |-------|-------------|
78
- | `git-manager` | Git operations, PRs, commits |
79
- | `docs-manager` | Documentation generation |
80
- | `project-manager` | Progress tracking, coordination |
81
- | `database-admin` | Schema design, query optimization |
82
- | `ui-ux-designer` | UI components, responsive design |
83
- | `observability-engineer` | Monitoring, logging, tracing, alerting |
84
-
85
- ### Extended
86
- | Agent | Description |
87
- |-------|-------------|
88
- | `fullstack-developer` | Full implementation |
89
- | `cicd-manager` | CI/CD pipeline management |
90
- | `security-auditor` | Security reviews, audits |
91
- | `api-designer` | API design, OpenAPI specs |
92
- | `vulnerability-scanner` | Security scanning |
93
- | `pipeline-architect` | Pipeline optimization |
94
- | `devsecops` | Security automation, SAST/DAST |
95
-
96
- ### Creative
97
- | Agent | Description |
98
- |-------|-------------|
99
- | `copywriter` | Marketing copy, content |
100
- | `brainstormer` | Creative exploration |
101
- | `journal-writer` | Failure documentation |
164
+ | `git-manager` | Conventional commits, PR automation, branch management |
165
+ | `docs-manager` | API docs, architecture guides, automated doc generation |
166
+ | `project-manager` | Progress tracking, coordination, status reports |
167
+ | `database-admin` | Schema design, query optimization, migrations |
168
+ | `ui-ux-designer` | UI components, responsive design, accessibility |
169
+ | `observability-engineer` | Monitoring, logging, tracing, alerting, SLOs |
102
170
 
103
171
  ### Architecture & Platform
172
+
104
173
  | Agent | Description |
105
174
  |-------|-------------|
175
+ | `architect` | System design, leverage multiplication, ADRs |
106
176
  | `domain-decomposer` | DDD, bounded contexts, service boundaries |
107
177
  | `platform-engineer` | Internal developer platforms, golden paths |
108
178
  | `performance-engineer` | Profiling, load testing, optimization |
109
179
 
180
+ ### Security
181
+
182
+ | Agent | Description |
183
+ |-------|-------------|
184
+ | `security-auditor` | Security reviews, vulnerability assessment |
185
+ | `vulnerability-scanner` | Security scanning, dependency audit |
186
+ | `devsecops` | Security automation, SAST/DAST integration |
187
+
110
188
  ### Data & ML
189
+
111
190
  | Agent | Description |
112
191
  |-------|-------------|
113
192
  | `data-engineer` | Data pipelines, ETL, schema design |
114
193
  | `ml-engineer` | ML pipelines, model training, MLOps |
115
194
 
116
- ### Specialized
195
+ ### ML Systems (New)
196
+
197
+ | Agent | Description |
198
+ |-------|-------------|
199
+ | `ml-engineer-agent` | Full-stack ML engineering from data to deployment |
200
+ | `data-scientist-agent` | Statistical modeling, experimentation, analysis |
201
+ | `research-scientist-agent` | Novel algorithms, paper implementation, experiments |
202
+ | `model-optimizer-agent` | Quantization, pruning, distillation |
203
+ | `production-engineer-agent` | Model serving, reliability, scaling |
204
+ | `mlops-engineer-agent` | ML infrastructure, pipelines, monitoring |
205
+ | `ai-architect-agent` | ML system architecture, requirements analysis |
206
+ | `experiment-analyst-agent` | Experiment tracking, analysis, reporting |
207
+
208
+ ### Specialized Domains
209
+
117
210
  | Agent | Description |
118
211
  |-------|-------------|
119
212
  | `game-systems-designer` | Game mechanics, balancing, multiplayer |
120
213
  | `embedded-systems` | Firmware, RTOS, IoT connectivity |
121
214
  | `scientific-computing` | Numerical methods, simulations |
122
215
 
123
- ### Omega Exclusive
216
+ ### Omega Exclusive
217
+
124
218
  | Agent | Description |
125
219
  |-------|-------------|
126
- | `oracle` | Deep analysis with 7 thinking modes |
127
- | `architect` | System design, leverage multiplication |
220
+ | `oracle` | Deep analysis with 7 Omega thinking modes |
128
221
  | `sprint-master` | Sprint management, team orchestration |
129
222
 
130
- ## ⚡ Commands (113)
223
+ ---
224
+
225
+ ## Commands (144)
226
+
227
+ Commands are slash-prefixed actions organized by namespace.
228
+
229
+ ### Development (`/dev:*`)
131
230
 
132
- ### Development
133
231
  ```bash
134
- /feature <desc> # Full feature development
135
- /fix <error> # Debug and fix bugs
136
- /fix:fast <error> # Quick bug fix
137
- /fix:hard <error> # Complex bug (deep analysis)
138
- /test <scope> # Generate tests
139
- /tdd <feature> # Test-driven development
140
- /review [file] # Code review
232
+ /dev:feature <desc> # Full feature development
233
+ /dev:fix <error> # Debug and fix bugs
234
+ /dev:fix-fast <error> # Quick bug fix
235
+ /dev:fix-hard <error> # Complex bug (deep analysis)
236
+ /dev:test <scope> # Generate tests
237
+ /dev:tdd <feature> # Test-driven development
238
+ /dev:review [file] # Code review
141
239
  ```
142
240
 
143
- ### Planning
241
+ ### Planning (`/planning:*`)
242
+
144
243
  ```bash
145
- /plan <task> # Create implementation plan
146
- /plan:detailed # Detailed plan (2-5 min tasks)
147
- /brainstorm <topic> # Interactive brainstorming
148
- /research <topic> # Research technology
149
- /doc <target> # Generate documentation
244
+ /planning:plan <task> # Create implementation plan
245
+ /planning:plan-detailed # Detailed plan (2-5 min tasks)
246
+ /planning:brainstorm <topic> # Interactive brainstorming
247
+ /planning:research <topic> # Research technology
248
+ /planning:doc <target> # Generate documentation
150
249
  ```
151
250
 
152
- ### Git & Deploy
251
+ ### Git (`/git:*`)
252
+
153
253
  ```bash
154
- /commit [message] # Smart commit
155
- /ship [message] # Commit + PR
156
- /pr [title] # Create pull request
157
- /deploy [env] # Deploy to environment
254
+ /git:commit [message] # Smart commit with conventional format
255
+ /git:ship [message] # Commit + PR in one command
256
+ /git:pr [title] # Create pull request
257
+ /git:deploy [env] # Deploy to environment
158
258
  ```
159
259
 
160
- ### Quality
260
+ ### Quality (`/quality:*`)
261
+
161
262
  ```bash
162
- /security-scan # Scan for vulnerabilities
163
- /refactor <file> # Improve code structure
164
- /optimize <file> # Performance optimization
165
- /lint # Run linting
263
+ /quality:security-scan # Scan for vulnerabilities
264
+ /quality:refactor <file> # Improve code structure
265
+ /quality:optimize <file> # Performance optimization
266
+ /quality:lint # Run linting
166
267
  ```
167
268
 
168
- ### Omega
269
+ ### Omega (`/omega:*`)
270
+
169
271
  ```bash
170
- /10x <topic> # Find 10x improvement path
171
- /100x <topic> # Find 100x paradigm shift
172
- /1000x <topic> # Find 1000x moonshot
173
- /principles # Display 7 Omega Principles
174
- /dimensions # Display 10 Omega Dimensions
272
+ /omega:10x <topic> # Find 10x improvement path
273
+ /omega:100x <topic> # Find 100x paradigm shift
274
+ /omega:1000x <topic> # Find 1000x moonshot opportunity
275
+ /omega:principles # Display 7 Omega Principles
276
+ /omega:dimensions # Display 10 Omega Dimensions
175
277
  ```
176
278
 
177
- ### Sprint Management
279
+ ### Sprint Management (`/sprint:*`)
280
+
178
281
  ```bash
179
- /vision:set # Set product vision
180
- /vision:show # Display current vision
181
- /sprint:new [name] # Create new sprint
182
- /sprint:start # Start current sprint
183
- /sprint:current # Show sprint progress
184
- /sprint:end # End sprint + retrospective
185
- /backlog:add <task> # Add task to backlog
186
- /backlog:show # Display backlog
187
- /team:run [--mode] # Run AI team (full-auto|semi-auto|manual)
188
- /team:status # Show team activity
282
+ /sprint:vision-set # Set product vision
283
+ /sprint:vision-show # Display current vision
284
+ /sprint:sprint-new # Create new sprint
285
+ /sprint:sprint-start # Start current sprint
286
+ /sprint:sprint-current # Show sprint progress
287
+ /sprint:sprint-end # End sprint + retrospective
288
+ /sprint:backlog-add # Add task to backlog
289
+ /sprint:backlog-show # Display backlog
290
+ /sprint:team-run # Run AI team
291
+ /sprint:team-status # Show team activity
189
292
  ```
190
293
 
191
- ### Autonomous Development
294
+ ### Autonomous Development (`/auto:*`)
295
+
192
296
  ```bash
193
- /auto:init <idea> # Start discovery for new project
194
- /auto:start # Begin/continue autonomous execution
195
- /auto:status # Check project progress
196
- /auto:approve # Approve checkpoint to continue
197
- /auto:reject # Request changes with feedback
198
- /auto:resume # Resume from saved state
297
+ /auto:init <idea> # Start discovery for new project
298
+ /auto:start # Begin/continue autonomous execution
299
+ /auto:status # Check project progress
300
+ /auto:approve # Approve checkpoint to continue
301
+ /auto:reject # Request changes with feedback
302
+ /auto:resume # Resume from saved state
199
303
  ```
200
304
 
201
- ### Alignment & Dependencies ⭐
305
+ ### Alignment (`/alignment:*`)
306
+
202
307
  ```bash
203
- /alignment:health # Check system alignment health status
204
- /alignment:deps <type:name> # Show dependency graph tree
308
+ /alignment:health # Check system alignment health
309
+ /alignment:deps <type:name> # Show dependency graph
205
310
  ```
206
311
 
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
312
+ ### ML Systems (New - 31 commands)
212
313
 
213
- ## 🤖 Autonomous Development (14 Archetypes)
314
+ #### `/omgml:*` - Project Management
315
+ ```bash
316
+ /omgml:init # Initialize ML project structure
317
+ /omgml:status # Show ML project status
318
+ ```
214
319
 
215
- Build complete applications autonomously from idea to deployment.
320
+ #### `/omgdata:*` - Data Engineering
321
+ ```bash
322
+ /omgdata:collect # Collect data from sources
323
+ /omgdata:validate # Validate data quality
324
+ /omgdata:clean # Clean and preprocess data
325
+ /omgdata:split # Split train/val/test
326
+ /omgdata:version # Version datasets with DVC
327
+ ```
216
328
 
217
- | Archetype | Description |
218
- |-----------|-------------|
219
- | **SaaS MVP** | Multi-tenant SaaS with auth, payments |
220
- | **API Service** | Backend APIs for web/mobile apps |
221
- | **CLI Tool** | Command-line utilities |
222
- | **Library/SDK** | Reusable npm packages |
223
- | **Full-Stack App** | Complete web applications |
224
- | **Mobile App** | iOS/Android with React Native |
225
- | **AI-Powered App** | LLM apps with RAG, function calling |
226
- | **AI Model Building** | ML model training pipelines |
227
- | **Desktop App** | Electron cross-platform apps |
228
- | **IoT App** | Device management, real-time data |
229
- | **Game** | Unity/Godot game development |
230
- | **Simulation** | Scientific/engineering simulations |
231
- | **Microservices** | Distributed services with K8s, API gateway |
232
- | **Event-Driven** | Async systems with Kafka, CQRS, sagas |
329
+ #### `/omgfeature:*` - Feature Engineering
330
+ ```bash
331
+ /omgfeature:extract # Extract features from raw data
332
+ /omgfeature:select # Select important features
333
+ /omgfeature:store # Store in feature store
334
+ ```
233
335
 
234
- ### Artifacts System
336
+ #### `/omgtrain:*` - Model Training
337
+ ```bash
338
+ /omgtrain:baseline # Create baseline models
339
+ /omgtrain:train # Train model with config
340
+ /omgtrain:tune # Hyperparameter tuning
341
+ /omgtrain:evaluate # Evaluate model performance
342
+ /omgtrain:compare # Compare model versions
343
+ ```
235
344
 
236
- Provide project context through artifacts:
345
+ #### `/omgoptim:*` - Model Optimization
346
+ ```bash
347
+ /omgoptim:quantize # Quantize to INT8/FP16
348
+ /omgoptim:prune # Prune model weights
349
+ /omgoptim:distill # Knowledge distillation
350
+ /omgoptim:profile # Profile latency/memory
351
+ ```
237
352
 
353
+ #### `/omgdeploy:*` - Deployment
354
+ ```bash
355
+ /omgdeploy:package # Package model for deployment
356
+ /omgdeploy:serve # Deploy model serving
357
+ /omgdeploy:edge # Deploy to edge devices
358
+ /omgdeploy:cloud # Deploy to cloud platforms
359
+ /omgdeploy:ab # Setup A/B testing
238
360
  ```
239
- .omgkit/artifacts/
240
- ├── data/ # Sample data, schemas
241
- ├── docs/ # Requirements, user stories
242
- ├── knowledge/ # Glossary, business rules
243
- ├── research/ # Competitor analysis
244
- ├── assets/ # Images, templates
245
- └── examples/ # Code samples
361
+
362
+ #### `/omgops:*` - ML Operations
363
+ ```bash
364
+ /omgops:pipeline # Create ML pipeline
365
+ /omgops:monitor # Setup monitoring
366
+ /omgops:drift # Detect data/model drift
367
+ /omgops:retrain # Trigger retraining
368
+ /omgops:registry # Manage model registry
246
369
  ```
247
370
 
248
- ## 📋 Workflows (49)
371
+ ---
372
+
373
+ ## Workflows (61)
249
374
 
250
- Workflows are orchestrated sequences of agents, commands, and skills that guide complete development processes.
375
+ Workflows are orchestrated sequences of agents, commands, and skills.
251
376
 
252
377
  ### Development
378
+
253
379
  | Workflow | Description |
254
380
  |----------|-------------|
255
- | `feature` | Complete feature development from planning to PR |
256
- | `bug-fix` | Systematic debugging and resolution |
257
- | `refactor` | Code improvement and restructuring |
258
- | `code-review` | Comprehensive code review |
381
+ | `development/feature` | Complete feature from planning to PR |
382
+ | `development/bug-fix` | Systematic debugging and resolution |
383
+ | `development/refactor` | Code improvement and restructuring |
384
+ | `development/code-review` | Comprehensive code review |
259
385
 
260
386
  ### AI Engineering
261
- | Workflow | Description |
262
- |----------|-------------|
263
- | `rag-development` | Build complete RAG systems |
264
- | `model-evaluation` | AI model evaluation pipeline |
265
- | `prompt-engineering` | Systematic prompt optimization |
266
- | `agent-development` | Build AI agents |
267
- | `fine-tuning` | Model fine-tuning workflow |
268
387
 
269
- ### AI-ML Operations
270
388
  | Workflow | Description |
271
389
  |----------|-------------|
272
- | `data-pipeline` | Build ML data pipelines |
273
- | `experiment-cycle` | ML experiment tracking |
274
- | `model-deployment` | Model serving and deployment |
275
- | `monitoring-setup` | ML model monitoring |
276
- | `feature-engineering` | Feature store development |
390
+ | `ai-engineering/rag-development` | Build complete RAG systems |
391
+ | `ai-engineering/model-evaluation` | AI model evaluation pipeline |
392
+ | `ai-engineering/prompt-engineering` | Systematic prompt optimization |
393
+ | `ai-engineering/agent-development` | Build AI agents |
394
+ | `ai-engineering/fine-tuning` | Model fine-tuning workflow |
277
395
 
278
- ### Omega
279
- | Workflow | Description |
280
- |----------|-------------|
281
- | `10x-improvement` | Tactical enhancements |
282
- | `100x-architecture` | System redesign |
283
- | `1000x-innovation` | Industry transformation |
396
+ ### AI-ML Operations
284
397
 
285
- ### Sprint Management
286
398
  | Workflow | Description |
287
399
  |----------|-------------|
288
- | `sprint-setup` | Initialize and plan sprints |
289
- | `sprint-execution` | Execute sprint tasks |
290
- | `sprint-retrospective` | Review and improve |
400
+ | `ai-ml/data-pipeline` | Build ML data pipelines |
401
+ | `ai-ml/experiment-cycle` | ML experiment tracking |
402
+ | `ai-ml/model-deployment` | Model serving and deployment |
403
+ | `ai-ml/monitoring-setup` | ML model monitoring |
291
404
 
292
405
  ### Microservices
406
+
293
407
  | Workflow | Description |
294
408
  |----------|-------------|
295
- | `domain-decomposition` | DDD bounded context analysis |
296
- | `service-scaffolding` | Service template generation |
297
- | `contract-first` | API contract development |
298
- | `integration-testing` | Service integration tests |
299
- | `service-mesh-setup` | Istio/Linkerd configuration |
300
- | `distributed-tracing` | Tracing implementation |
409
+ | `microservices/domain-decomposition` | DDD bounded context analysis |
410
+ | `microservices/service-scaffolding` | Service template generation |
411
+ | `microservices/contract-first` | API contract development |
412
+ | `microservices/distributed-tracing` | Tracing implementation |
301
413
 
302
414
  ### Event-Driven
415
+
303
416
  | Workflow | Description |
304
417
  |----------|-------------|
305
- | `event-storming` | Domain event modeling |
306
- | `schema-evolution` | Event schema management |
307
- | `saga-implementation` | Distributed transaction patterns |
308
- | `replay-testing` | Event replay testing |
309
- | `consumer-groups` | Consumer group setup |
418
+ | `event-driven/event-storming` | Domain event modeling |
419
+ | `event-driven/saga-implementation` | Distributed transaction patterns |
420
+ | `event-driven/schema-evolution` | Event schema management |
310
421
 
311
422
  ### Game Development
423
+
312
424
  | Workflow | Description |
313
425
  |----------|-------------|
314
- | `prototype-to-production` | Game development lifecycle |
315
- | `content-pipeline` | Asset management |
316
- | `playtesting` | Testing and balancing |
317
- | `platform-submission` | Store submission |
426
+ | `game/prototype-to-production` | Game development lifecycle |
427
+ | `game/content-pipeline` | Asset management |
428
+ | `game/playtesting` | Testing and balancing |
318
429
 
319
- ### Other Categories
320
- - **Security**: `security-audit`, `penetration-testing`
321
- - **Database**: `schema-design`, `migration`, `optimization`
322
- - **API**: `api-design`, `api-testing`
323
- - **Full Stack**: `full-feature`, `authentication`
324
- - **Content**: `technical-docs`, `marketing`
325
- - **Research**: `technology-research`, `best-practices`
326
- - **Quality**: `performance-optimization`
430
+ ### Omega
327
431
 
328
- Use workflows with: `/workflow:<name> "description"`
432
+ | Workflow | Description |
433
+ |----------|-------------|
434
+ | `omega/10x-improvement` | Tactical enhancements |
435
+ | `omega/100x-architecture` | System redesign |
436
+ | `omega/1000x-innovation` | Industry transformation |
329
437
 
330
- ## 🎭 Modes (10)
438
+ ### ML Systems (New - 12 workflows)
331
439
 
332
- | Mode | Description |
333
- |------|-------------|
334
- | `default` | Balanced standard behavior |
335
- | `tutor` | Teaching mode with Feynman technique & Socratic questions |
336
- | `brainstorm` | Creative exploration |
337
- | `token-efficient` | Compressed output (30-70% savings) |
338
- | `deep-research` | Thorough analysis with citations |
339
- | `implementation` | Code-focused, minimal prose |
340
- | `review` | Critical analysis mode |
341
- | `orchestration` | Multi-task coordination |
342
- | `omega` | 10x-1000x thinking mode |
343
- | `autonomous` | AI team self-management |
440
+ | Workflow | Description |
441
+ |----------|-------------|
442
+ | `ml-systems/full-ml-lifecycle-workflow` | Complete ML lifecycle orchestration |
443
+ | `ml-systems/data-pipeline-workflow` | Data collection to feature store |
444
+ | `ml-systems/model-development-workflow` | Baseline to optimized models |
445
+ | `ml-systems/model-optimization-workflow` | Quantization, pruning, distillation |
446
+ | `ml-systems/production-deployment-workflow` | Model packaging to serving |
447
+ | `ml-systems/mlops-pipeline-workflow` | CI/CD for ML systems |
448
+ | `ml-systems/model-monitoring-workflow` | Drift detection and alerting |
449
+ | `ml-systems/experiment-tracking-workflow` | Systematic experimentation |
450
+ | `ml-systems/feature-engineering-workflow` | Feature extraction and selection |
451
+ | `ml-systems/model-retraining-workflow` | Automated retraining triggers |
452
+ | `ml-systems/edge-deployment-workflow` | Edge/mobile model deployment |
453
+ | `ml-systems/ab-testing-workflow` | A/B testing for models |
454
+
455
+ ---
456
+
457
+ ## Skills (145)
344
458
 
345
- Switch modes with: `/mode <name>`
459
+ Skills are domain expertise modules organized in 23 categories.
346
460
 
347
- ## 🔮 Omega Philosophy
461
+ ### AI Engineering (12 skills)
348
462
 
349
- ### 7 Omega Principles
463
+ Based on production AI application patterns:
350
464
 
351
- 1. **Ω1 Leverage Multiplication** - Build systems, not features
352
- 2. **Ω2 Transcendent Abstraction** - Solve classes, not instances
353
- 3. **Ω3 Agentic Decomposition** - Orchestrate specialists
354
- 4. **Ω4 Feedback Acceleration** - Compress loops
355
- 5. **Ω5 Zero-Marginal-Cost Scaling** - Build once, scale infinitely
356
- 6. **Ω6 Emergent Intelligence** - System > sum of parts
357
- 7. **Ω7 Aesthetic Perfection** - Excellence always
465
+ | Skill | Description |
466
+ |-------|-------------|
467
+ | `ai-engineering/foundation-models` | Model architecture, sampling, structured outputs |
468
+ | `ai-engineering/evaluation-methodology` | AI-as-judge, semantic similarity, ELO ranking |
469
+ | `ai-engineering/prompt-engineering` | Few-shot, chain-of-thought, injection defense |
470
+ | `ai-engineering/rag-systems` | Chunking, embedding, hybrid retrieval, reranking |
471
+ | `ai-engineering/ai-agents` | Tool use, ReAct, Plan-and-Execute, memory |
472
+ | `ai-engineering/finetuning` | LoRA, QLoRA, PEFT, model merging |
473
+ | `ai-engineering/inference-optimization` | Quantization, batching, caching, vLLM |
474
+ | `ai-engineering/guardrails-safety` | Input/output guards, PII protection |
358
475
 
359
- ### 7 Thinking Modes
476
+ ### ML Systems (18 skills - New)
360
477
 
361
- | Mode | Focus |
362
- |------|-------|
363
- | 🔭 Telescopic | Zoom out to see big picture |
364
- | 🔬 Microscopic | First principles analysis |
365
- | ↔️ Lateral | Different angles and industries |
366
- | 🔄 Inversion | Learn through failure |
367
- | ⏳ Temporal | Time dimension analysis |
368
- | 🕸️ Systemic | Interconnections and emergence |
369
- | ⚛️ Quantum | Multiple possibilities |
478
+ Based on Chip Huyen's "Designing ML Systems" and Stanford CS 329S:
370
479
 
371
- ## 🧠 Skills (128)
480
+ | Skill | Description |
481
+ |-------|-------------|
482
+ | `ml-systems/ml-systems-fundamentals` | Core ML concepts, design principles |
483
+ | `ml-systems/deep-learning-primer` | Neural network foundations |
484
+ | `ml-systems/dnn-architectures` | CNNs, RNNs, Transformers, hybrid models |
485
+ | `ml-systems/data-eng` | ML data pipelines, storage, processing |
486
+ | `ml-systems/training-data` | Sampling, labeling, augmentation |
487
+ | `ml-systems/feature-engineering` | Feature extraction, selection, stores |
488
+ | `ml-systems/ml-workflow` | Experiment design, model selection |
489
+ | `ml-systems/model-dev` | Training, evaluation, debugging |
490
+ | `ml-systems/ml-frameworks` | PyTorch, TensorFlow, scikit-learn |
491
+ | `ml-systems/efficient-ai` | Model compression, efficient architectures |
492
+ | `ml-systems/model-optimization` | Quantization, pruning, distillation |
493
+ | `ml-systems/ai-accelerators` | GPU/TPU optimization, hardware selection |
494
+ | `ml-systems/model-deployment` | Serving, containerization, scaling |
495
+ | `ml-systems/ml-serving-optimization` | Batching, caching, latency reduction |
496
+ | `ml-systems/edge-deployment` | TFLite, Core ML, TensorRT |
497
+ | `ml-systems/mlops` | CI/CD for ML, model registry, pipelines |
498
+ | `ml-systems/robust-ai` | Reliability, monitoring, drift detection |
499
+ | `ml-systems/deployment-paradigms` | Batch vs real-time vs streaming |
500
+
501
+ ### Methodology (17 skills)
372
502
 
373
- OMGKIT includes 128 skills across 22 categories:
503
+ | Skill | Description |
504
+ |-------|-------------|
505
+ | `methodology/writing-plans` | Implementation plan creation |
506
+ | `methodology/executing-plans` | Plan execution best practices |
507
+ | `methodology/debugging` | Systematic debugging approach |
508
+ | `methodology/code-review` | Review standards and checklists |
509
+ | `methodology/tdd` | Test-driven development |
374
510
 
375
- ### AI Engineering (12 skills)
376
- Based on Chip Huyen's "AI Engineering" book for building production AI applications:
511
+ ### Frameworks (10 skills)
377
512
 
378
513
  | Skill | Description |
379
514
  |-------|-------------|
380
- | `foundation-models` | Model architecture, sampling, structured outputs |
381
- | `evaluation-methodology` | AI-as-judge, semantic similarity, ELO ranking |
382
- | `ai-system-evaluation` | Benchmarks, model selection, cost analysis |
383
- | `prompt-engineering` | Few-shot, chain-of-thought, injection defense |
384
- | `rag-systems` | Chunking, embedding, hybrid retrieval, reranking |
385
- | `ai-agents` | Tool use, ReAct, Plan-and-Execute, memory |
386
- | `finetuning` | LoRA, QLoRA, PEFT, model merging |
387
- | `dataset-engineering` | Curation, deduplication, synthesis |
388
- | `inference-optimization` | Quantization, batching, caching, vLLM |
389
- | `ai-architecture` | Gateway, routing, observability |
390
- | `guardrails-safety` | Input/output guards, PII protection |
391
- | `user-feedback` | Explicit/implicit signals, A/B testing |
392
-
393
- ### Other Skill Categories
394
-
395
- | Category | Count | Description |
396
- |----------|-------|-------------|
515
+ | `frameworks/react` | React hooks, TypeScript, state management |
516
+ | `frameworks/nextjs` | App Router, Server Components, API routes |
517
+ | `frameworks/django` | DRF, ORM optimization, Celery tasks |
518
+ | `frameworks/fastapi` | Async/await, Pydantic v2, dependency injection |
519
+ | `frameworks/nestjs` | TypeScript, dependency injection, microservices |
520
+
521
+ ### Other Categories
522
+
523
+ | Category | Skills | Focus |
524
+ |----------|--------|-------|
397
525
  | AI-ML Operations | 6 | MLOps, feature stores, model serving |
398
- | Microservices | 6 | Service mesh, API gateway, distributed tracing |
399
- | Event-Driven | 6 | Kafka, event sourcing, CQRS, sagas |
400
- | Game Development | 5 | Unity, Godot, networking, shaders |
401
- | IoT | 5 | MQTT, edge computing, device management |
402
- | Mobile Advanced | 5 | React Native deep, CI/CD, offline-first |
403
- | Simulation | 5 | Numerical methods, physics, parallel computing |
404
- | Languages | 3 | Python, TypeScript, JavaScript |
405
- | Frameworks | 10 | React, Next.js, Django, FastAPI, etc. |
406
- | Backend | 4 | API architecture, caching, real-time |
407
- | Databases | 9 | PostgreSQL, MongoDB, Redis, migrations |
408
- | Frontend | 7 | Tailwind, shadcn/ui, Three.js, accessibility |
409
- | DevOps | 7 | Docker, Kubernetes, GitHub Actions, AWS |
410
- | Security | 4 | OWASP, OAuth, security hardening |
411
- | Testing | 3 | Pytest, Vitest, Playwright |
412
- | Methodology | 17 | TDD, code review, debugging practices |
413
- | Omega | 5 | Omega-level development practices |
414
-
415
- ## 🛠️ CLI Commands
526
+ | ML Systems | 18 | Production ML from data to deployment |
527
+ | Microservices | 6 | Service mesh, API gateway, tracing |
528
+ | Event-Driven | 6 | Kafka, event sourcing, CQRS |
529
+ | Game Development | 5 | Unity, Godot, networking |
530
+ | Databases | 9 | PostgreSQL, MongoDB, Redis |
531
+ | Frontend | 7 | Tailwind, shadcn/ui, accessibility |
532
+ | DevOps | 7 | Docker, Kubernetes, GitHub Actions |
533
+ | Security | 4 | OWASP, OAuth, hardening |
534
+
535
+ ---
536
+
537
+ ## Modes (10)
538
+
539
+ Modes configure Claude's behavior for different contexts.
540
+
541
+ | Mode | Description |
542
+ |------|-------------|
543
+ | `default` | Balanced standard behavior |
544
+ | `tutor` | Teaching mode with Feynman technique & Socratic questions |
545
+ | `brainstorm` | Creative exploration, divergent thinking |
546
+ | `token-efficient` | Compressed output (30-70% savings) |
547
+ | `deep-research` | Thorough analysis with citations |
548
+ | `implementation` | Code-focused, minimal prose |
549
+ | `review` | Critical analysis mode |
550
+ | `orchestration` | Multi-task coordination |
551
+ | `omega` | 10x-1000x thinking mode |
552
+ | `autonomous` | AI team self-management |
416
553
 
554
+ Switch modes:
417
555
  ```bash
418
- omgkit install # Install plugin to Claude Code
419
- omgkit init # Initialize .omgkit/ in project
420
- omgkit doctor # Check installation status
421
- omgkit list # List all components
422
- omgkit update # Update plugin
423
- omgkit uninstall # Remove plugin
424
- omgkit help # Show help
556
+ /context:mode <name>
425
557
  ```
426
558
 
427
- ## ✅ Before-Commit Validation
559
+ ---
428
560
 
429
- OMGKIT provides two types of before-commit rules:
561
+ ## Autonomous Development (14 Archetypes)
430
562
 
431
- | Rule Type | Location | Purpose |
432
- |-----------|----------|---------|
433
- | **OMGKIT Internal** | `plugin/stdrules/` | For OMGKIT contributors |
434
- | **Project Rules** | `.omgkit/stdrules/BEFORE_COMMIT.md` | For your projects |
563
+ Build complete applications from idea to deployment.
435
564
 
436
- ### For OMGKIT Contributors
565
+ | Archetype | Description |
566
+ |-----------|-------------|
567
+ | **SaaS MVP** | Multi-tenant SaaS with auth, payments |
568
+ | **API Service** | Backend APIs for web/mobile apps |
569
+ | **CLI Tool** | Command-line utilities |
570
+ | **Library/SDK** | Reusable npm packages |
571
+ | **Full-Stack App** | Complete web applications |
572
+ | **Mobile App** | iOS/Android with React Native |
573
+ | **AI-Powered App** | LLM apps with RAG, function calling |
574
+ | **AI Model Building** | ML model training pipelines |
575
+ | **Desktop App** | Electron cross-platform apps |
576
+ | **IoT App** | Device management, real-time data |
577
+ | **Game** | Unity/Godot game development |
578
+ | **Simulation** | Scientific/engineering simulations |
579
+ | **Microservices** | Distributed services with K8s |
580
+ | **Event-Driven** | Async systems with Kafka, CQRS |
437
581
 
438
- ```bash
439
- npm test # Run all 4800+ validation tests
440
- ```
582
+ ### How It Works
441
583
 
442
- | Category | Requirement |
443
- |----------|-------------|
444
- | **Agents** | 50+ lines, valid frontmatter, skills/commands arrays |
445
- | **Commands** | 15+ lines, description, registered as slash command |
446
- | **Skills** | 30+ lines, name/description if frontmatter present |
447
- | **Workflows** | 50+ lines, description, agents array |
584
+ 1. **Discovery**: AI asks questions to understand your vision
585
+ 2. **Planning**: Generates architecture, tasks, and timeline
586
+ 3. **Execution**: Autonomous development with checkpoints
587
+ 4. **Review**: Human approval at critical milestones
588
+ 5. **Iteration**: Feedback loop for refinements
448
589
 
449
- ### For Project Developers
590
+ ### Artifacts System
450
591
 
451
- When you run `omgkit init`, a comprehensive `BEFORE_COMMIT.md` is created with:
452
- - Code quality checks
453
- - Git commit standards
454
- - Security guidelines
455
- - Documentation requirements
592
+ Provide project context:
593
+
594
+ ```
595
+ .omgkit/artifacts/
596
+ ├── data/ # Sample data, schemas
597
+ ├── docs/ # Requirements, user stories
598
+ ├── knowledge/ # Glossary, business rules
599
+ ├── research/ # Competitor analysis
600
+ ├── assets/ # Images, templates
601
+ └── examples/ # Code samples
602
+ ```
456
603
 
457
- See [full documentation](https://omgkit.mintlify.app/resources/before-commit).
604
+ ---
458
605
 
459
- ## 📁 Project Structure
606
+ ## Project Structure
460
607
 
461
608
  After `omgkit init`:
462
609
 
@@ -471,65 +618,117 @@ your-project/
471
618
  │ ├── plans/ # Generated plans
472
619
  │ ├── docs/ # Generated docs
473
620
  │ ├── logs/ # Activity logs
474
- │ ├── devlogs/ # Development logs, planning, tracking (git-ignored)
475
- └── stdrules/ # Standards & rules for the project
476
- ├── BEFORE_COMMIT.md # Before-commit checklist
477
- └── SKILL_STANDARDS.md
478
- └── OMEGA.md # Project context
621
+ │ ├── devlogs/ # Development logs (git-ignored)
622
+ ├── stdrules/ # Project standards
623
+ ├── BEFORE_COMMIT.md
624
+ └── SKILL_STANDARDS.md
625
+ └── artifacts/ # Project context
626
+ └── OMEGA.md # Project context file
479
627
  ```
480
628
 
481
- ## 🔌 MCP Integrations
629
+ ---
630
+
631
+ ## MCP Integrations
482
632
 
483
- OMGKIT supports these MCP servers for enhanced capabilities:
633
+ OMGKIT supports these MCP servers:
484
634
 
485
635
  | Server | Purpose |
486
636
  |--------|---------|
487
- | Context7 | Up-to-date library documentation |
488
- | Sequential Thinking | Multi-step reasoning |
489
- | Memory | Persistent knowledge graph |
490
- | Filesystem | Secure file operations |
491
- | Playwright | Browser automation |
637
+ | `context7` | Up-to-date library documentation |
638
+ | `sequential-thinking` | Multi-step reasoning |
639
+ | `memory` | Persistent knowledge graph |
640
+ | `filesystem` | Secure file operations |
641
+ | `playwright` | Browser automation |
642
+
643
+ ---
492
644
 
493
- ## 🏗️ Optimized Alignment Principle (OAP)
645
+ ## Standards & Rules
494
646
 
495
- OMGKIT uses a **5-level component hierarchy** ensuring consistency and maintainability:
647
+ OMGKIT provides two types of standards:
648
+
649
+ ### For OMGKIT Contributors
650
+
651
+ Located in `plugin/stdrules/`:
652
+
653
+ | File | Purpose |
654
+ |------|---------|
655
+ | `ALIGNMENT_PRINCIPLE.md` | Component hierarchy rules |
656
+ | `OMGKIT_BEFORE_COMMIT_RULES.md` | Validation requirements |
657
+ | `SKILL_STANDARDS.md` | Skill documentation standards |
496
658
 
659
+ ### For Project Developers
660
+
661
+ Generated in `.omgkit/stdrules/` when you run `omgkit init`:
662
+
663
+ | File | Purpose |
664
+ |------|---------|
665
+ | `BEFORE_COMMIT.md` | Pre-commit checklist |
666
+ | `SKILL_STANDARDS.md` | Custom skill guidelines |
667
+
668
+ ---
669
+
670
+ ## CLI Commands
671
+
672
+ ```bash
673
+ omgkit install # Install plugin to Claude Code
674
+ omgkit init # Initialize .omgkit/ in project
675
+ omgkit doctor # Check installation status
676
+ omgkit list # List all components
677
+ omgkit update # Update plugin
678
+ omgkit uninstall # Remove plugin
679
+ omgkit help # Show help
497
680
  ```
498
- Level 0: MCPs (Foundation)
499
-
500
- Level 1: Commands → use MCPs
501
-
502
- Level 2: Skills → use Commands, MCPs
503
-
504
- Level 3: Agents → use Skills, Commands, MCPs
505
-
506
- Level 4: Workflows → use Agents, Skills, Commands, MCPs
681
+
682
+ ---
683
+
684
+ ## Validation & Testing
685
+
686
+ OMGKIT has 5600+ automated tests ensuring system integrity.
687
+
688
+ ### Run Tests
689
+
690
+ ```bash
691
+ npm test # All tests
692
+ npm test -- tests/validation/ # Validation tests only
693
+ npm test -- tests/unit/ # Unit tests only
507
694
  ```
508
695
 
509
- ### Five Alignment Rules
696
+ ### Test Categories
697
+
698
+ | Category | Tests | Purpose |
699
+ |----------|-------|---------|
700
+ | Registry Sync | ~200 | Verify registry matches files |
701
+ | Alignment | ~400 | Component hierarchy validation |
702
+ | Documentation | ~500 | Quality and format checks |
703
+ | Format | ~300 | Naming convention compliance |
704
+ | Dependency Graph | ~600 | Reference integrity |
510
705
 
511
- 1. **Format Compliance** - Components use correct naming patterns
512
- 2. **Existence Validation** - All references must exist
513
- 3. **No Cross-Type Confusion** - Components not confused with other types
514
- 4. **Hierarchical Respect** - Only reference same/lower level components
515
- 5. **Optimization** - Minimal, appropriate, unique references
706
+ ---
707
+
708
+ ## Contributing
709
+
710
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
711
+
712
+ ### Quick Start
516
713
 
517
- ### Component Formats
714
+ 1. Fork and clone the repository
715
+ 2. Install dependencies: `npm install`
716
+ 3. Run tests: `npm test`
717
+ 4. Make changes following `plugin/stdrules/`
718
+ 5. Submit PR with conventional commit messages
518
719
 
519
- | Component | Format | Example |
520
- |-----------|--------|---------|
521
- | MCPs | `kebab-case` | `context7` |
522
- | Commands | `/namespace:name` | `/dev:feature` |
523
- | Skills | `category/name` | `methodology/writing-plans` |
524
- | Agents | `kebab-case` | `fullstack-developer` |
525
- | Workflows | `category/name` | `development/feature` |
720
+ ---
721
+
722
+ ## Documentation
526
723
 
527
- All alignment rules are enforced by 400+ automated tests. See [full documentation](https://omgkit.mintlify.app/concepts/alignment-principle).
724
+ Full documentation available at: [omgkit.mintlify.app](https://omgkit.mintlify.app)
725
+
726
+ ---
528
727
 
529
- ## 📄 License
728
+ ## License
530
729
 
531
- MIT
730
+ MIT - See [LICENSE](LICENSE) for details.
532
731
 
533
732
  ---
534
733
 
535
- *Think Omega. Build Omega. Be Omega.* 🔮
734
+ *Think Omega. Build Omega. Be Omega.*