claude-nexus 0.23.1 → 0.24.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 +21 -20
- package/README.md +17 -9
- package/VERSION +1 -1
- package/agents/architect.md +1 -1
- package/agents/designer.md +1 -1
- package/agents/researcher.md +5 -3
- package/agents/strategist.md +1 -1
- package/bridge/mcp-server.cjs +72 -299
- package/bridge/mcp-server.cjs.map +4 -4
- package/package.json +1 -1
- package/scripts/gate.cjs +104 -96
- package/scripts/gate.cjs.map +2 -2
- package/scripts/statusline.cjs +2 -1
- package/scripts/statusline.cjs.map +2 -2
- package/skills/nx-init/SKILL.md +61 -44
- package/skills/nx-plan/SKILL.md +3 -0
- package/skills/nx-run/SKILL.md +2 -2
- package/skills/nx-setup/SKILL.md +1 -1
- package/skills/nx-sync/SKILL.md +39 -49
- package/templates/nexus-section.md +2 -2
package/README.en.md
CHANGED
|
@@ -22,7 +22,7 @@ claude plugin install claude-nexus@nexus
|
|
|
22
22
|
|
|
23
23
|
**2. Onboard your project**
|
|
24
24
|
|
|
25
|
-
Run `/claude-nexus:nx-init` — scans your project and auto-generates structured knowledge under `.nexus
|
|
25
|
+
Run `/claude-nexus:nx-init` — scans your project and auto-generates structured knowledge under `.nexus/`.
|
|
26
26
|
|
|
27
27
|
**3. Start using**
|
|
28
28
|
|
|
@@ -39,6 +39,9 @@ Tag your message to route it to the right workflow:
|
|
|
39
39
|
| `[run]` | Execution (subagent composition) | `[run] Refactor payment module` |
|
|
40
40
|
| `[d]` | Record a decision (within plan session) | `[d] Use PostgreSQL for primary storage` |
|
|
41
41
|
| `[rule]` | Save a rule | `[rule] Always use bun instead of npm` |
|
|
42
|
+
| `[m]` | Add a memo | `[m] Revisit this pattern later` |
|
|
43
|
+
| `[m:gc]` | Garbage-collect memos | `[m:gc]` |
|
|
44
|
+
| `[sync]` | Sync context/ | `[sync]` |
|
|
42
45
|
|
|
43
46
|
Typical flow: `[plan]` to discuss and align → `[d]` to decide (within plan) → `[run]` to execute.
|
|
44
47
|
|
|
@@ -76,7 +79,7 @@ Typical flow: `[plan]` to discuss and align → `[d]` to decide (within plan)
|
|
|
76
79
|
| **nx-run** | `[run]` | Execution. User-directed agent composition for development, research, and more |
|
|
77
80
|
| **nx-init** | `/claude-nexus:nx-init` | Full project onboarding: scan codebase, establish identity, generate core knowledge |
|
|
78
81
|
| **nx-setup** | `/claude-nexus:nx-setup` | Interactive setup. Injects agent/skill/tag configuration into CLAUDE.md |
|
|
79
|
-
| **nx-sync** | `/claude-nexus:nx-sync` |
|
|
82
|
+
| **nx-sync** | `/claude-nexus:nx-sync` | Context sync. Reflects source changes into .nexus/context/ docs |
|
|
80
83
|
|
|
81
84
|
## Advanced
|
|
82
85
|
|
|
@@ -85,12 +88,10 @@ Typical flow: `[plan]` to discuss and align → `[d]` to decide (within plan)
|
|
|
85
88
|
|
|
86
89
|
Claude-callable tools exposed by the Nexus MCP server.
|
|
87
90
|
|
|
88
|
-
### Core (
|
|
91
|
+
### Core (12 tools)
|
|
89
92
|
|
|
90
93
|
| Tool | Purpose |
|
|
91
94
|
|------|---------|
|
|
92
|
-
| `nx_core_read/write` | Project knowledge management (git-tracked) |
|
|
93
|
-
| `nx_rules_read/write` | Team custom rules management (git-tracked) |
|
|
94
95
|
| `nx_context` | Current session state lookup (branch, tasks, plan) |
|
|
95
96
|
| `nx_task_list/add/update/close` | Task management + history.json archiving |
|
|
96
97
|
| `nx_artifact_write` | Save artifacts (branch-isolated) |
|
|
@@ -143,30 +144,30 @@ Project knowledge and rules are stored under `.nexus/` and tracked by git.
|
|
|
143
144
|
|
|
144
145
|
```
|
|
145
146
|
.nexus/
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
├── rules/ ← Team custom rules (created via nx_rules_write)
|
|
152
|
-
└── config.json ← Nexus configuration
|
|
147
|
+
memory/ — lessons learned, references
|
|
148
|
+
context/ — design principles, architecture philosophy
|
|
149
|
+
state/ — plan.json, tasks.json
|
|
150
|
+
rules/ — project custom rules
|
|
151
|
+
history.json
|
|
153
152
|
```
|
|
154
153
|
|
|
154
|
+
- `memory/`, `context/`, `rules/` — git-tracked.
|
|
155
|
+
- `state/` — runtime state. git-ignored.
|
|
156
|
+
- `history.json` — cycle archive. git-tracked.
|
|
157
|
+
|
|
155
158
|
</details>
|
|
156
159
|
|
|
157
160
|
<details>
|
|
158
161
|
<summary>Runtime State</summary>
|
|
159
162
|
|
|
160
|
-
Runtime state is stored under `.nexus/state/` and is excluded from git.
|
|
163
|
+
Runtime state is stored under `.nexus/state/` and is excluded from git.
|
|
161
164
|
|
|
162
165
|
```
|
|
163
|
-
.nexus/
|
|
164
|
-
├──
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
├── agent-tracker.json ← Subagent lifecycle tracking
|
|
169
|
-
└── artifacts/ ← Artifacts
|
|
166
|
+
.nexus/state/
|
|
167
|
+
├── tasks.json ← Task list ([run] cycle)
|
|
168
|
+
├── plan.json ← Planning session ([plan] cycle)
|
|
169
|
+
├── agent-tracker.json ← Subagent lifecycle tracking
|
|
170
|
+
└── artifacts/ ← Artifacts
|
|
170
171
|
```
|
|
171
172
|
|
|
172
173
|
</details>
|
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ claude plugin install claude-nexus@nexus
|
|
|
22
22
|
|
|
23
23
|
**온보딩**
|
|
24
24
|
|
|
25
|
-
`/claude-nexus:nx-init`을 처음 실행하면 프로젝트를 스캔해 `.nexus
|
|
25
|
+
`/claude-nexus:nx-init`을 처음 실행하면 프로젝트를 스캔해 `.nexus/`에 지식을 자동 생성합니다.
|
|
26
26
|
|
|
27
27
|
> **Important**: 하나의 워크스페이스에서 동시에 여러 Claude Code 세션을 실행하는 것은 지원되지 않습니다. 상태 파일 충돌이 발생할 수 있습니다.
|
|
28
28
|
|
|
@@ -40,6 +40,9 @@ claude plugin install claude-nexus@nexus
|
|
|
40
40
|
| `[d]` | 결정 기록 (plan 세션 내) | `응 그 방향으로 [d]` |
|
|
41
41
|
| `[run]` | 실행 (서브에이전트 구성) | `[run] 결제 모듈 리팩토링` |
|
|
42
42
|
| `[rule]` | 규칙 저장 | `[rule] npm 대신 bun 사용` |
|
|
43
|
+
| `[m]` | 메모 추가 | `[m] 이 패턴은 나중에 참고` |
|
|
44
|
+
| `[m:gc]` | 메모 정리 | `[m:gc]` |
|
|
45
|
+
| `[sync]` | context/ 동기화 | `[sync]` |
|
|
43
46
|
|
|
44
47
|
## 에이전트
|
|
45
48
|
|
|
@@ -63,7 +66,7 @@ claude plugin install claude-nexus@nexus
|
|
|
63
66
|
| **nx-run** | `[run]` | 동적 에이전트 구성 실행 |
|
|
64
67
|
| **nx-init** | `/claude-nexus:nx-init` | 프로젝트 온보딩. 코드 스캔 → 지식 생성 |
|
|
65
68
|
| **nx-setup** | `/claude-nexus:nx-setup` | 대화형 설정 |
|
|
66
|
-
| **nx-sync** | `/claude-nexus:nx-sync` |
|
|
69
|
+
| **nx-sync** | `/claude-nexus:nx-sync` | context/ 동기화. 소스 변경사항을 .nexus/context/ 문서에 반영 |
|
|
67
70
|
|
|
68
71
|
## 고급 기능
|
|
69
72
|
|
|
@@ -72,12 +75,10 @@ claude plugin install claude-nexus@nexus
|
|
|
72
75
|
|
|
73
76
|
Claude가 직접 호출하는 도구입니다.
|
|
74
77
|
|
|
75
|
-
### Core (
|
|
78
|
+
### Core (12개)
|
|
76
79
|
|
|
77
80
|
| 도구 | 용도 |
|
|
78
81
|
|------|------|
|
|
79
|
-
| `nx_core_read/write` | 프로젝트 지식 관리 (`.nexus/core/`, git 추적) |
|
|
80
|
-
| `nx_rules_read/write` | 팀 커스텀 규칙 관리 (`.nexus/rules/`, git 추적) |
|
|
81
82
|
| `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크, 플랜) |
|
|
82
83
|
| `nx_task_list/add/update/close` | `.nexus/state/tasks.json` 기반 태스크 관리 + `.nexus/history.json` 아카이브 |
|
|
83
84
|
| `nx_artifact_write` | 팀 산출물 저장 (`.nexus/state/artifacts/`) |
|
|
@@ -128,11 +129,18 @@ Gate 단일 모듈로 동작합니다.
|
|
|
128
129
|
|
|
129
130
|
`.nexus/`에 프로젝트 지식과 런타임 상태를 저장합니다.
|
|
130
131
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
132
|
+
```
|
|
133
|
+
.nexus/
|
|
134
|
+
memory/ — 학습한 교훈, 참고 자료
|
|
135
|
+
context/ — 설계 원칙, 아키텍처 철학
|
|
136
|
+
state/ — plan.json, tasks.json
|
|
137
|
+
rules/ — 프로젝트 커스텀 규칙
|
|
138
|
+
history.json
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
- `memory/`, `context/`, `rules/` — git 추적.
|
|
142
|
+
- `state/` — 런타임 상태. git 무시.
|
|
134
143
|
- `history.json` — 사이클 아카이브. git 추적.
|
|
135
|
-
- `state/` — 런타임 상태 (tasks, plan 등). git 무시.
|
|
136
144
|
|
|
137
145
|
</details>
|
|
138
146
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.24.0
|
package/agents/architect.md
CHANGED
|
@@ -48,7 +48,7 @@ When evaluating options:
|
|
|
48
48
|
2. Is this the simplest solution that works? (YAGNI, avoid premature abstraction)
|
|
49
49
|
3. What breaks if this goes wrong? (risk surface)
|
|
50
50
|
4. Does this introduce new dependencies or coupling? (maintainability)
|
|
51
|
-
5. Is there a precedent in the codebase or decisions log? (check
|
|
51
|
+
5. Is there a precedent in the codebase or decisions log? (check .nexus/context/ and .nexus/memory/ via Read/Glob)
|
|
52
52
|
|
|
53
53
|
## Critical Review Process
|
|
54
54
|
When reviewing code or design proposals:
|
package/agents/designer.md
CHANGED
|
@@ -47,7 +47,7 @@ When evaluating UX options:
|
|
|
47
47
|
2. Is this the simplest interaction that accomplishes the goal?
|
|
48
48
|
3. What confusion or frustration could this cause?
|
|
49
49
|
4. Is this consistent with existing patterns in the product?
|
|
50
|
-
5. Is there precedent in decisions log? (check
|
|
50
|
+
5. Is there precedent in decisions log? (check .nexus/context/ and .nexus/memory/ via Read/Glob)
|
|
51
51
|
|
|
52
52
|
## Collaboration with Architect
|
|
53
53
|
Architect owns technical structure; Designer owns user experience. These are complementary:
|
package/agents/researcher.md
CHANGED
|
@@ -119,14 +119,16 @@ All claims about impossibility, infeasibility, or platform limitations MUST incl
|
|
|
119
119
|
When writing findings reports or other deliverables to a file, use `nx_artifact_write` (filename, content) instead of Write. This ensures the file is saved to the correct branch workspace.
|
|
120
120
|
|
|
121
121
|
## Reference Recording
|
|
122
|
-
When you complete an investigation and find meaningful results,
|
|
122
|
+
When you complete an investigation and find meaningful results, consider whether they are worth preserving for future use.
|
|
123
123
|
|
|
124
124
|
Record when:
|
|
125
125
|
- You find a source with high reuse value (authoritative reference, key data, foundational paper)
|
|
126
126
|
- You find a result that future researchers on this topic would need
|
|
127
127
|
- You find a null result that would save future effort (searched extensively, found nothing on X)
|
|
128
128
|
|
|
129
|
-
|
|
129
|
+
To persist findings, either:
|
|
130
|
+
- Suggest to the user that they use the `[m]` tag to save the finding to memory, or
|
|
131
|
+
- Write directly to `.nexus/memory/{topic}.md` using the Write tool if you have permission
|
|
130
132
|
|
|
131
|
-
Format for
|
|
133
|
+
Format for memory entries: include the research question, key findings, source URLs, and date searched.
|
|
132
134
|
</guidelines>
|
package/agents/strategist.md
CHANGED
|
@@ -47,7 +47,7 @@ When evaluating strategic options:
|
|
|
47
47
|
2. How does this compare to what competitors offer?
|
|
48
48
|
3. What is the adoption path — who uses this first and how does it spread?
|
|
49
49
|
4. What is the strategic risk if this doesn't work?
|
|
50
|
-
5. Is there precedent in decisions log? (check
|
|
50
|
+
5. Is there precedent in decisions log? (check .nexus/context/ and .nexus/memory/ via Read/Glob)
|
|
51
51
|
|
|
52
52
|
## Collaboration with Lead
|
|
53
53
|
Lead owns scope and project goals; Strategist informs those decisions with market reality:
|