claude-nexus 0.14.0 → 0.14.1

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.
@@ -7,7 +7,7 @@
7
7
  {
8
8
  "name": "claude-nexus",
9
9
  "description": "Agent orchestration plugin for Claude Code. Injects optimized context per agent role with minimal overhead.",
10
- "version": "0.14.0",
10
+ "version": "0.14.1",
11
11
  "author": {
12
12
  "name": "kih"
13
13
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "Agent orchestration plugin for Claude Code — optimized context injection per role",
5
5
  "author": {
6
6
  "name": "kih"
package/README.en.md CHANGED
@@ -122,8 +122,9 @@ Nexus registers a single Gate module as a Claude Code hook.
122
122
 
123
123
  | Event | Role |
124
124
  |-------|------|
125
- | `UserPromptSubmit` | Prompt preprocessing and context injection |
126
- | `Stop` | Post-session cleanup |
125
+ | `UserPromptSubmit` | Tag detection mode activation + TASK_PIPELINE injection. Creates mode.json |
126
+ | `PreToolUse` | Edit/Write: blocks Lead when mode.json exists or tasks.json missing. Agent: blocks direct calls in team mode. TeamCreate: switches path to team |
127
+ | `Stop` | Blocks exit with pending tasks. Forces nx_task_close when all completed |
127
128
 
128
129
  </details>
129
130
 
@@ -151,6 +152,7 @@ Runtime state is stored under `.nexus/` and is excluded from git.
151
152
  │ ├── decisions.json ← Architecture decision list
152
153
  │ ├── consult.json ← Consultation issue tracker
153
154
  │ ├── history.json ← Cycle archive (created by nx_task_close)
155
+ │ ├── mode.json ← Execution mode (dev/research, sub/team)
154
156
  │ └── artifacts/ ← Team artifacts
155
157
  └── sync-state.json ← Last sync commit
156
158
  ```
package/README.md CHANGED
@@ -120,8 +120,9 @@ Gate 단일 모듈로 동작합니다.
120
120
 
121
121
  | 이벤트 | 역할 |
122
122
  |--------|------|
123
- | `UserPromptSubmit` | 프롬프트 전처리 컨텍스트 주입 |
124
- | `Stop` | 세션 종료 후처리 |
123
+ | `UserPromptSubmit` | 태그 감지 모드 활성화 + TASK_PIPELINE 주입. mode.json 생성 |
124
+ | `PreToolUse` | Edit/Write: mode.json 존재 시 Lead 차단, tasks.json 없으면 차단. Agent: team 모드에서 직접 호출 차단. TeamCreate: path를 team으로 전환 |
125
+ | `Stop` | pending 태스크 있으면 종료 차단. all completed면 nx_task_close 강제 |
125
126
 
126
127
  </details>
127
128
 
@@ -149,6 +150,7 @@ Gate 단일 모듈로 동작합니다.
149
150
  │ ├── decisions.json ← 아키텍처 결정 목록
150
151
  │ ├── consult.json ← 상담 논점 추적
151
152
  │ ├── history.json ← 사이클 아카이브 (nx_task_close 시 생성)
153
+ │ ├── mode.json ← 실행 모드 (dev/research, sub/team)
152
154
  │ └── artifacts/ ← 팀 산출물
153
155
  └── sync-state.json ← 마지막 sync 커밋
154
156
  ```
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.14.0
1
+ 0.14.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "type": "module",
5
5
  "description": "Agent orchestration plugin for Claude Code — optimized context injection per role",
6
6
  "author": "kih",
@@ -31,7 +31,6 @@ triggers: ["consult", "상담", "어떻게 하면 좋을까", "뭐가 좋을까"
31
31
  - 탐색 결과를 바탕으로 논의해야 할 논점 목록을 도출
32
32
  - `nx_consult_start(topic, issues)`로 consult.json에 등록
33
33
  - 사용자에게 논점 목록을 보여주고 순서대로 진행할 것을 안내
34
- - **예외**: 논점이 1개이고 선택지가 명확하면 consult.json 없이 바로 Step 3으로 (간소화)
35
34
 
36
35
  ### Step 3: 논점별 상담
37
36
 
@@ -62,8 +61,7 @@ triggers: ["consult", "상담", "어떻게 하면 좋을까", "뭐가 좋을까"
62
61
  ### Step 4: 결정 기록
63
62
 
64
63
  사용자가 결정하면 `[d]` 태그로 기록한다.
65
- - consult.json이 있으면: gate.ts가 `nx_consult_decide` 호출 안내 (consult.json + decisions.json 동시 갱신)
66
- - consult.json이 없으면: 기존 `nx_decision_add` 사용
64
+ - gate.ts가 `nx_consult_decide` 호출 안내 (consult.json + decisions.json 동시 갱신)
67
65
 
68
66
  ### Step 5: 다음 논점 또는 완료
69
67