omgkit 2.22.9 → 2.22.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.22.9",
3
+ "version": "2.22.10",
4
4
  "description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 151 commands, 151 skills, 67 workflows.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -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.9
3
+ # Version: 2.22.10
4
4
  # Updated: 2026-01-03
5
5
 
6
- version: "2.22.9"
6
+ version: "2.22.10"
7
7
 
8
8
  # =============================================================================
9
9
  # OPTIMIZED ALIGNMENT PRINCIPLE (OAP)
@@ -21,11 +21,12 @@ This project uses **OMGKIT** - an AI Team System for Claude Code with 41 Agents,
21
21
 
22
22
  ## MANDATORY: Read Before Tasks
23
23
 
24
- | Task Type | Read First |
25
- |-----------|------------|
26
- | Writing Tests | `.omgkit/stdrules/TESTING_STANDARDS.md` |
27
- | Before Commit | `.omgkit/stdrules/BEFORE_COMMIT.md` |
28
- | New Feature | `.omgkit/config.yaml` for project settings |
24
+ | Task Type | Read First | Also Consider |
25
+ |-----------|------------|---------------|
26
+ | Writing Tests | `.omgkit/stdrules/TESTING_STANDARDS.md` | Spawn `tester` agent for complex tests |
27
+ | Before Commit | `.omgkit/stdrules/BEFORE_COMMIT.md` | Run `/quality:test-omega` |
28
+ | New Feature | `.omgkit/config.yaml` | Use `/dev:tdd` for TDD approach |
29
+ | Security Testing | `.omgkit/stdrules/TESTING_STANDARDS.md` | Run `/quality:test-security` |
29
30
 
30
31
  ## Development Workflow Rules
31
32
 
@@ -94,6 +95,20 @@ Before completing any task:
94
95
 
95
96
  ## AUTOMATIC RULES: Testing (Always Apply)
96
97
 
98
+ ### Quick Reference - Testing Commands
99
+ When user asks about testing, suggest these commands:
100
+ - `/dev:test-write <function>` - Write comprehensive tests (RECOMMENDED)
101
+ - `/dev:tdd <feature>` - Test-driven development
102
+ - `/quality:test-omega` - Run full 4D testing suite
103
+ - `/quality:test-property` - Property-based testing
104
+ - `/quality:test-security` - Security testing
105
+ - `/quality:test-mutate` - Mutation testing
106
+
107
+ ### Agent & Workflow
108
+ For complex testing tasks, spawn the `tester` agent or run workflow:
109
+ - Agent: `tester` - Comprehensive testing specialist
110
+ - Workflow: `testing/comprehensive-testing`
111
+
97
112
  When writing ANY test, Claude MUST automatically apply these rules:
98
113
 
99
114
  ### 1. Minimum Test Coverage (MANDATORY)