claude-nexus 0.18.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.
@@ -7,7 +7,7 @@
7
7
  {
8
8
  "name": "claude-nexus",
9
9
  "description": "Agent orchestration plugin for Claude Code. Injects optimized context per agent role with minimal overhead.",
10
- "version": "0.18.0",
10
+ "version": "0.19.0",
11
11
  "author": {
12
12
  "name": "kih"
13
13
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nexus",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "description": "Agent orchestration plugin for Claude Code — optimized context injection per role",
5
5
  "author": {
6
6
  "name": "kih"
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
- - **Consult**: `[consult] How should we design the auth system?` — clarify intent and align before executing
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
- | `[consult]` | Pre-execution consultation | `[consult] Discuss DB migration strategy` |
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 `[consult]` to discuss and align → decide → use `[run]` to execute.
43
+ Typical flow: use `[meet]` to discuss and align → decide → use `[run]` to execute.
44
44
 
45
45
  ## Agents
46
46
 
@@ -72,7 +72,7 @@ Typical flow: use `[consult]` to discuss and align → decide → use `[run]` to
72
72
 
73
73
  | Skill | Trigger | Description |
74
74
  |-------|---------|-------------|
75
- | **nx-consult** | `[consult]` | Structured consultation. Clarify requirements → record decisions (`[d]`) → recommend execution tag |
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 |
@@ -85,21 +85,22 @@ Typical flow: use `[consult]` to discuss and align → decide → use `[run]` to
85
85
 
86
86
  Claude-callable tools exposed by the Nexus MCP server.
87
87
 
88
- ### Core (14 tools)
88
+ ### Core (17 tools)
89
89
 
90
90
  | Tool | Purpose |
91
91
  |------|---------|
92
+ | `nx_briefing` | Assemble role-specific briefing (core knowledge + rules) |
92
93
  | `nx_core_read/write` | Project knowledge management (git-tracked) |
93
94
  | `nx_rules_read/write` | Team custom rules management (git-tracked) |
94
- | `nx_context` | Current session state lookup (branch, tasks, decisions) |
95
+ | `nx_context` | Current session state lookup (branch, tasks, meet) |
95
96
  | `nx_task_list/add/update/close` | Task management + history.json archiving |
96
- | `nx_decision_add` | Record architecture decisions |
97
97
  | `nx_artifact_write` | Save team artifacts (branch-isolated) |
98
- | `nx_consult_start` | Start consultation session (topic + issues) |
99
- | `nx_consult_status` | Query consultation state (with decisions join) |
100
- | `nx_consult_decide` | Record issue decision (consult.json + decisions.json) |
101
- | `nx_consult_update` | Modify consultation issues (add/remove/edit/reopen) |
102
- | `nx_branch_migrate` | Migrate state files (consult/decisions) across branches |
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 |
103
104
 
104
105
  ### Code Intelligence (10 tools)
105
106
 
@@ -129,7 +130,7 @@ Nexus registers a single Gate module as a Claude Code hook.
129
130
  | Event | Role |
130
131
  |-------|------|
131
132
  | `UserPromptSubmit` | Tag detection → mode activation + TASK_PIPELINE injection + additionalContext guidance |
132
- | `PreToolUse` | Edit/Write: blocks when tasks.json missing. Nexus internal paths exempted |
133
+ | `PreToolUse` | Edit/Write: blocks when tasks.json missing. nx_meet_start: attendee team verification. Agent: team_name tracking |
133
134
  | `Stop` | Blocks exit with pending tasks. Forces nx_task_close when all completed |
134
135
 
135
136
  </details>
@@ -162,8 +163,7 @@ Runtime state is stored under `.nexus/` and is excluded from git.
162
163
  ├── branches/ ← Per-branch isolation
163
164
  │ └── {branch}/
164
165
  │ ├── tasks.json ← Task list
165
- │ ├── decisions.json Architecture decision list
166
- │ ├── consult.json ← Consultation issue tracker
166
+ │ ├── meet.json Meeting issue tracker
167
167
  │ ├── history.json ← Cycle archive (created by nx_task_close)
168
168
  │ └── artifacts/ ← Team artifacts
169
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
- - **상담**: `[consult] 인증 시스템 어떻게 설계하면 좋을까?`
31
+ - **미팅**: `[meet] 인증 시스템 어떻게 설계하면 좋을까?`
32
32
  - **결정 기록**: `응 그 방향으로 [d]`
33
33
 
34
34
  ## 사용법
35
35
 
36
36
  | 태그 | 동작 | 예시 |
37
37
  |------|------|------|
38
- | `[consult]` | 상담 모드 활성화 | `[consult] DB 마이그레이션 전략 논의` |
38
+ | `[meet]` | 미팅 모드 활성화 | `[meet] DB 마이그레이션 전략 논의` |
39
39
  | `[d]` | 결정 기록 | `응 그 방향으로 [d]` |
40
40
 
41
41
  ## 에이전트
@@ -56,7 +56,7 @@ claude plugin install claude-nexus@nexus
56
56
 
57
57
  | 스킬 | 트리거 | 설명 |
58
58
  |------|--------|------|
59
- | **nx-consult** | `[consult]` | 구조화된 상담. 요구사항 정리 → 결정 기록 |
59
+ | **nx-meet** | `[meet]` | 구조화된 미팅. 요구사항 정리 → 결정 기록 |
60
60
  | **nx-run** | (기본 동작) | 동적 에이전트 구성 실행 |
61
61
  | **nx-init** | `/claude-nexus:nx-init` | 프로젝트 온보딩. 코드 스캔 → 지식 생성 |
62
62
  | **nx-setup** | `/claude-nexus:nx-setup` | 대화형 설정 |
@@ -69,20 +69,22 @@ claude plugin install claude-nexus@nexus
69
69
 
70
70
  Claude가 직접 호출하는 도구입니다.
71
71
 
72
- ### Core (13개)
72
+ ### Core (17개)
73
73
 
74
74
  | 도구 | 용도 |
75
75
  |------|------|
76
+ | `nx_briefing` | 에이전트 역할별 브리핑 조립 (core knowledge + rules 기반) |
76
77
  | `nx_core_read/write` | 프로젝트 지식 관리 (`.nexus/core/`, git 추적) |
77
78
  | `nx_rules_read/write` | 팀 커스텀 규칙 관리 (`.nexus/rules/`, git 추적) |
78
- | `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크, 결정) |
79
+ | `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크, 미팅) |
79
80
  | `nx_task_list/add/update/close` | `.nexus/state/tasks.json` 기반 태스크 관리 + `.nexus/history.json` 아카이브 |
80
- | `nx_decision_add` | 아키텍처 결정 기록 (`.nexus/state/decisions.json`) |
81
81
  | `nx_artifact_write` | 팀 산출물 저장 (`.nexus/state/artifacts/`) |
82
- | `nx_consult_start` | 상담 세션 시작 (토픽 + 논점 등록) |
83
- | `nx_consult_status` | 상담 상태 조회 (decisions.json join) |
84
- | `nx_consult_decide` | 논점 결정 처리 (consult.json + decisions.json) |
85
- | `nx_consult_update` | 상담 논점 수정 (add/remove/edit/reopen) |
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` | 진행 중인 미팅 참여 |
86
88
 
87
89
  ### Code Intelligence (10개)
88
90
 
@@ -112,7 +114,7 @@ Gate 단일 모듈로 동작합니다.
112
114
  | 이벤트 | 역할 |
113
115
  |--------|------|
114
116
  | `UserPromptSubmit` | 태그 감지 → 모드 활성화 + TASK_PIPELINE 주입 + additionalContext 안내 |
115
- | `PreToolUse` | Edit/Write: tasks.json 없으면 차단. Nexus 내부 경로는 예외 허용 |
117
+ | `PreToolUse` | Edit/Write: tasks.json 없으면 차단. nx_meet_start: 참석자 검증. Agent: team_name 트래킹 |
116
118
  | `Stop` | pending 태스크 있으면 종료 차단. all completed면 nx_task_close 강제 |
117
119
 
118
120
  </details>
@@ -126,7 +128,7 @@ Gate 단일 모듈로 동작합니다.
126
128
  - `rules/` — 팀 커스텀 규칙. git 추적.
127
129
  - `config.json` — Nexus 설정. git 추적.
128
130
  - `history.json` — 사이클 아카이브. git 추적.
129
- - `state/` — 런타임 상태 (tasks, decisions, consult 등). git 무시.
131
+ - `state/` — 런타임 상태 (tasks, meet 등). git 무시.
130
132
 
131
133
  </details>
132
134
 
@@ -138,8 +140,7 @@ Gate 단일 모듈로 동작합니다.
138
140
  ```
139
141
  .nexus/state/
140
142
  ├── tasks.json
141
- ├── decisions.json
142
- ├── consult.json
143
+ ├── meet.json
143
144
  ├── edit-tracker.json
144
145
  ├── reopen-tracker.json
145
146
  ├── agent-tracker.json
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.18.0
1
+ 0.19.0