omgkit 2.22.10 → 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 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** | 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 |
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 (144)
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 (61)
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 (145)
457
+ ## Skills (157)
458
458
 
459
- Skills are domain expertise modules organized in 23 categories.
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 | 7 | Docker, Kubernetes, GitHub Actions |
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
  ---
@@ -589,18 +601,21 @@ Build complete applications from idea to deployment.
589
601
 
590
602
  ### Artifacts System
591
603
 
592
- Provide project context:
604
+ Provide project context with reference documents:
593
605
 
594
606
  ```
595
607
  .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
608
+ ├── README.md # How to use artifacts
609
+ ├── data/ # Sample data, schemas, data dictionaries
610
+ ├── docs/ # Requirements, user stories, PRDs
611
+ ├── knowledge/ # Glossary, business rules, domain knowledge
612
+ ├── research/ # Competitor analysis, market research
613
+ ├── assets/ # Reference images, templates, mockups
614
+ └── examples/ # Code samples, reference implementations
602
615
  ```
603
616
 
617
+ **Note:** Artifacts are **reference materials only**, NOT execution instructions. They help AI understand your project context.
618
+
604
619
  ---
605
620
 
606
621
  ## Project Structure
@@ -619,11 +634,16 @@ your-project/
619
634
  │ ├── docs/ # Generated docs
620
635
  │ ├── logs/ # Activity logs
621
636
  │ ├── devlogs/ # Development logs (git-ignored)
637
+ │ │ └── README.md
622
638
  │ ├── stdrules/ # Project standards
639
+ │ │ ├── README.md
623
640
  │ │ ├── BEFORE_COMMIT.md
624
- │ │ └── SKILL_STANDARDS.md
625
- │ └── artifacts/ # Project context
626
- └── OMEGA.md # Project context file
641
+ │ │ ├── SKILL_STANDARDS.md
642
+ └── TESTING_STANDARDS.md
643
+ └── artifacts/ # Project context (reference only)
644
+ │ └── README.md
645
+ ├── OMEGA.md # Project context file
646
+ └── CLAUDE.md # Claude Code instructions
627
647
  ```
628
648
 
629
649
  ---
package/lib/cli.js CHANGED
@@ -373,7 +373,8 @@ export function initProject(options = {}) {
373
373
  '.omgkit/docs',
374
374
  '.omgkit/logs',
375
375
  '.omgkit/devlogs',
376
- '.omgkit/stdrules'
376
+ '.omgkit/stdrules',
377
+ '.omgkit/artifacts'
377
378
  ];
378
379
 
379
380
  dirs.forEach(dir => {
@@ -397,7 +398,8 @@ export function initProject(options = {}) {
397
398
  { src: 'stdrules/README.md', dest: '.omgkit/stdrules/README.md' },
398
399
  { src: 'stdrules/SKILL_STANDARDS.md', dest: '.omgkit/stdrules/SKILL_STANDARDS.md' },
399
400
  { src: 'stdrules/BEFORE_COMMIT.md', dest: '.omgkit/stdrules/BEFORE_COMMIT.md' },
400
- { src: 'stdrules/TESTING_STANDARDS.md', dest: '.omgkit/stdrules/TESTING_STANDARDS.md' }
401
+ { src: 'stdrules/TESTING_STANDARDS.md', dest: '.omgkit/stdrules/TESTING_STANDARDS.md' },
402
+ { src: 'artifacts/README.md', dest: '.omgkit/artifacts/README.md' }
401
403
  ];
402
404
 
403
405
  templates.forEach(({ src, dest }) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.22.10",
4
- "description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 151 commands, 151 skills, 67 workflows.",
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",
@@ -17,10 +17,35 @@ Create `.omgkit/` directory structure.
17
17
  │ └── backlog.yaml
18
18
  ├── plans/
19
19
  ├── docs/
20
- └── logs/
20
+ ├── logs/
21
+ ├── devlogs/
22
+ │ └── README.md
23
+ ├── stdrules/
24
+ │ ├── README.md
25
+ │ ├── BEFORE_COMMIT.md
26
+ │ ├── SKILL_STANDARDS.md
27
+ │ └── TESTING_STANDARDS.md
28
+ └── artifacts/
29
+ └── README.md
21
30
  OMEGA.md
31
+ CLAUDE.md
22
32
  ```
23
33
 
34
+ ## Artifacts Folder
35
+
36
+ The `.omgkit/artifacts/` folder stores **reference documents** that provide context for AI-assisted development:
37
+
38
+ | Subfolder | Purpose |
39
+ |-----------|---------|
40
+ | `data/` | Sample data, schemas, data dictionaries |
41
+ | `docs/` | Requirements, user stories, PRDs |
42
+ | `knowledge/` | Glossary, business rules, domain knowledge |
43
+ | `research/` | Competitor analysis, market research |
44
+ | `assets/` | Reference images, templates, mockups |
45
+ | `examples/` | Code samples, reference implementations |
46
+
47
+ > **Note:** Artifacts are **reference materials only**, NOT execution instructions. They help AI understand your project context.
48
+
24
49
  ## Next Steps
25
50
  1. `/vision:set` - Set your product vision
26
51
  2. `/sprint:new` - Create first sprint
@@ -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.22.10
4
- # Updated: 2026-01-03
3
+ # Version: 2.23.0
4
+ # Updated: 2026-01-06
5
5
 
6
- version: "2.22.10"
6
+ version: "2.23.0"
7
7
 
8
8
  # =============================================================================
9
9
  # OPTIMIZED ALIGNMENT PRINCIPLE (OAP)