omgkit 2.22.11 → 2.23.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 +20 -8
- package/package.json +2 -2
- package/plugin/registry.yaml +3 -3
- package/plugin/skills/devops/dora-metrics/SKILL.md +852 -0
- package/plugin/skills/devops/feature-flags/SKILL.md +559 -0
- package/plugin/skills/methodology/stacked-diffs/SKILL.md +568 -0
- package/plugin/skills/testing/chaos-engineering/SKILL.md +732 -0
package/README.md
CHANGED
|
@@ -37,9 +37,9 @@ All coordinated through **Omega-level thinking** - a framework for finding break
|
|
|
37
37
|
| Component | Count | Description |
|
|
38
38
|
|-----------|-------|-------------|
|
|
39
39
|
| **Agents** | 41 | Specialized AI team members with distinct roles |
|
|
40
|
-
| **Commands** |
|
|
41
|
-
| **Workflows** |
|
|
42
|
-
| **Skills** |
|
|
40
|
+
| **Commands** | 151 | Slash commands for every development task |
|
|
41
|
+
| **Workflows** | 67 | Complete development processes from idea to deploy |
|
|
42
|
+
| **Skills** | 157 | Domain expertise modules across 24 categories |
|
|
43
43
|
| **Modes** | 10 | Behavioral configurations for different contexts |
|
|
44
44
|
| **Archetypes** | 14 | Project templates for autonomous development |
|
|
45
45
|
|
|
@@ -222,7 +222,7 @@ Agents are specialized AI team members, each with distinct expertise and respons
|
|
|
222
222
|
|
|
223
223
|
---
|
|
224
224
|
|
|
225
|
-
## Commands (
|
|
225
|
+
## Commands (151)
|
|
226
226
|
|
|
227
227
|
Commands are slash-prefixed actions organized by namespace.
|
|
228
228
|
|
|
@@ -370,7 +370,7 @@ Commands are slash-prefixed actions organized by namespace.
|
|
|
370
370
|
|
|
371
371
|
---
|
|
372
372
|
|
|
373
|
-
## Workflows (
|
|
373
|
+
## Workflows (67)
|
|
374
374
|
|
|
375
375
|
Workflows are orchestrated sequences of agents, commands, and skills.
|
|
376
376
|
|
|
@@ -454,9 +454,9 @@ Workflows are orchestrated sequences of agents, commands, and skills.
|
|
|
454
454
|
|
|
455
455
|
---
|
|
456
456
|
|
|
457
|
-
## Skills (
|
|
457
|
+
## Skills (157)
|
|
458
458
|
|
|
459
|
-
Skills are domain expertise modules organized in
|
|
459
|
+
Skills are domain expertise modules organized in 24 categories.
|
|
460
460
|
|
|
461
461
|
### AI Engineering (12 skills)
|
|
462
462
|
|
|
@@ -518,6 +518,17 @@ Based on Chip Huyen's "Designing ML Systems" and Stanford CS 329S:
|
|
|
518
518
|
| `frameworks/fastapi` | Async/await, Pydantic v2, dependency injection |
|
|
519
519
|
| `frameworks/nestjs` | TypeScript, dependency injection, microservices |
|
|
520
520
|
|
|
521
|
+
### BigTech Workflow Alignment (4 skills - New)
|
|
522
|
+
|
|
523
|
+
Skills aligning OMGKIT with Google, Meta, Netflix, and Amazon engineering practices:
|
|
524
|
+
|
|
525
|
+
| Skill | Description | BigTech Reference |
|
|
526
|
+
|-------|-------------|-------------------|
|
|
527
|
+
| `devops/feature-flags` | Progressive delivery, canary releases, A/B testing | Netflix, LaunchDarkly |
|
|
528
|
+
| `testing/chaos-engineering` | Fault injection, game days, resilience testing | Netflix Chaos Monkey |
|
|
529
|
+
| `devops/dora-metrics` | Deployment frequency, lead time, MTTR tracking | Google DORA Research |
|
|
530
|
+
| `methodology/stacked-diffs` | Stacked PRs for parallel code review | Meta Engineering |
|
|
531
|
+
|
|
521
532
|
### Other Categories
|
|
522
533
|
|
|
523
534
|
| Category | Skills | Focus |
|
|
@@ -529,7 +540,8 @@ Based on Chip Huyen's "Designing ML Systems" and Stanford CS 329S:
|
|
|
529
540
|
| Game Development | 5 | Unity, Godot, networking |
|
|
530
541
|
| Databases | 9 | PostgreSQL, MongoDB, Redis |
|
|
531
542
|
| Frontend | 7 | Tailwind, shadcn/ui, accessibility |
|
|
532
|
-
| DevOps |
|
|
543
|
+
| DevOps | 9 | Docker, Kubernetes, GitHub Actions, DORA, Feature Flags |
|
|
544
|
+
| Testing | 10 | Comprehensive, chaos, mutation, security |
|
|
533
545
|
| Security | 4 | OWASP, OAuth, hardening |
|
|
534
546
|
|
|
535
547
|
---
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omgkit",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 151 commands,
|
|
3
|
+
"version": "2.23.0",
|
|
4
|
+
"description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 151 commands, 157 skills, 67 workflows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
7
7
|
"ai",
|
package/plugin/registry.yaml
CHANGED
|
@@ -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.
|
|
4
|
-
# Updated: 2026-01-
|
|
3
|
+
# Version: 2.23.0
|
|
4
|
+
# Updated: 2026-01-06
|
|
5
5
|
|
|
6
|
-
version: "2.
|
|
6
|
+
version: "2.23.0"
|
|
7
7
|
|
|
8
8
|
# =============================================================================
|
|
9
9
|
# OPTIMIZED ALIGNMENT PRINCIPLE (OAP)
|