oh-my-customcodex 0.1.7 → 0.1.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/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  **[한국어 문서 (Korean)](./README_ko.md)**
15
15
 
16
- 48 agents. 108 skills. 22 rules. One command.
16
+ 48 agents. 109 skills. 22 rules. One command.
17
17
 
18
18
  ```bash
19
19
  npm install -g oh-my-customcodex && cd your-project && omcodex init
@@ -132,14 +132,14 @@ Each agent declares its tools, model, memory scope, and limitations in YAML fron
132
132
 
133
133
  ---
134
134
 
135
- ### Skills (108)
135
+ ### Skills (109)
136
136
 
137
137
  | Category | Count | Includes |
138
138
  |----------|-------|----------|
139
139
  | Best Practices | 24 | Go, Python, TypeScript, Kotlin, Rust, React, FastAPI, Spring Boot, Django, Flutter, Docker, AWS, Postgres, Redis, Kafka, dbt, Spark, Snowflake, Airflow, pipeline-architecture-patterns, alembic, and more |
140
140
  | Routing | 4 | secretary, dev-lead, de-lead, qa-lead |
141
141
  | Workflow | 13 | structured-dev-cycle, deep-plan, research, evaluator-optimizer, dag-orchestration, worker-reviewer-pipeline, reasoning-sandwich, pipeline, and more |
142
- | Development | 9 | dev-review, dev-refactor, analysis, create-agent, intent-detection, web-design-guidelines, omcodex:takeover, skill-extractor, idea |
142
+ | Development | 10 | dev-review, dev-refactor, analysis, create-agent, intent-detection, web-design-guidelines, omcodex:takeover, skill-extractor, pre-generation-arch-check, idea |
143
143
  | Operations | 10 | update-docs, audit-agents, sauron-watch, monitoring-setup, token-efficiency-audit, fix-refs, release-notes, and more |
144
144
  | Memory | 3 | memory-save, memory-recall, memory-management |
145
145
  | Package | 3 | npm-publish, npm-version, npm-audit |
@@ -166,6 +166,7 @@ All commands are invoked inside the oh-my-customcodex GPT Codex + OMX session.
166
166
  | `/research` | 10-team parallel analysis with cross-verification |
167
167
  | `/sdd-dev` | Spec-Driven Development workflow |
168
168
  | `/ambiguity-gate` | Pre-routing ambiguity analysis |
169
+ | `/pre-generation-arch-check` | Check architecture risks before implementation |
169
170
  | `/adversarial-review` | Attacker-mindset security code review |
170
171
  | `/pipeline` | Execute YAML-defined pipelines |
171
172
  | `/pipeline resume` | Resume a halted pipeline from last failure point |
package/dist/cli/index.js CHANGED
@@ -3087,7 +3087,7 @@ var init_package = __esm(() => {
3087
3087
  workspaces: [
3088
3088
  "packages/*"
3089
3089
  ],
3090
- version: "0.1.7",
3090
+ version: "0.1.9",
3091
3091
  description: "Batteries-included agent harness on top of GPT Codex + OMX",
3092
3092
  type: "module",
3093
3093
  bin: {
package/dist/index.js CHANGED
@@ -2173,7 +2173,7 @@ var package_default = {
2173
2173
  workspaces: [
2174
2174
  "packages/*"
2175
2175
  ],
2176
- version: "0.1.7",
2176
+ version: "0.1.9",
2177
2177
  description: "Batteries-included agent harness on top of GPT Codex + OMX",
2178
2178
  type: "module",
2179
2179
  bin: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "0.1.7",
6
+ "version": "0.1.9",
7
7
  "description": "Batteries-included agent harness on top of GPT Codex + OMX",
8
8
  "type": "module",
9
9
  "bin": {
@@ -18,6 +18,8 @@ Auto-activates when: 4+ parallel tasks, batch operations, 80%+ context usage, or
18
18
 
19
19
  **Compression**: File lists -> count only (unless < 5), error traces -> first/last 3 lines, code -> path:line ref only.
20
20
 
21
+ **Pruning Transparency**: When input pruning occurs, include a compact report line such as `[Pruned] {n} files, ~{tokens} tokens saved` so the user can see what was compressed away.
22
+
21
23
  ## Config
22
24
 
23
25
  ```yaml
@@ -0,0 +1,80 @@
1
+ ---
2
+ name: pre-generation-arch-check
3
+ description: Check planned code changes for architecture and responsibility violations before implementation
4
+ scope: package
5
+ argument-hint: "<change-request-summary>"
6
+ user-invocable: true
7
+ ---
8
+
9
+ # Pre-Generation Architecture Check
10
+
11
+ Review a requested change before code generation begins and warn about likely architecture violations.
12
+
13
+ This skill fills a gap between planning and implementation:
14
+
15
+ - `adversarial-review` focuses on attacker-minded risk after code exists
16
+ - `deep-verify` focuses on release-quality verification after code exists
17
+ - `pre-generation-arch-check` focuses on architecture hygiene before code is written
18
+
19
+ ## What It Checks
20
+
21
+ The skill looks for likely violations of:
22
+
23
+ - R006 separation of concerns
24
+ - compilation metaphor integrity
25
+ - wrong-layer ownership
26
+ - accidental orchestrator responsibility expansion
27
+ - speculative wrappers or abstractions that do not earn their cost
28
+
29
+ ## Inputs
30
+
31
+ Provide a short request summary, optionally including likely files or modules.
32
+
33
+ Examples:
34
+
35
+ ```text
36
+ /pre-generation-arch-check add a background sync service to updater.ts
37
+ /pre-generation-arch-check move routing logic into the agent file instead of the routing skill
38
+ ```
39
+
40
+ ## Output Contract
41
+
42
+ ### No concern
43
+
44
+ ```text
45
+ [ARCH-CHECK] CLEAR
46
+
47
+ Request appears consistent with current architecture.
48
+ ```
49
+
50
+ ### Warning
51
+
52
+ ```text
53
+ [ARCH-WARNING] Severity: MEDIUM
54
+ Boundary: routing vs agent definition
55
+ Concern: Request would move reusable routing logic into an agent artifact
56
+ Why: Violates compilation metaphor and R006 separation of concerns
57
+ Safer shape: Keep logic in a skill or routing layer; keep agent file declarative
58
+ ```
59
+
60
+ ## Heuristics
61
+
62
+ - warn when a request mixes skill logic with agent artifacts
63
+ - warn when orchestrator responsibilities expand into direct file-writing logic
64
+ - warn when a request introduces a new abstraction without a clear reuse or boundary win
65
+ - warn when a change smells like the wrong layer owns the behavior
66
+ - prefer concise warnings with one safer alternative
67
+
68
+ ## Integration
69
+
70
+ Use before:
71
+
72
+ - major refactors
73
+ - new workflow or routing features
74
+ - multi-file cross-layer changes
75
+
76
+ Good pairings:
77
+
78
+ - `pre-generation-arch-check` -> `deep-plan`
79
+ - `pre-generation-arch-check` -> `structured-dev-cycle`
80
+ - `pre-generation-arch-check` -> implementation
@@ -104,7 +104,7 @@ oh-my-customcodex로 구동됩니다.
104
104
  | 릴리즈 | `/pipeline auto-dev`, `/omcodex-release-notes`, `/release-plan` | 자동 개발, 릴리즈 노트 |
105
105
  | 리서치 | `/research`, `/scout`, `/deep-plan`, `/omcodex:agora` | 병렬 분석, URL 평가, 연구 계획 |
106
106
  | 메모리 | `/memory-save`, `/memory-recall` | 세션 메모리 관리 |
107
- | 시스템 | `/token-efficiency-audit`, `/omcodex:lists`, `/omcodex:status`, `/omcodex:help` | 토큰 효율 감사, 전체 목록, 상태, 도움말 |
107
+ | 시스템 | `/token-efficiency-audit`, `/pre-generation-arch-check`, `/omcodex:lists`, `/omcodex:status`, `/omcodex:help` | 토큰 효율/아키텍처 감사, 전체 목록, 상태, 도움말 |
108
108
 
109
109
  > 전체 커맨드 목록 (60+ 커맨드): `/omcodex:lists` 실행
110
110
 
@@ -115,7 +115,7 @@ project/
115
115
  +-- AGENTS.md # 진입점
116
116
  +-- .codex/
117
117
  | +-- agents/ # 서브에이전트 정의 (48 파일)
118
- | +-- skills/ # 스킬 (108 디렉토리)
118
+ | +-- skills/ # 스킬 (109 디렉토리)
119
119
  | +-- rules/ # 전역 규칙 (R000-R022)
120
120
  | +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
121
121
  | +-- contexts/ # 컨텍스트 파일 (ecomode)
@@ -118,6 +118,7 @@ NO EXCEPTIONS. NO EXCUSES.
118
118
  | `/optimize-report` | Generate optimization report |
119
119
  | `/research` | 10-team parallel deep analysis and cross-verification |
120
120
  | `/deep-plan` | Research-validated planning (research → plan → verify) |
121
+ | `/pre-generation-arch-check` | Check architecture risks before implementation |
121
122
  | `/omcodex:sauron-watch` | Full R017 verification |
122
123
  | `/structured-dev-cycle` | 6-stage structured development cycle (Plan → Verify → Implement → Verify → Compound → Done) |
123
124
  | `/omcodex:lists` | Show all available commands |
@@ -131,7 +132,7 @@ project/
131
132
  +-- AGENTS.md # Entry point
132
133
  +-- .codex/
133
134
  | +-- agents/ # Subagent definitions (48 files)
134
- | +-- skills/ # Skills (108 directories)
135
+ | +-- skills/ # Skills (109 directories)
135
136
  | +-- rules/ # Global rules (22 files)
136
137
  | +-- hooks/ # Hook scripts (security, validation, HUD)
137
138
  | +-- contexts/ # Context files (4 files)
@@ -118,6 +118,7 @@ oh-my-customcodex로 구동됩니다.
118
118
  | `/optimize-report` | 최적화 리포트 생성 |
119
119
  | `/research` | 10-team 병렬 딥 분석 및 교차 검증 |
120
120
  | `/deep-plan` | 연구 검증 기반 계획 수립 (research → plan → verify) |
121
+ | `/pre-generation-arch-check` | 구현 전 아키텍처 위험 점검 |
121
122
  | `/omcodex:sauron-watch` | 전체 R017 검증 |
122
123
  | `/structured-dev-cycle` | 6단계 구조적 개발 사이클 (Plan → Verify → Implement → Verify → Compound → Done) |
123
124
  | `/omcodex:lists` | 모든 사용 가능한 커맨드 표시 |
@@ -131,7 +132,7 @@ project/
131
132
  +-- AGENTS.md # 진입점
132
133
  +-- .codex/
133
134
  | +-- agents/ # 서브에이전트 정의 (48 파일)
134
- | +-- skills/ # 스킬 (108 디렉토리)
135
+ | +-- skills/ # 스킬 (109 디렉토리)
135
136
  | +-- rules/ # 전역 규칙 (22 파일)
136
137
  | +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
137
138
  | +-- contexts/ # 컨텍스트 파일 (4 파일)
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "0.1.7",
3
- "lastUpdated": "2026-04-19T08:21:30.000Z",
2
+ "version": "0.1.9",
3
+ "lastUpdated": "2026-04-19T08:50:00.000Z",
4
4
  "components": [
5
5
  {
6
6
  "name": "rules",
@@ -18,7 +18,7 @@
18
18
  "name": "skills",
19
19
  "path": ".codex/skills",
20
20
  "description": "Reusable skill modules (includes slash commands)",
21
- "files": 108
21
+ "files": 109
22
22
  },
23
23
  {
24
24
  "name": "guides",