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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.en.md +2 -3
- package/README.md +2 -3
- package/VERSION +1 -1
- package/bridge/mcp-server.cjs +2 -3
- package/bridge/mcp-server.cjs.map +2 -2
- package/package.json +1 -1
- package/scripts/gate.cjs +32 -54
- package/scripts/gate.cjs.map +2 -2
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
|
|
126
|
-
| `PreToolUse` | Edit/Write: blocks
|
|
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
|
|
124
|
-
| `PreToolUse` | Edit/Write:
|
|
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.
|
|
1
|
+
0.15.0
|
package/bridge/mcp-server.cjs
CHANGED
|
@@ -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:
|
|
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
|
|
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());
|