claude-nexus 0.17.0 → 0.19.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 +16 -15
- package/README.md +16 -14
- package/VERSION +1 -1
- package/agents/engineer.md +5 -0
- package/bridge/mcp-server.cjs +196 -191
- package/bridge/mcp-server.cjs.map +4 -4
- package/package.json +1 -1
- package/scripts/gate.cjs +126 -40
- package/scripts/gate.cjs.map +2 -2
- package/skills/nx-init/SKILL.md +1 -1
- package/skills/nx-meet/SKILL.md +252 -0
- package/skills/nx-run/SKILL.md +11 -5
- package/skills/nx-setup/SKILL.md +1 -1
- package/templates/nexus-section.md +3 -3
- package/skills/nx-consult/SKILL.md +0 -196
package/README.en.md
CHANGED
|
@@ -26,7 +26,7 @@ Run `/claude-nexus:nx-init` — scans your project and auto-generates structured
|
|
|
26
26
|
|
|
27
27
|
**3. Start using**
|
|
28
28
|
|
|
29
|
-
- **
|
|
29
|
+
- **Meet**: `[meet] How should we design the auth system?` — clarify intent and align before executing
|
|
30
30
|
- **Run**: `[run] Implement login API` — agent team handles analysis through implementation
|
|
31
31
|
|
|
32
32
|
## Usage
|
|
@@ -35,12 +35,12 @@ Tag your message to route it to the right workflow:
|
|
|
35
35
|
|
|
36
36
|
| Tag | Action | Example |
|
|
37
37
|
|-----|--------|---------|
|
|
38
|
-
| `[
|
|
38
|
+
| `[meet]` | Pre-execution meeting | `[meet] Discuss DB migration strategy` |
|
|
39
39
|
| `[run]` | Execution (agent team) | `[run] Refactor payment module` |
|
|
40
40
|
| `[d]` | Record a decision | `[d] Use PostgreSQL for primary storage` |
|
|
41
41
|
| `[rule]` | Save a rule | `[rule] Always use bun instead of npm` |
|
|
42
42
|
|
|
43
|
-
Typical flow: use `[
|
|
43
|
+
Typical flow: use `[meet]` to discuss and align → decide → use `[run]` to execute.
|
|
44
44
|
|
|
45
45
|
## Agents
|
|
46
46
|
|
|
@@ -72,10 +72,11 @@ Typical flow: use `[consult]` to discuss and align → decide → use `[run]` to
|
|
|
72
72
|
|
|
73
73
|
| Skill | Trigger | Description |
|
|
74
74
|
|-------|---------|-------------|
|
|
75
|
-
| **nx-
|
|
75
|
+
| **nx-meet** | `[meet]` | Structured meeting. Clarify requirements → record decisions (`[d]`) → recommend execution tag |
|
|
76
76
|
| **nx-run** | `[run]` | Execution. User-directed agent composition for development, research, and more |
|
|
77
77
|
| **nx-init** | `/claude-nexus:nx-init` | Full project onboarding: scan codebase, establish identity, generate core knowledge |
|
|
78
78
|
| **nx-setup** | `/claude-nexus:nx-setup` | Interactive setup. Injects agent/skill/tag configuration into CLAUDE.md |
|
|
79
|
+
| **nx-sync** | `/claude-nexus:nx-sync` | Core knowledge sync. Reflects source changes into .nexus/core/ docs |
|
|
79
80
|
|
|
80
81
|
## Advanced
|
|
81
82
|
|
|
@@ -84,21 +85,22 @@ Typical flow: use `[consult]` to discuss and align → decide → use `[run]` to
|
|
|
84
85
|
|
|
85
86
|
Claude-callable tools exposed by the Nexus MCP server.
|
|
86
87
|
|
|
87
|
-
### Core (
|
|
88
|
+
### Core (17 tools)
|
|
88
89
|
|
|
89
90
|
| Tool | Purpose |
|
|
90
91
|
|------|---------|
|
|
92
|
+
| `nx_briefing` | Assemble role-specific briefing (core knowledge + rules) |
|
|
91
93
|
| `nx_core_read/write` | Project knowledge management (git-tracked) |
|
|
92
94
|
| `nx_rules_read/write` | Team custom rules management (git-tracked) |
|
|
93
|
-
| `nx_context` | Current session state lookup (branch, tasks,
|
|
95
|
+
| `nx_context` | Current session state lookup (branch, tasks, meet) |
|
|
94
96
|
| `nx_task_list/add/update/close` | Task management + history.json archiving |
|
|
95
|
-
| `nx_decision_add` | Record architecture decisions |
|
|
96
97
|
| `nx_artifact_write` | Save team artifacts (branch-isolated) |
|
|
97
|
-
| `
|
|
98
|
-
| `
|
|
99
|
-
| `
|
|
100
|
-
| `
|
|
101
|
-
| `
|
|
98
|
+
| `nx_meet_start` | Start meeting session (topic + issues, team verification) |
|
|
99
|
+
| `nx_meet_status` | Query meeting state |
|
|
100
|
+
| `nx_meet_update` | Modify meeting issues (add/remove/edit/reopen) |
|
|
101
|
+
| `nx_meet_discuss` | Record issue discussion (speaker validation: registered attendees only) |
|
|
102
|
+
| `nx_meet_decide` | Record issue decision (meet.json) |
|
|
103
|
+
| `nx_meet_join` | Join an ongoing meeting |
|
|
102
104
|
|
|
103
105
|
### Code Intelligence (10 tools)
|
|
104
106
|
|
|
@@ -128,7 +130,7 @@ Nexus registers a single Gate module as a Claude Code hook.
|
|
|
128
130
|
| Event | Role |
|
|
129
131
|
|-------|------|
|
|
130
132
|
| `UserPromptSubmit` | Tag detection → mode activation + TASK_PIPELINE injection + additionalContext guidance |
|
|
131
|
-
| `PreToolUse` | Edit/Write: blocks when tasks.json missing.
|
|
133
|
+
| `PreToolUse` | Edit/Write: blocks when tasks.json missing. nx_meet_start: attendee team verification. Agent: team_name tracking |
|
|
132
134
|
| `Stop` | Blocks exit with pending tasks. Forces nx_task_close when all completed |
|
|
133
135
|
|
|
134
136
|
</details>
|
|
@@ -161,8 +163,7 @@ Runtime state is stored under `.nexus/` and is excluded from git.
|
|
|
161
163
|
├── branches/ ← Per-branch isolation
|
|
162
164
|
│ └── {branch}/
|
|
163
165
|
│ ├── tasks.json ← Task list
|
|
164
|
-
│ ├──
|
|
165
|
-
│ ├── consult.json ← Consultation issue tracker
|
|
166
|
+
│ ├── meet.json ← Meeting issue tracker
|
|
166
167
|
│ ├── history.json ← Cycle archive (created by nx_task_close)
|
|
167
168
|
│ └── artifacts/ ← Team artifacts
|
|
168
169
|
└── sync-state.json ← Last sync commit
|
package/README.md
CHANGED
|
@@ -28,14 +28,14 @@ claude plugin install claude-nexus@nexus
|
|
|
28
28
|
|
|
29
29
|
**첫 사용**
|
|
30
30
|
|
|
31
|
-
-
|
|
31
|
+
- **미팅**: `[meet] 인증 시스템 어떻게 설계하면 좋을까?`
|
|
32
32
|
- **결정 기록**: `응 그 방향으로 [d]`
|
|
33
33
|
|
|
34
34
|
## 사용법
|
|
35
35
|
|
|
36
36
|
| 태그 | 동작 | 예시 |
|
|
37
37
|
|------|------|------|
|
|
38
|
-
| `[
|
|
38
|
+
| `[meet]` | 미팅 모드 활성화 | `[meet] DB 마이그레이션 전략 논의` |
|
|
39
39
|
| `[d]` | 결정 기록 | `응 그 방향으로 [d]` |
|
|
40
40
|
|
|
41
41
|
## 에이전트
|
|
@@ -56,10 +56,11 @@ claude plugin install claude-nexus@nexus
|
|
|
56
56
|
|
|
57
57
|
| 스킬 | 트리거 | 설명 |
|
|
58
58
|
|------|--------|------|
|
|
59
|
-
| **nx-
|
|
59
|
+
| **nx-meet** | `[meet]` | 구조화된 미팅. 요구사항 정리 → 결정 기록 |
|
|
60
60
|
| **nx-run** | (기본 동작) | 동적 에이전트 구성 실행 |
|
|
61
61
|
| **nx-init** | `/claude-nexus:nx-init` | 프로젝트 온보딩. 코드 스캔 → 지식 생성 |
|
|
62
62
|
| **nx-setup** | `/claude-nexus:nx-setup` | 대화형 설정 |
|
|
63
|
+
| **nx-sync** | `/claude-nexus:nx-sync` | 코어 지식 동기화. 소스 변경사항을 .nexus/core/ 문서에 반영 |
|
|
63
64
|
|
|
64
65
|
## 고급 기능
|
|
65
66
|
|
|
@@ -68,20 +69,22 @@ claude plugin install claude-nexus@nexus
|
|
|
68
69
|
|
|
69
70
|
Claude가 직접 호출하는 도구입니다.
|
|
70
71
|
|
|
71
|
-
### Core (
|
|
72
|
+
### Core (17개)
|
|
72
73
|
|
|
73
74
|
| 도구 | 용도 |
|
|
74
75
|
|------|------|
|
|
76
|
+
| `nx_briefing` | 에이전트 역할별 브리핑 조립 (core knowledge + rules 기반) |
|
|
75
77
|
| `nx_core_read/write` | 프로젝트 지식 관리 (`.nexus/core/`, git 추적) |
|
|
76
78
|
| `nx_rules_read/write` | 팀 커스텀 규칙 관리 (`.nexus/rules/`, git 추적) |
|
|
77
|
-
| `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크,
|
|
79
|
+
| `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크, 미팅) |
|
|
78
80
|
| `nx_task_list/add/update/close` | `.nexus/state/tasks.json` 기반 태스크 관리 + `.nexus/history.json` 아카이브 |
|
|
79
|
-
| `nx_decision_add` | 아키텍처 결정 기록 (`.nexus/state/decisions.json`) |
|
|
80
81
|
| `nx_artifact_write` | 팀 산출물 저장 (`.nexus/state/artifacts/`) |
|
|
81
|
-
| `
|
|
82
|
-
| `
|
|
83
|
-
| `
|
|
84
|
-
| `
|
|
82
|
+
| `nx_meet_start` | 미팅 세션 시작 (토픽 + 논점 등록, 참석자 팀 검증) |
|
|
83
|
+
| `nx_meet_status` | 미팅 상태 조회 |
|
|
84
|
+
| `nx_meet_update` | 미팅 논점 수정 (add/remove/edit/reopen) |
|
|
85
|
+
| `nx_meet_discuss` | 논점 토론 기록 (speaker 검증: 등록된 참석자만 허용) |
|
|
86
|
+
| `nx_meet_decide` | 논점 결정 처리 (meet.json) |
|
|
87
|
+
| `nx_meet_join` | 진행 중인 미팅 참여 |
|
|
85
88
|
|
|
86
89
|
### Code Intelligence (10개)
|
|
87
90
|
|
|
@@ -111,7 +114,7 @@ Gate 단일 모듈로 동작합니다.
|
|
|
111
114
|
| 이벤트 | 역할 |
|
|
112
115
|
|--------|------|
|
|
113
116
|
| `UserPromptSubmit` | 태그 감지 → 모드 활성화 + TASK_PIPELINE 주입 + additionalContext 안내 |
|
|
114
|
-
| `PreToolUse` | Edit/Write: tasks.json 없으면 차단.
|
|
117
|
+
| `PreToolUse` | Edit/Write: tasks.json 없으면 차단. nx_meet_start: 참석자 팀 검증. Agent: team_name 트래킹 |
|
|
115
118
|
| `Stop` | pending 태스크 있으면 종료 차단. all completed면 nx_task_close 강제 |
|
|
116
119
|
|
|
117
120
|
</details>
|
|
@@ -125,7 +128,7 @@ Gate 단일 모듈로 동작합니다.
|
|
|
125
128
|
- `rules/` — 팀 커스텀 규칙. git 추적.
|
|
126
129
|
- `config.json` — Nexus 설정. git 추적.
|
|
127
130
|
- `history.json` — 사이클 아카이브. git 추적.
|
|
128
|
-
- `state/` — 런타임 상태 (tasks,
|
|
131
|
+
- `state/` — 런타임 상태 (tasks, meet 등). git 무시.
|
|
129
132
|
|
|
130
133
|
</details>
|
|
131
134
|
|
|
@@ -137,8 +140,7 @@ Gate 단일 모듈로 동작합니다.
|
|
|
137
140
|
```
|
|
138
141
|
.nexus/state/
|
|
139
142
|
├── tasks.json
|
|
140
|
-
├──
|
|
141
|
-
├── consult.json
|
|
143
|
+
├── meet.json
|
|
142
144
|
├── edit-tracker.json
|
|
143
145
|
├── reopen-tracker.json
|
|
144
146
|
├── agent-tracker.json
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.19.0
|
package/agents/engineer.md
CHANGED
|
@@ -81,6 +81,11 @@ When stuck on a technical issue or unclear on design direction:
|
|
|
81
81
|
- Notify Lead as well to maintain shared context
|
|
82
82
|
- Do not guess at implementations — ask when uncertain
|
|
83
83
|
|
|
84
|
+
When work scope exceeds initial expectations:
|
|
85
|
+
- If the task requires changes to 3+ files or touches multiple modules, report to Lead via SendMessage
|
|
86
|
+
- Include: affected file list, reason for scope expansion, whether design review (How agent) is needed
|
|
87
|
+
- Do not proceed with expanded scope without Lead acknowledgment
|
|
88
|
+
|
|
84
89
|
## Codebase Documentation
|
|
85
90
|
Focus on code changes. Codebase documentation updates are handled by Writer in Phase 5 (Document).
|
|
86
91
|
|