claude-nexus 0.14.1 → 0.15.0

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.1",
10
+ "version": "0.15.0",
11
11
  "author": {
12
12
  "name": "kih"
13
13
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.14.1",
3
+ "version": "0.15.0",
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,8 @@ Nexus registers a single Gate module as a Claude Code hook.
122
122
 
123
123
  | Event | Role |
124
124
  |-------|------|
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 |
125
+ | `UserPromptSubmit` | Tag detection → mode activation + TASK_PIPELINE injection + additionalContext guidance |
126
+ | `PreToolUse` | Edit/Write: blocks when tasks.json missing. Nexus internal paths exempted |
127
127
  | `Stop` | Blocks exit with pending tasks. Forces nx_task_close when all completed |
128
128
 
129
129
  </details>
@@ -152,7 +152,6 @@ Runtime state is stored under `.nexus/` and is excluded from git.
152
152
  │ ├── decisions.json ← Architecture decision list
153
153
  │ ├── consult.json ← Consultation issue tracker
154
154
  │ ├── history.json ← Cycle archive (created by nx_task_close)
155
- │ ├── mode.json ← Execution mode (dev/research, sub/team)
156
155
  │ └── artifacts/ ← Team artifacts
157
156
  └── sync-state.json ← Last sync commit
158
157
  ```
package/README.md CHANGED
@@ -120,8 +120,8 @@ Gate 단일 모듈로 동작합니다.
120
120
 
121
121
  | 이벤트 | 역할 |
122
122
  |--------|------|
123
- | `UserPromptSubmit` | 태그 감지 → 모드 활성화 + TASK_PIPELINE 주입. mode.json 생성 |
124
- | `PreToolUse` | Edit/Write: mode.json 존재 시 Lead 차단, tasks.json 없으면 차단. Agent: team 모드에서 직접 호출 차단. TeamCreate: path를 team으로 전환 |
123
+ | `UserPromptSubmit` | 태그 감지 → 모드 활성화 + TASK_PIPELINE 주입 + additionalContext 안내 |
124
+ | `PreToolUse` | Edit/Write: tasks.json 없으면 차단. Nexus 내부 경로는 예외 허용 |
125
125
  | `Stop` | pending 태스크 있으면 종료 차단. all completed면 nx_task_close 강제 |
126
126
 
127
127
  </details>
@@ -150,7 +150,6 @@ Gate 단일 모듈로 동작합니다.
150
150
  │ ├── decisions.json ← 아키텍처 결정 목록
151
151
  │ ├── consult.json ← 상담 논점 추적
152
152
  │ ├── history.json ← 사이클 아카이브 (nx_task_close 시 생성)
153
- │ ├── mode.json ← 실행 모드 (dev/research, sub/team)
154
153
  │ └── artifacts/ ← 팀 산출물
155
154
  └── sync-state.json ← 마지막 sync 커밋
156
155
  ```
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.14.1
1
+ 0.15.0
@@ -21170,7 +21170,7 @@ var import_path4 = require("path");
21170
21170
  function registerContextTool(server2) {
21171
21171
  server2.tool(
21172
21172
  "nx_context",
21173
- "Get context: active team mode, tasks summary, branch",
21173
+ "Get context: tasks summary, decisions, branch",
21174
21174
  // eslint-disable-next-line @typescript-eslint/no-empty-object-type
21175
21175
  {},
21176
21176
  async () => {
@@ -22355,8 +22355,7 @@ function registerTaskTools(server2) {
22355
22355
  ensureDir(root);
22356
22356
  await (0, import_promises5.writeFile)(historyPath, JSON.stringify(history, null, 2));
22357
22357
  const deleted = [];
22358
- const modePath = (0, import_path10.join)(root, "mode.json");
22359
- for (const p of [consultJsonPath, decisionsJsonPath, tasksPath(), modePath]) {
22358
+ for (const p of [consultJsonPath, decisionsJsonPath, tasksPath()]) {
22360
22359
  if ((0, import_fs10.existsSync)(p)) {
22361
22360
  (0, import_fs10.unlinkSync)(p);
22362
22361
  deleted.push(p.split("/").pop());