claude-nexus 0.12.0 → 0.13.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 +11 -7
- package/README.md +11 -7
- package/VERSION +1 -1
- package/bridge/mcp-server.cjs +367 -186
- package/bridge/mcp-server.cjs.map +4 -4
- package/package.json +1 -1
- package/scripts/gate.cjs +14 -16
- package/scripts/gate.cjs.map +2 -2
- package/skills/nx-consult/SKILL.md +46 -18
- package/skills/nx-dev/SKILL.md +26 -3
- package/skills/nx-research/SKILL.md +44 -3
package/README.en.md
CHANGED
|
@@ -80,18 +80,20 @@ Typical flow: use `[consult]` to discuss and align → decide → use `[dev]` or
|
|
|
80
80
|
|
|
81
81
|
Claude-callable tools exposed by the Nexus MCP server.
|
|
82
82
|
|
|
83
|
-
### Core (
|
|
83
|
+
### Core (13 tools)
|
|
84
84
|
|
|
85
85
|
| Tool | Purpose |
|
|
86
86
|
|------|---------|
|
|
87
87
|
| `nx_knowledge_read/write` | Project knowledge management (git-tracked) |
|
|
88
|
+
| `nx_rules_read/write` | Team custom rules management (git-tracked) |
|
|
88
89
|
| `nx_context` | Current session state lookup (branch, tasks, decisions) |
|
|
89
|
-
| `nx_task_list/add/update/
|
|
90
|
+
| `nx_task_list/add/update/close` | Task management + history.json archiving |
|
|
90
91
|
| `nx_decision_add` | Record architecture decisions |
|
|
91
92
|
| `nx_artifact_write` | Save team artifacts (branch-isolated) |
|
|
92
93
|
| `nx_consult_start` | Start consultation session (topic + issues) |
|
|
93
|
-
| `nx_consult_status` | Query consultation state |
|
|
94
|
+
| `nx_consult_status` | Query consultation state (with decisions join) |
|
|
94
95
|
| `nx_consult_decide` | Record issue decision (consult.json + decisions.json) |
|
|
96
|
+
| `nx_consult_update` | Modify consultation issues (add/remove/edit/reopen) |
|
|
95
97
|
|
|
96
98
|
### Code Intelligence (10 tools)
|
|
97
99
|
|
|
@@ -128,10 +130,11 @@ Nexus registers a single Gate module as a Claude Code hook.
|
|
|
128
130
|
<details>
|
|
129
131
|
<summary>Project Knowledge</summary>
|
|
130
132
|
|
|
131
|
-
Project knowledge
|
|
133
|
+
Project knowledge and rules are stored under `.claude/nexus/` and tracked by git.
|
|
132
134
|
|
|
133
|
-
- `
|
|
134
|
-
-
|
|
135
|
+
- `knowledge/` — Project knowledge. Auto-generated on first `nx-sync` run (structure is not fixed)
|
|
136
|
+
- `rules/` — Team custom rules. Created via `nx_rules_write` on user request
|
|
137
|
+
- `config.json` — Nexus configuration
|
|
135
138
|
|
|
136
139
|
</details>
|
|
137
140
|
|
|
@@ -146,7 +149,8 @@ Runtime state is stored under `.nexus/` and is excluded from git.
|
|
|
146
149
|
│ └── {branch}/
|
|
147
150
|
│ ├── tasks.json ← Task list
|
|
148
151
|
│ ├── decisions.json ← Architecture decision list
|
|
149
|
-
│ ├── consult.json
|
|
152
|
+
│ ├── consult.json ← Consultation issue tracker
|
|
153
|
+
│ ├── history.json ← Cycle archive (created by nx_task_close)
|
|
150
154
|
│ └── artifacts/ ← Team artifacts
|
|
151
155
|
└── sync-state.json ← Last sync commit
|
|
152
156
|
```
|
package/README.md
CHANGED
|
@@ -78,18 +78,20 @@ claude plugin install claude-nexus@nexus
|
|
|
78
78
|
|
|
79
79
|
Claude가 직접 호출하는 도구입니다.
|
|
80
80
|
|
|
81
|
-
### Core (
|
|
81
|
+
### Core (13개)
|
|
82
82
|
|
|
83
83
|
| 도구 | 용도 |
|
|
84
84
|
|------|------|
|
|
85
85
|
| `nx_knowledge_read/write` | 프로젝트 지식 관리 (git 추적) |
|
|
86
|
+
| `nx_rules_read/write` | 팀 커스텀 규칙 관리 (git 추적) |
|
|
86
87
|
| `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크, 결정) |
|
|
87
|
-
| `nx_task_list/add/update/
|
|
88
|
+
| `nx_task_list/add/update/close` | tasks.json 기반 태스크 관리 + history.json 아카이브 |
|
|
88
89
|
| `nx_decision_add` | 아키텍처 결정 기록 |
|
|
89
90
|
| `nx_artifact_write` | 팀 산출물 저장 (브랜치별 격리) |
|
|
90
91
|
| `nx_consult_start` | 상담 세션 시작 (토픽 + 논점 등록) |
|
|
91
|
-
| `nx_consult_status` | 상담 상태 조회 |
|
|
92
|
+
| `nx_consult_status` | 상담 상태 조회 (decisions.json join) |
|
|
92
93
|
| `nx_consult_decide` | 논점 결정 처리 (consult.json + decisions.json) |
|
|
94
|
+
| `nx_consult_update` | 상담 논점 수정 (add/remove/edit/reopen) |
|
|
93
95
|
|
|
94
96
|
### Code Intelligence (10개)
|
|
95
97
|
|
|
@@ -126,10 +128,11 @@ Gate 단일 모듈로 동작합니다.
|
|
|
126
128
|
<details>
|
|
127
129
|
<summary>프로젝트 지식</summary>
|
|
128
130
|
|
|
129
|
-
`.claude/nexus
|
|
131
|
+
`.claude/nexus/`에 프로젝트 지식과 규칙을 저장합니다. git으로 추적됩니다.
|
|
130
132
|
|
|
131
|
-
- `nx-sync` 첫 실행 시
|
|
132
|
-
- `
|
|
133
|
+
- `knowledge/` — 프로젝트 지식. `nx-sync` 첫 실행 시 자동 생성 (구조 고정 아님)
|
|
134
|
+
- `rules/` — 팀 커스텀 규칙. 사용자 요청 시 `nx_rules_write`로 생성
|
|
135
|
+
- `config.json` — Nexus 설정
|
|
133
136
|
|
|
134
137
|
</details>
|
|
135
138
|
|
|
@@ -144,7 +147,8 @@ Gate 단일 모듈로 동작합니다.
|
|
|
144
147
|
│ └── {branch}/
|
|
145
148
|
│ ├── tasks.json ← 태스크 목록
|
|
146
149
|
│ ├── decisions.json ← 아키텍처 결정 목록
|
|
147
|
-
│ ├── consult.json
|
|
150
|
+
│ ├── consult.json ← 상담 논점 추적
|
|
151
|
+
│ ├── history.json ← 사이클 아카이브 (nx_task_close 시 생성)
|
|
148
152
|
│ └── artifacts/ ← 팀 산출물
|
|
149
153
|
└── sync-state.json ← 마지막 sync 커밋
|
|
150
154
|
```
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.13.0
|