omgkit 2.22.8 → 2.22.9

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,7 +1,7 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.22.8",
4
- "description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 150 commands, 151 skills, 67 workflows.",
3
+ "version": "2.22.9",
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",
7
7
  "ai",
@@ -0,0 +1,216 @@
1
+ ---
2
+ description: Write comprehensive tests following OMGKIT Omega Testing methodology
3
+ allowed-tools: Task, Read, Write, Bash, Glob
4
+ argument-hint: <function-or-file>
5
+ ---
6
+
7
+ # Write Omega-Level Tests
8
+
9
+ You are writing tests for the specified function, component, or file using the OMGKIT Omega Testing methodology.
10
+
11
+ ## MANDATORY: Read First
12
+ Before writing any test, read `.omgkit/stdrules/TESTING_STANDARDS.md` for full methodology.
13
+
14
+ ## Execution Steps
15
+
16
+ ### Step 1: Analyze Target
17
+ 1. Read the target function/component code
18
+ 2. Identify input types and expected outputs
19
+ 3. List all code paths (if/else, try/catch, loops)
20
+ 4. Identify user input points (security-relevant)
21
+
22
+ ### Step 2: Apply 4D Testing
23
+
24
+ **Dimension 1: Accuracy**
25
+ - Unit tests for each function
26
+ - Integration tests for component interaction
27
+ - E2E tests for critical flows
28
+
29
+ **Dimension 2: Performance** (if critical path)
30
+ ```javascript
31
+ it('should complete within SLA', async () => {
32
+ const start = performance.now();
33
+ await operation();
34
+ expect(performance.now() - start).toBeLessThan(100);
35
+ });
36
+ ```
37
+
38
+ **Dimension 3: Security** (if user input)
39
+ ```javascript
40
+ const MALICIOUS = [
41
+ "'; DROP TABLE users; --",
42
+ "<script>alert('xss')</script>",
43
+ "../../../etc/passwd"
44
+ ];
45
+ MALICIOUS.forEach(input => {
46
+ it(`should sanitize: ${input.slice(0, 20)}...`, () => {
47
+ expect(() => processInput(input)).not.toThrow();
48
+ });
49
+ });
50
+ ```
51
+
52
+ **Dimension 4: Accessibility** (if UI)
53
+ - Keyboard navigation
54
+ - ARIA labels
55
+ - Screen reader compatibility
56
+
57
+ ### Step 3: Boundary Value Testing (NEVER SKIP)
58
+
59
+ ```javascript
60
+ // Numbers
61
+ [0, -0, 1, -1, Number.MAX_SAFE_INTEGER, NaN, Infinity]
62
+
63
+ // Strings
64
+ ['', ' ', 'a'.repeat(10000), '\n\t\r', '🔮', '\x00']
65
+
66
+ // Arrays
67
+ [[], [null], [undefined], Array(10000).fill(0)]
68
+
69
+ // Objects
70
+ [{}, null, undefined, {nested: {deep: {}}}]
71
+ ```
72
+
73
+ ### Step 4: Test Structure
74
+
75
+ ```javascript
76
+ describe('FunctionName', () => {
77
+ // Setup
78
+ beforeEach(() => {});
79
+
80
+ // 1. Happy path
81
+ describe('when given valid input', () => {
82
+ it('should return expected output', () => {});
83
+ });
84
+
85
+ // 2. Edge cases
86
+ describe('edge cases', () => {
87
+ it('should handle empty input', () => {});
88
+ it('should handle null/undefined', () => {});
89
+ it('should handle boundary values', () => {});
90
+ });
91
+
92
+ // 3. Error handling
93
+ describe('error handling', () => {
94
+ it('should throw on invalid input', () => {});
95
+ it('should return error for edge cases', () => {});
96
+ });
97
+
98
+ // 4. Security (if applicable)
99
+ describe('security', () => {
100
+ it('should sanitize malicious input', () => {});
101
+ it('should prevent injection attacks', () => {});
102
+ });
103
+
104
+ // 5. Performance (if critical)
105
+ describe('performance', () => {
106
+ it('should complete within SLA', () => {});
107
+ });
108
+ });
109
+ ```
110
+
111
+ ### Step 5: Run and Verify
112
+
113
+ ```bash
114
+ # Run tests
115
+ npm test
116
+
117
+ # Check coverage
118
+ npm run test:coverage
119
+
120
+ # Run mutation testing (if available)
121
+ npx stryker run
122
+ ```
123
+
124
+ ## Output Checklist
125
+
126
+ Before completing, verify:
127
+ - [ ] Happy path tested
128
+ - [ ] All edge cases covered (empty, null, undefined, boundaries)
129
+ - [ ] Error handling tested
130
+ - [ ] Security inputs tested (if user-facing)
131
+ - [ ] Coverage > 80%
132
+ - [ ] Tests are Fast, Independent, Repeatable
133
+
134
+ ## Example Output
135
+
136
+ For a function `calculateDiscount(price, percentage)`:
137
+
138
+ ```javascript
139
+ import { describe, it, expect } from 'vitest';
140
+ import { calculateDiscount } from './pricing';
141
+
142
+ describe('calculateDiscount', () => {
143
+ // Happy path
144
+ it('should calculate 10% discount correctly', () => {
145
+ expect(calculateDiscount(100, 10)).toBe(90);
146
+ });
147
+
148
+ it('should calculate 50% discount correctly', () => {
149
+ expect(calculateDiscount(200, 50)).toBe(100);
150
+ });
151
+
152
+ // Edge cases - boundaries
153
+ describe('boundary values', () => {
154
+ it('should handle 0% discount', () => {
155
+ expect(calculateDiscount(100, 0)).toBe(100);
156
+ });
157
+
158
+ it('should handle 100% discount', () => {
159
+ expect(calculateDiscount(100, 100)).toBe(0);
160
+ });
161
+
162
+ it('should handle price of 0', () => {
163
+ expect(calculateDiscount(0, 50)).toBe(0);
164
+ });
165
+
166
+ it('should handle very large prices', () => {
167
+ expect(calculateDiscount(Number.MAX_SAFE_INTEGER, 10))
168
+ .toBeLessThan(Number.MAX_SAFE_INTEGER);
169
+ });
170
+ });
171
+
172
+ // Edge cases - null/undefined
173
+ describe('null and undefined handling', () => {
174
+ it('should throw on null price', () => {
175
+ expect(() => calculateDiscount(null, 10)).toThrow();
176
+ });
177
+
178
+ it('should throw on undefined percentage', () => {
179
+ expect(() => calculateDiscount(100, undefined)).toThrow();
180
+ });
181
+ });
182
+
183
+ // Error handling
184
+ describe('invalid input', () => {
185
+ it('should throw on negative price', () => {
186
+ expect(() => calculateDiscount(-100, 10)).toThrow('Price must be positive');
187
+ });
188
+
189
+ it('should throw on percentage > 100', () => {
190
+ expect(() => calculateDiscount(100, 150)).toThrow('Invalid percentage');
191
+ });
192
+
193
+ it('should throw on negative percentage', () => {
194
+ expect(() => calculateDiscount(100, -10)).toThrow('Invalid percentage');
195
+ });
196
+ });
197
+
198
+ // Security (if applicable)
199
+ describe('security', () => {
200
+ it('should reject string injection in price', () => {
201
+ expect(() => calculateDiscount("100; DROP TABLE", 10)).toThrow();
202
+ });
203
+ });
204
+
205
+ // Performance
206
+ describe('performance', () => {
207
+ it('should calculate 1000 discounts under 10ms', () => {
208
+ const start = performance.now();
209
+ for (let i = 0; i < 1000; i++) {
210
+ calculateDiscount(100, 10);
211
+ }
212
+ expect(performance.now() - start).toBeLessThan(10);
213
+ });
214
+ });
215
+ });
216
+ ```
@@ -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.8
3
+ # Version: 2.22.9
4
4
  # Updated: 2026-01-03
5
5
 
6
- version: "2.22.8"
6
+ version: "2.22.9"
7
7
 
8
8
  # =============================================================================
9
9
  # OPTIMIZED ALIGNMENT PRINCIPLE (OAP)
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## OMGKIT-Powered Project
4
4
 
5
- This project uses **OMGKIT** - an AI Team System for Claude Code with 23 Agents, 58 Commands, 88 Skills, and 10 Modes.
5
+ This project uses **OMGKIT** - an AI Team System for Claude Code with 41 Agents, 151 Commands, 151 Skills, and 10 Modes.
6
6
 
7
7
  ## Project Structure
8
8
 
@@ -92,4 +92,67 @@ Before completing any task:
92
92
 
93
93
  ---
94
94
 
95
+ ## AUTOMATIC RULES: Testing (Always Apply)
96
+
97
+ When writing ANY test, Claude MUST automatically apply these rules:
98
+
99
+ ### 1. Minimum Test Coverage (MANDATORY)
100
+ Every function/component MUST have tests for:
101
+ - ✅ Happy path (normal input)
102
+ - ✅ Empty/null/undefined inputs
103
+ - ✅ Boundary values (0, -1, MAX_INT, empty string, etc.)
104
+ - ✅ Error cases (invalid input → throw/return error)
105
+ - ✅ Security inputs (if user-facing): `"'; DROP TABLE; --"`, `"<script>alert('xss')</script>"`
106
+
107
+ ### 2. Test Template (ALWAYS USE)
108
+ ```javascript
109
+ describe('functionName', () => {
110
+ // 1. Happy path
111
+ it('should handle normal input', () => {});
112
+
113
+ // 2. Edge cases (NEVER SKIP)
114
+ it('should handle empty input', () => {});
115
+ it('should handle null/undefined', () => {});
116
+ it('should handle boundary values', () => {});
117
+
118
+ // 3. Error handling
119
+ it('should throw/return error for invalid input', () => {});
120
+
121
+ // 4. Security (if user input)
122
+ it('should sanitize malicious input', () => {});
123
+ });
124
+ ```
125
+
126
+ ### 3. Boundary Values Reference
127
+ ```javascript
128
+ // Always test these values
129
+ const BOUNDARIES = {
130
+ numbers: [0, -0, 1, -1, Number.MAX_SAFE_INTEGER, Number.MIN_SAFE_INTEGER, NaN, Infinity],
131
+ strings: ['', ' ', 'a'.repeat(10000), '\n\t\r', '🔮💀', '\x00'],
132
+ arrays: [[], [null], [undefined], new Array(10000).fill(0)]
133
+ };
134
+ ```
135
+
136
+ ### 4. Security Test Inputs
137
+ ```javascript
138
+ // ALWAYS test with these if function handles user input
139
+ const MALICIOUS = [
140
+ "'; DROP TABLE users; --",
141
+ "<script>alert('xss')</script>",
142
+ "../../../etc/passwd",
143
+ "{{constructor.constructor('return this')()}}"
144
+ ];
145
+ ```
146
+
147
+ ### 5. F.I.R.S.T Principles
148
+ - **Fast**: Unit < 1ms, Integration < 100ms
149
+ - **Independent**: No shared state between tests
150
+ - **Repeatable**: No random, no time-dependent
151
+ - **Self-Validating**: Explicit assertions
152
+ - **Timely**: Write with code
153
+
154
+ > **Full documentation**: `.omgkit/stdrules/TESTING_STANDARDS.md`
155
+
156
+ ---
157
+
95
158
  *Think Omega. Build Omega. Be Omega.*