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 +1 -1
- package/plugin/registry.yaml +2 -2
- package/templates/CLAUDE.md +20 -5
package/package.json
CHANGED
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.22.
|
|
3
|
+
# Version: 2.22.10
|
|
4
4
|
# Updated: 2026-01-03
|
|
5
5
|
|
|
6
|
-
version: "2.22.
|
|
6
|
+
version: "2.22.10"
|
|
7
7
|
|
|
8
8
|
# =============================================================================
|
|
9
9
|
# OPTIMIZED ALIGNMENT PRINCIPLE (OAP)
|
package/templates/CLAUDE.md
CHANGED
|
@@ -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
|
|
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)
|