claude-nexus 0.14.0 → 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.0",
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.0",
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,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 + additionalContext guidance |
126
+ | `PreToolUse` | Edit/Write: blocks when tasks.json missing. Nexus internal paths exempted |
127
+ | `Stop` | Blocks exit with pending tasks. Forces nx_task_close when all completed |
127
128
 
128
129
  </details>
129
130
 
package/README.md CHANGED
@@ -120,8 +120,9 @@ Gate 단일 모듈로 동작합니다.
120
120
 
121
121
  | 이벤트 | 역할 |
122
122
  |--------|------|
123
- | `UserPromptSubmit` | 프롬프트 전처리 컨텍스트 주입 |
124
- | `Stop` | 세션 종료 후처리 |
123
+ | `UserPromptSubmit` | 태그 감지 모드 활성화 + TASK_PIPELINE 주입 + additionalContext 안내 |
124
+ | `PreToolUse` | Edit/Write: tasks.json 없으면 차단. Nexus 내부 경로는 예외 허용 |
125
+ | `Stop` | pending 태스크 있으면 종료 차단. all completed면 nx_task_close 강제 |
125
126
 
126
127
  </details>
127
128
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.14.0
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());