oh-my-customcode 0.30.5 → 0.30.7

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
@@ -151,6 +151,7 @@ All commands are invoked inside the Claude Code conversation.
151
151
  | `/sauron-watch` | Full R017 sync verification |
152
152
  | `/monitoring-setup` | OTel console monitoring enable/disable |
153
153
  | `/codex-exec` | Execute Codex CLI prompt |
154
+ | `/structured-dev-cycle` | 6-phase structured development cycle |
154
155
  | `/lists` | Show all available commands |
155
156
  | `/status` | System status and health checks |
156
157
  | `/help` | Help information |
@@ -167,7 +168,7 @@ All commands are invoked inside the Claude Code conversation.
167
168
  | **System** | 2 | sys-memory-keeper, sys-naggy |
168
169
  | **Languages** | 6 | lang-golang-expert, lang-python-expert, lang-rust-expert, lang-kotlin-expert, lang-typescript-expert, lang-java21-expert |
169
170
  | **Frontend** | 3 | fe-vercel-agent, fe-vuejs-agent, fe-svelte-agent |
170
- | **Backend** | 5 | be-fastapi-expert, be-springboot-expert, be-go-backend-expert, be-express-expert, be-nestjs-expert |
171
+ | **Backend** | 6 | be-fastapi-expert, be-springboot-expert, be-go-backend-expert, be-express-expert, be-nestjs-expert, be-django-expert |
171
172
  | **Tooling** | 3 | tool-npm-expert, tool-optimizer, tool-bun-expert |
172
173
  | **Data Engineering** | 6 | de-airflow-expert, de-dbt-expert, de-spark-expert, de-kafka-expert, de-snowflake-expert, de-pipeline-expert |
173
174
  | **Database** | 3 | db-supabase-expert, db-postgres-expert, db-redis-expert |
@@ -211,7 +212,7 @@ Comprehensive reference documentation covering:
211
212
 
212
213
  | Priority | Count | Purpose |
213
214
  |----------|-------|---------|
214
- | **MUST** | 11 | Safety, permissions, agent design (enforced) |
215
+ | **MUST** | 12 | Safety, permissions, agent design (enforced) |
215
216
  | **SHOULD** | 5 | Interactions, error handling (recommended) |
216
217
  | **MAY** | 1 | Optimization guidelines (optional) |
217
218
 
@@ -271,27 +272,27 @@ After `omcustom init`:
271
272
  ```
272
273
  your-project/
273
274
  ├── CLAUDE.md # Entry point for Claude
274
- └── .claude/
275
- ├── rules/ # Behavior rules (18 total)
276
- ├── hooks/ # Event hooks (2 total)
277
- ├── contexts/ # Context files (4 total)
278
- ├── agents/ # Agent definitions (43 flat .md files)
279
- ├── lang-golang-expert.md
280
- │ ├── be-fastapi-expert.md
281
- │ ├── mgr-creator.md
282
- └── ...
283
- ├── skills/ # Skill modules (67 directories, each with SKILL.md)
284
- ├── go-best-practices/
285
- │ ├── react-best-practices/
286
- │ ├── secretary-routing/
287
- └── ...
288
- ├── ontology/ # Ontology knowledge graph for RAG context
289
- │ ├── schema.yaml
290
- ├── agents.yaml
291
- │ ├── skills.yaml
292
- │ ├── rules.yaml
293
- │ └── graphs/
294
- └── guides/ # Reference docs (23 total)
275
+ ├── .claude/
276
+ ├── agents/ # Agent definitions (43 flat .md files)
277
+ │ │ ├── lang-golang-expert.md
278
+ │ │ ├── be-fastapi-expert.md
279
+ │ │ ├── mgr-creator.md
280
+ │ └── ...
281
+ │ ├── skills/ # Skill modules (67 directories, each with SKILL.md)
282
+ ├── go-best-practices/
283
+ │ ├── react-best-practices/
284
+ │ │ ├── secretary-routing/
285
+ │ └── ...
286
+ │ ├── ontology/ # Ontology knowledge graph for RAG context
287
+ ├── schema.yaml
288
+ │ ├── agents.yaml
289
+ │ │ ├── skills.yaml
290
+ ├── rules.yaml
291
+ │ └── graphs/
292
+ │ ├── rules/ # Behavior rules (18 total)
293
+ │ ├── hooks/ # Event hooks (2 total)
294
+ │ └── contexts/ # Context files (4 total)
295
+ └── guides/ # Reference docs (23 total)
295
296
  ```
296
297
 
297
298
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-customcode",
3
- "version": "0.30.5",
3
+ "version": "0.30.7",
4
4
  "description": "Batteries-included agent harness for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
@@ -125,6 +125,7 @@ Violation = immediate correction. No exception for "small changes".
125
125
  | R008 | Tool Identification | **ENFORCED** - Display agent when using ANY tool |
126
126
  | R009 | Parallel Execution | **ENFORCED** - Parallel execution, large task decomposition |
127
127
  | R010 | Orchestrator Coordination | **ENFORCED** - Orchestrator coordination, session continuity, direct action prohibition |
128
+ | R015 | Intent Transparency | **ENFORCED** - Transparent agent routing |
128
129
  | R016 | Continuous Improvement | **ENFORCED** - Update rules when violations occur |
129
130
  | R017 | Sync Verification | **ENFORCED** - Verify sync before structural changes |
130
131
  | R018 | Agent Teams | **ENFORCED (Conditional)** - Mandatory for qualifying tasks when Agent Teams enabled |
@@ -137,7 +138,6 @@ Violation = immediate correction. No exception for "small changes".
137
138
  | R011 | Memory Integration | Session persistence with claude-mem |
138
139
  | R012 | HUD Statusline | Real-time status display |
139
140
  | R013 | Ecomode | Token efficiency for batch ops |
140
- | R015 | Intent Transparency | **MUST** - Transparent agent routing |
141
141
 
142
142
  ### MAY (Optional)
143
143
  | ID | Rule | Description |
@@ -219,12 +219,13 @@ This is the core oh-my-customcode philosophy: **"No expert? CREATE one, connect
219
219
  | SW Engineer/Tooling | 3 | tool-npm-expert, tool-optimizer, tool-bun-expert |
220
220
  | DE Engineer | 6 | de-airflow-expert, de-dbt-expert, de-spark-expert, de-kafka-expert, de-snowflake-expert, de-pipeline-expert |
221
221
  | SW Engineer/Database | 3 | db-supabase-expert, db-postgres-expert, db-redis-expert |
222
+ | Security | 1 | sec-codeql-expert |
222
223
  | SW Architect | 2 | arch-documenter, arch-speckit-agent |
223
224
  | Infra Engineer | 2 | infra-docker-expert, infra-aws-expert |
224
225
  | QA Team | 3 | qa-planner, qa-writer, qa-engineer |
225
226
  | Manager | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
226
227
  | System | 2 | sys-memory-keeper, sys-naggy |
227
- | **Total** | **42** | |
228
+ | **Total** | **43** | |
228
229
 
229
230
  ## Agent Teams (MUST when enabled)
230
231
 
@@ -125,6 +125,7 @@ oh-my-customcode로 구동됩니다.
125
125
  | R008 | 도구 식별 | **강제** - 모든 도구 사용 시 에이전트 표시 |
126
126
  | R009 | 병렬 실행 | **강제** - 병렬 실행, 대규모 작업 분해 |
127
127
  | R010 | 오케스트레이터 조율 | **강제** - 오케스트레이터 조율, 세션 연속성, 직접 실행 금지 |
128
+ | R015 | 의도 투명성 | **강제** - 투명한 에이전트 라우팅 |
128
129
  | R016 | 지속적 개선 | **강제** - 위반 발생 시 규칙 업데이트 |
129
130
  | R017 | 동기화 검증 | **강제** - 구조 변경 전 검증 |
130
131
  | R018 | Agent Teams | **강제(조건부)** - Agent Teams 활성화 시 적합한 작업에 필수 사용 |
@@ -137,7 +138,6 @@ oh-my-customcode로 구동됩니다.
137
138
  | R011 | 메모리 통합 | claude-mem을 통한 세션 지속성 |
138
139
  | R012 | HUD 상태줄 | 실시간 상태 표시 |
139
140
  | R013 | Ecomode | 배치 작업 토큰 효율성 |
140
- | R015 | 의도 투명성 | **필수** - 투명한 에이전트 라우팅 |
141
141
 
142
142
  ### MAY (선택)
143
143
  | ID | 규칙 | 설명 |
@@ -219,12 +219,13 @@ project/
219
219
  | SW Engineer/Tooling | 3 | tool-npm-expert, tool-optimizer, tool-bun-expert |
220
220
  | DE Engineer | 6 | de-airflow-expert, de-dbt-expert, de-spark-expert, de-kafka-expert, de-snowflake-expert, de-pipeline-expert |
221
221
  | SW Engineer/Database | 3 | db-supabase-expert, db-postgres-expert, db-redis-expert |
222
+ | Security | 1 | sec-codeql-expert |
222
223
  | SW Architect | 2 | arch-documenter, arch-speckit-agent |
223
224
  | Infra Engineer | 2 | infra-docker-expert, infra-aws-expert |
224
225
  | QA Team | 3 | qa-planner, qa-writer, qa-engineer |
225
226
  | Manager | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
226
227
  | System | 2 | sys-memory-keeper, sys-naggy |
227
- | **총계** | **42** | |
228
+ | **총계** | **43** | |
228
229
 
229
230
  ## Agent Teams (MUST when enabled)
230
231
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.30.5",
2
+ "version": "0.30.7",
3
3
  "lastUpdated": "2026-03-09T00:00:00.000Z",
4
4
  "components": [
5
5
  {