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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.en.md +3 -2
- package/README.md +3 -2
- 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/skills/nx-consult/SKILL.md +1 -3
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` |
|
|
126
|
-
| `
|
|
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
|
-
| `
|
|
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.
|
|
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());
|