oh-my-customcode 0.30.2 → 0.30.3

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
@@ -93,15 +93,67 @@ Claude Code selects the appropriate model and parallelizes independent tasks (up
93
93
  └── qa-engineer:sonnet — test generation
94
94
  ```
95
95
 
96
- ### Built-in Commands
97
-
98
- | Command | Agent | Description |
99
- |---------|-------|-------------|
100
- | `/create-agent <name>` | mgr-creator | Create a new agent |
101
- | `/update-docs` | mgr-updater | Sync docs with project structure |
102
- | `/audit-agents` | mgr-supplier | Verify agent dependencies |
103
- | `/dev-review` | lang-* experts | Review code with expert agents |
104
- | `/sauron-watch` | mgr-sauron | Full synchronization check |
96
+ ### Slash Commands
97
+
98
+ All commands are invoked inside the Claude Code conversation.
99
+
100
+ #### Analysis & Research
101
+
102
+ | Command | Description |
103
+ |---------|-------------|
104
+ | `/analysis` | Analyze project and auto-configure agents, skills, rules |
105
+ | `/research` | 10-team parallel deep analysis with cross-verification |
106
+
107
+ #### Development
108
+
109
+ | Command | Description |
110
+ |---------|-------------|
111
+ | `/dev-review` | Code review against best practices |
112
+ | `/dev-refactor` | Code refactoring for better structure |
113
+
114
+ #### Agent Management
115
+
116
+ | Command | Description |
117
+ |---------|-------------|
118
+ | `/create-agent` | Create new agent |
119
+ | `/update-docs` | Sync project structure and documentation |
120
+ | `/update-external` | Update agents from external sources |
121
+ | `/audit-agents` | Audit agent dependencies |
122
+ | `/fix-refs` | Fix broken references |
123
+
124
+ #### Memory
125
+
126
+ | Command | Description |
127
+ |---------|-------------|
128
+ | `/memory-save` | Save session context to claude-mem |
129
+ | `/memory-recall` | Search and recall memories |
130
+
131
+ #### DevOps & Publishing
132
+
133
+ | Command | Description |
134
+ |---------|-------------|
135
+ | `/npm-publish` | Publish package to npm registry |
136
+ | `/npm-version` | Semantic version management |
137
+ | `/npm-audit` | Dependency security audit |
138
+
139
+ #### Optimization
140
+
141
+ | Command | Description |
142
+ |---------|-------------|
143
+ | `/optimize-analyze` | Bundle and performance analysis |
144
+ | `/optimize-bundle` | Bundle size optimization |
145
+ | `/optimize-report` | Generate optimization report |
146
+
147
+ #### Verification & System
148
+
149
+ | Command | Description |
150
+ |---------|-------------|
151
+ | `/sauron-watch` | Full R017 sync verification |
152
+ | `/monitoring-setup` | OTel console monitoring enable/disable |
153
+ | `/codex-exec` | Execute Codex CLI prompt |
154
+ | `/lists` | Show all available commands |
155
+ | `/status` | System status and health checks |
156
+ | `/help` | Help information |
105
157
 
106
158
  ---
107
159
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-customcode",
3
- "version": "0.30.2",
3
+ "version": "0.30.3",
4
4
  "description": "Batteries-included agent harness for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
@@ -52,6 +52,12 @@ The main conversation is the **sole orchestrator**. It uses routing skills to de
52
52
  ║ YES → Good. Continue. ║
53
53
  ║ NO → STOP. This is a VIOLATION. Re-route to mgr-gitnerd. ║
54
54
  ║ ║
55
+ ║ 4. Am I about to spawn 2+ agents in parallel? ║
56
+ ║ YES → Check R018: Agent Teams may be REQUIRED ║
57
+ ║ 3+ agents → MUST use Agent Teams ║
58
+ ║ 2+ issues in batch → SHOULD use Agent Teams ║
59
+ ║ NO → Proceed ║
60
+ ║ ║
55
61
  ║ If ANY answer is wrong → SPLIT THE TASK ║
56
62
  ╚══════════════════════════════════════════════════════════════════╝
57
63
  ```
@@ -15,7 +15,12 @@ Independent (MUST parallelize):
15
15
 
16
16
  Examples: creating multiple agents, reviewing multiple files, batch operations on different resources.
17
17
 
18
- ## Agent Teams Gate (R018 Integration)
18
+ ## CRITICAL: Agent Teams Gate (R018)
19
+
20
+ > **WARNING**: Before spawning 2+ parallel agents, you MUST evaluate Agent Teams eligibility.
21
+ > Skipping this check is a VIOLATION of both R009 and R018.
22
+ >
23
+ > Quick rule: **3+ agents OR review cycle OR 2+ issues in same batch → Agent Teams (MUST)**
19
24
 
20
25
  Before spawning parallel Agent instances, evaluate Agent Teams eligibility:
21
26
 
@@ -211,6 +211,19 @@ Round N:
211
211
  |---|------|--------|----------|-------|
212
212
  ```
213
213
 
214
+ ## Post-Research Advisory
215
+
216
+ After research completion, the orchestrator SHOULD display:
217
+
218
+ ```
219
+ [Advisory] Research complete.
220
+ ├── For complex implementations (10+ files): /structured-dev-cycle
221
+ ├── For quick planning: EnterPlanMode (plan mode)
222
+ └── For simple tasks (< 3 files): proceed directly
223
+ ```
224
+
225
+ This advisory is informational only and does not block execution.
226
+
214
227
  ## Fallback Behavior
215
228
 
216
229
  | Scenario | Fallback |
@@ -2,7 +2,7 @@
2
2
  name: structured-dev-cycle
3
3
  description: 6-stage structured development cycle with stage-based tool restrictions
4
4
  version: 1.0.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  ---
7
7
 
8
8
  # Structured Development Cycle
@@ -17,7 +17,12 @@ Powered by oh-my-customcode.
17
17
  | [agent-name] -> Tool: {tool} |
18
18
  | [agent-name] -> Target: {path} |
19
19
  | |
20
- | If NO to either -> FIX IMMEDIATELY before continuing |
20
+ | |
21
+ | 3. Am I about to spawn 2+ agents? |
22
+ | YES -> Check R018: Agent Teams may be REQUIRED |
23
+ | 3+ agents OR review cycle -> Agent Teams (MUST) |
24
+ | |
25
+ | If NO to any -> FIX IMMEDIATELY before continuing |
21
26
  +==================================================================+
22
27
  ```
23
28
 
@@ -164,6 +169,7 @@ Violation = immediate correction. No exception for "small changes".
164
169
  | `/optimize-bundle` | Optimize bundle size |
165
170
  | `/optimize-report` | Generate optimization report |
166
171
  | `/sauron-watch` | Full R017 verification |
172
+ | `/structured-dev-cycle` | 6-stage structured development cycle (Plan → Verify → Implement → Verify → Compound → Done) |
167
173
  | `/lists` | Show all available commands |
168
174
  | `/status` | Show system status |
169
175
  | `/help` | Show help information |
@@ -17,6 +17,11 @@ oh-my-customcode로 구동됩니다.
17
17
  | [에이전트명] -> Tool: {도구} |
18
18
  | [에이전트명] -> Target: {경로} |
19
19
  | |
20
+ | |
21
+ | 3. 2개 이상 에이전트를 스폰하려 하는가? |
22
+ | YES -> R018 체크: Agent Teams 필수 여부 확인 |
23
+ | 3+ 에이전트 OR 리뷰 사이클 -> Agent Teams 필수 |
24
+ | |
20
25
  | 하나라도 NO면 -> 즉시 수정 후 계속 |
21
26
  +==================================================================+
22
27
  ```
@@ -164,6 +169,7 @@ oh-my-customcode로 구동됩니다.
164
169
  | `/optimize-bundle` | 번들 크기 최적화 |
165
170
  | `/optimize-report` | 최적화 리포트 생성 |
166
171
  | `/sauron-watch` | 전체 R017 검증 |
172
+ | `/structured-dev-cycle` | 6단계 구조적 개발 사이클 (Plan → Verify → Implement → Verify → Compound → Done) |
167
173
  | `/lists` | 모든 사용 가능한 커맨드 표시 |
168
174
  | `/status` | 시스템 상태 표시 |
169
175
  | `/help` | 도움말 표시 |
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.30.2",
2
+ "version": "0.30.3",
3
3
  "lastUpdated": "2026-03-09T00:00:00.000Z",
4
4
  "components": [
5
5
  {