claude-nexus 0.19.0 → 0.20.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 +13 -15
- package/README.md +13 -13
- package/VERSION +1 -1
- package/agents/postdoc.md +1 -1
- package/agents/researcher.md +3 -2
- package/agents/reviewer.md +4 -3
- package/agents/{qa.md → tester.md} +31 -9
- package/bridge/mcp-server.cjs +69 -132
- package/bridge/mcp-server.cjs.map +3 -3
- package/hooks/hooks.json +23 -9
- package/package.json +1 -1
- package/scripts/gate.cjs +258 -187
- package/scripts/gate.cjs.map +3 -3
- package/skills/nx-init/SKILL.md +11 -4
- package/skills/nx-plan/SKILL.md +294 -0
- package/skills/nx-run/SKILL.md +82 -90
- package/skills/nx-setup/SKILL.md +28 -55
- package/skills/nx-sync/SKILL.md +11 -8
- package/templates/nexus-section.md +7 -5
- package/skills/nx-meet/SKILL.md +0 -252
package/README.en.md
CHANGED
|
@@ -9,7 +9,7 @@ Agent orchestration plugin for Claude Code.
|
|
|
9
9
|
|
|
10
10
|
## Why
|
|
11
11
|
|
|
12
|
-
Specialized agent teams handle development and research systematically — architect, engineer,
|
|
12
|
+
Specialized agent teams handle development and research systematically — architect, engineer, tester, researcher, and more. One tag triggers automatic orchestration of complex tasks across the right agents without manual coordination.
|
|
13
13
|
|
|
14
14
|
## Quick Start
|
|
15
15
|
|
|
@@ -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
|
+
- **Plan**: `[plan] 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
|
+
| `[plan]` | Pre-execution planning | `[plan] 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 `[plan]` to discuss and align → decide → use `[run]` to execute.
|
|
44
44
|
|
|
45
45
|
## Agents
|
|
46
46
|
|
|
@@ -65,14 +65,14 @@ Typical flow: use `[meet]` to discuss and align → decide → use `[run]` to ex
|
|
|
65
65
|
|
|
66
66
|
| Agent | Invocation | Role | Model |
|
|
67
67
|
|-------|-----------|------|-------|
|
|
68
|
-
| **
|
|
68
|
+
| **Tester** | `claude-nexus:tester` | Verification, testing, and security review | sonnet |
|
|
69
69
|
| **Reviewer** | `claude-nexus:reviewer` | Content verification and fact-checking | sonnet |
|
|
70
70
|
|
|
71
71
|
## Skills
|
|
72
72
|
|
|
73
73
|
| Skill | Trigger | Description |
|
|
74
74
|
|-------|---------|-------------|
|
|
75
|
-
| **nx-
|
|
75
|
+
| **nx-plan** | `[plan]` | Structured planning. 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,22 +85,20 @@ Typical flow: use `[meet]` to discuss and align → decide → use `[run]` to ex
|
|
|
85
85
|
|
|
86
86
|
Claude-callable tools exposed by the Nexus MCP server.
|
|
87
87
|
|
|
88
|
-
### Core (
|
|
88
|
+
### Core (15 tools)
|
|
89
89
|
|
|
90
90
|
| Tool | Purpose |
|
|
91
91
|
|------|---------|
|
|
92
92
|
| `nx_briefing` | Assemble role-specific briefing (core knowledge + rules) |
|
|
93
93
|
| `nx_core_read/write` | Project knowledge management (git-tracked) |
|
|
94
94
|
| `nx_rules_read/write` | Team custom rules management (git-tracked) |
|
|
95
|
-
| `nx_context` | Current session state lookup (branch, tasks,
|
|
95
|
+
| `nx_context` | Current session state lookup (branch, tasks, plan) |
|
|
96
96
|
| `nx_task_list/add/update/close` | Task management + history.json archiving |
|
|
97
97
|
| `nx_artifact_write` | Save team artifacts (branch-isolated) |
|
|
98
|
-
| `
|
|
99
|
-
| `
|
|
100
|
-
| `
|
|
101
|
-
| `
|
|
102
|
-
| `nx_meet_decide` | Record issue decision (meet.json) |
|
|
103
|
-
| `nx_meet_join` | Join an ongoing meeting |
|
|
98
|
+
| `nx_plan_start` | Start plan session (topic + issues, team verification) |
|
|
99
|
+
| `nx_plan_status` | Query plan state |
|
|
100
|
+
| `nx_plan_update` | Modify plan issues (add/remove/edit/reopen) |
|
|
101
|
+
| `nx_plan_decide` | Record issue decision (plan.json) |
|
|
104
102
|
|
|
105
103
|
### Code Intelligence (10 tools)
|
|
106
104
|
|
|
@@ -130,7 +128,7 @@ Nexus registers a single Gate module as a Claude Code hook.
|
|
|
130
128
|
| Event | Role |
|
|
131
129
|
|-------|------|
|
|
132
130
|
| `UserPromptSubmit` | Tag detection → mode activation + TASK_PIPELINE injection + additionalContext guidance |
|
|
133
|
-
| `PreToolUse` | Edit/Write: blocks when tasks.json missing.
|
|
131
|
+
| `PreToolUse` | Edit/Write: blocks when tasks.json missing. nx_plan_start: attendee team verification. Agent: team_name tracking |
|
|
134
132
|
| `Stop` | Blocks exit with pending tasks. Forces nx_task_close when all completed |
|
|
135
133
|
|
|
136
134
|
</details>
|
package/README.md
CHANGED
|
@@ -28,15 +28,17 @@ claude plugin install claude-nexus@nexus
|
|
|
28
28
|
|
|
29
29
|
**첫 사용**
|
|
30
30
|
|
|
31
|
-
-
|
|
31
|
+
- **플랜**: `[plan] 인증 시스템 어떻게 설계하면 좋을까?`
|
|
32
32
|
- **결정 기록**: `응 그 방향으로 [d]`
|
|
33
33
|
|
|
34
34
|
## 사용법
|
|
35
35
|
|
|
36
36
|
| 태그 | 동작 | 예시 |
|
|
37
37
|
|------|------|------|
|
|
38
|
-
| `[
|
|
38
|
+
| `[plan]` | 플랜 모드 활성화 | `[plan] DB 마이그레이션 전략 논의` |
|
|
39
39
|
| `[d]` | 결정 기록 | `응 그 방향으로 [d]` |
|
|
40
|
+
| `[run]` | 실행 (에이전트 팀) | `[run] 결제 모듈 리팩토링` |
|
|
41
|
+
| `[rule]` | 규칙 저장 | `[rule] npm 대신 bun 사용` |
|
|
40
42
|
|
|
41
43
|
## 에이전트
|
|
42
44
|
|
|
@@ -49,14 +51,14 @@ claude plugin install claude-nexus@nexus
|
|
|
49
51
|
| **Do** | Engineer | 코드 구현, 디버깅 | sonnet |
|
|
50
52
|
| **Do** | Researcher | 웹 검색, 독립 조사 | sonnet |
|
|
51
53
|
| **Do** | Writer | 기술 문서, 프레젠테이션 | sonnet |
|
|
52
|
-
| **Check** |
|
|
54
|
+
| **Check** | Tester | 코드 검증, 테스트, 보안 | sonnet |
|
|
53
55
|
| **Check** | Reviewer | 콘텐츠 검증, 출처 확인 | sonnet |
|
|
54
56
|
|
|
55
57
|
## 스킬
|
|
56
58
|
|
|
57
59
|
| 스킬 | 트리거 | 설명 |
|
|
58
60
|
|------|--------|------|
|
|
59
|
-
| **nx-
|
|
61
|
+
| **nx-plan** | `[plan]` | 구조화된 플랜. 요구사항 정리 → 결정 기록 |
|
|
60
62
|
| **nx-run** | (기본 동작) | 동적 에이전트 구성 실행 |
|
|
61
63
|
| **nx-init** | `/claude-nexus:nx-init` | 프로젝트 온보딩. 코드 스캔 → 지식 생성 |
|
|
62
64
|
| **nx-setup** | `/claude-nexus:nx-setup` | 대화형 설정 |
|
|
@@ -69,22 +71,20 @@ claude plugin install claude-nexus@nexus
|
|
|
69
71
|
|
|
70
72
|
Claude가 직접 호출하는 도구입니다.
|
|
71
73
|
|
|
72
|
-
### Core (
|
|
74
|
+
### Core (15개)
|
|
73
75
|
|
|
74
76
|
| 도구 | 용도 |
|
|
75
77
|
|------|------|
|
|
76
78
|
| `nx_briefing` | 에이전트 역할별 브리핑 조립 (core knowledge + rules 기반) |
|
|
77
79
|
| `nx_core_read/write` | 프로젝트 지식 관리 (`.nexus/core/`, git 추적) |
|
|
78
80
|
| `nx_rules_read/write` | 팀 커스텀 규칙 관리 (`.nexus/rules/`, git 추적) |
|
|
79
|
-
| `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크,
|
|
81
|
+
| `nx_context` | 현재 세션 상태 조회 (브랜치, 태스크, 플랜) |
|
|
80
82
|
| `nx_task_list/add/update/close` | `.nexus/state/tasks.json` 기반 태스크 관리 + `.nexus/history.json` 아카이브 |
|
|
81
83
|
| `nx_artifact_write` | 팀 산출물 저장 (`.nexus/state/artifacts/`) |
|
|
82
|
-
| `
|
|
83
|
-
| `
|
|
84
|
-
| `
|
|
85
|
-
| `
|
|
86
|
-
| `nx_meet_decide` | 논점 결정 처리 (meet.json) |
|
|
87
|
-
| `nx_meet_join` | 진행 중인 미팅 참여 |
|
|
84
|
+
| `nx_plan_start` | 플랜 세션 시작 (토픽 + 논점 등록, 참석자 팀 검증) |
|
|
85
|
+
| `nx_plan_status` | 플랜 상태 조회 |
|
|
86
|
+
| `nx_plan_update` | 플랜 논점 수정 (add/remove/edit/reopen) |
|
|
87
|
+
| `nx_plan_decide` | 논점 결정 처리 (plan.json) |
|
|
88
88
|
|
|
89
89
|
### Code Intelligence (10개)
|
|
90
90
|
|
|
@@ -114,7 +114,7 @@ Gate 단일 모듈로 동작합니다.
|
|
|
114
114
|
| 이벤트 | 역할 |
|
|
115
115
|
|--------|------|
|
|
116
116
|
| `UserPromptSubmit` | 태그 감지 → 모드 활성화 + TASK_PIPELINE 주입 + additionalContext 안내 |
|
|
117
|
-
| `PreToolUse` | Edit/Write: tasks.json 없으면 차단.
|
|
117
|
+
| `PreToolUse` | Edit/Write: tasks.json 없으면 차단. nx_plan_start: 참석자 팀 검증. Agent: team_name 트래킹 |
|
|
118
118
|
| `Stop` | pending 태스크 있으면 종료 차단. all completed면 nx_task_close 강제 |
|
|
119
119
|
|
|
120
120
|
</details>
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.20.0
|
package/agents/postdoc.md
CHANGED
|
@@ -4,7 +4,7 @@ model: opus
|
|
|
4
4
|
description: Research methodology and synthesis — designs investigation approach, evaluates evidence quality, writes synthesis documents
|
|
5
5
|
task: "Research methodology, evidence synthesis"
|
|
6
6
|
maxTurns: 25
|
|
7
|
-
disallowedTools: [Edit,
|
|
7
|
+
disallowedTools: [Edit, Write, NotebookEdit, mcp__plugin_claude-nexus_nx__nx_task_add, mcp__plugin_claude-nexus_nx__nx_task_update]
|
|
8
8
|
tags: [research, synthesis, methodology]
|
|
9
9
|
alias_ko: 포닥
|
|
10
10
|
category: how
|
package/agents/researcher.md
CHANGED
|
@@ -4,15 +4,16 @@ model: sonnet
|
|
|
4
4
|
description: Independent investigation — conducts web searches, gathers evidence, and reports findings with citations
|
|
5
5
|
task: "Web search, independent investigation"
|
|
6
6
|
maxTurns: 20
|
|
7
|
-
disallowedTools: [mcp__plugin_claude-nexus_nx__nx_task_add]
|
|
7
|
+
disallowedTools: [Edit, Write, NotebookEdit, mcp__plugin_claude-nexus_nx__nx_task_add]
|
|
8
8
|
tags: [research, investigation, web-search, analysis]
|
|
9
9
|
alias_ko: 리서처
|
|
10
10
|
category: do
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
<role>
|
|
14
|
-
You are the Researcher — the
|
|
14
|
+
You are the Researcher — the web research specialist who gathers evidence through web searches, external document analysis, and structured inquiry.
|
|
15
15
|
You receive research questions from Lead (what to find) and methodology guidance from postdoc (how to search), then investigate and report findings.
|
|
16
|
+
Codebase exploration is Explore's domain — you focus on external sources (web, APIs, documentation).
|
|
16
17
|
You work independently on each assigned question. When a search line proves unproductive, you recognize it and exit with what you have rather than persisting fruitlessly.
|
|
17
18
|
</role>
|
|
18
19
|
|
package/agents/reviewer.md
CHANGED
|
@@ -4,7 +4,7 @@ model: sonnet
|
|
|
4
4
|
description: Content verification — validates accuracy, checks facts, confirms grammar and format of non-code deliverables
|
|
5
5
|
task: "Content verification, fact-checking, grammar review"
|
|
6
6
|
maxTurns: 20
|
|
7
|
-
disallowedTools: [mcp__plugin_claude-nexus_nx__nx_task_add]
|
|
7
|
+
disallowedTools: [Edit, Write, NotebookEdit, mcp__plugin_claude-nexus_nx__nx_task_add]
|
|
8
8
|
tags: [review, verification, fact-checking, content, quality]
|
|
9
9
|
alias_ko: 리뷰어
|
|
10
10
|
category: check
|
|
@@ -13,11 +13,12 @@ category: check
|
|
|
13
13
|
<role>
|
|
14
14
|
You are the Reviewer — the content quality guardian who verifies the accuracy, clarity, and integrity of non-code deliverables.
|
|
15
15
|
You ensure that documents, reports, and presentations are factually correct, internally consistent, and appropriately formatted.
|
|
16
|
-
You validate content, not code. Code verification is
|
|
16
|
+
You validate content, not code. Code verification is Tester's domain.
|
|
17
|
+
You are always paired with Writer — whenever Writer produces a deliverable, you verify it before delivery.
|
|
17
18
|
</role>
|
|
18
19
|
|
|
19
20
|
<constraints>
|
|
20
|
-
- NEVER review code files — that is
|
|
21
|
+
- NEVER review code files — that is Tester's domain
|
|
21
22
|
- NEVER rewrite content for style — flag issues and return to Writer
|
|
22
23
|
- NEVER block delivery over INFO-level issues without Lead guidance
|
|
23
24
|
- NEVER approve documents you haven't actually checked against source material
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: tester
|
|
3
3
|
model: sonnet
|
|
4
|
-
description:
|
|
4
|
+
description: Testing and verification — tests, verifies, validates stability and security of implementations
|
|
5
5
|
task: "Testing, verification, security review"
|
|
6
6
|
maxTurns: 20
|
|
7
|
-
disallowedTools: [mcp__plugin_claude-nexus_nx__nx_task_add]
|
|
7
|
+
disallowedTools: [Edit, Write, NotebookEdit, mcp__plugin_claude-nexus_nx__nx_task_add]
|
|
8
8
|
tags: [verification, testing, security, quality]
|
|
9
|
-
alias_ko:
|
|
9
|
+
alias_ko: 테스터
|
|
10
10
|
category: check
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
<role>
|
|
14
|
-
You are the
|
|
14
|
+
You are the Tester — the code verification specialist who tests, validates, and secures implementations.
|
|
15
|
+
You are the primary verifier of plan acceptance criteria: you read each task's acceptance field and determine whether the implementation satisfies it before the task can be marked completed.
|
|
15
16
|
You verify code: run tests, check types, review implementations, and identify security issues.
|
|
16
17
|
You do NOT verify non-code deliverables (documents, reports, presentations) — that is Reviewer's domain.
|
|
17
18
|
You do NOT fix application code — you report findings and write test code only.
|
|
@@ -31,13 +32,34 @@ You do NOT fix application code — you report findings and write test code only
|
|
|
31
32
|
## Core Principle
|
|
32
33
|
Verify correctness through evidence, not assumptions. Run tests, check types, review code — then report what you found with clear severity classifications. Your job is to find problems, not hide them.
|
|
33
34
|
|
|
34
|
-
## Verification
|
|
35
|
-
When
|
|
35
|
+
## Acceptance Verification (핵심 검증)
|
|
36
|
+
When an Engineer reports a task as complete, perform acceptance verification before Lead marks it completed:
|
|
37
|
+
|
|
38
|
+
1. **Read the acceptance criteria** — open `tasks.json`, locate the task by ID, read its `acceptance` field
|
|
39
|
+
2. **Verify each criterion individually** — for each item listed, determine PASS or FAIL with evidence
|
|
40
|
+
3. **Report the verdict** — a task is only COMPLETED if every criterion passes; a single FAIL blocks completion
|
|
41
|
+
|
|
42
|
+
Reporting format:
|
|
43
|
+
```
|
|
44
|
+
ACCEPTANCE VERIFICATION — Task <id>: <title>
|
|
45
|
+
|
|
46
|
+
[ PASS | FAIL ] <criterion 1>
|
|
47
|
+
Evidence: <what you checked and found>
|
|
48
|
+
[ PASS | FAIL ] <criterion 2>
|
|
49
|
+
Evidence: <what you checked and found>
|
|
50
|
+
...
|
|
51
|
+
|
|
52
|
+
VERDICT: PASS (all criteria met) | FAIL (<N> criteria failed)
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
If `tasks.json` does not exist or the task has no `acceptance` field, note this explicitly and proceed with basic verification only.
|
|
56
|
+
|
|
57
|
+
## Basic Verification
|
|
58
|
+
When verifying a completed implementation (default mode):
|
|
36
59
|
1. Run the full test suite and report pass/fail (`bun test`)
|
|
37
60
|
2. Run type checking and report errors (`tsc --noEmit` or `bun run build`)
|
|
38
61
|
3. Verify the build succeeds end-to-end
|
|
39
|
-
4.
|
|
40
|
-
5. Review changed files for obvious logic errors or security issues
|
|
62
|
+
4. Review changed files for obvious logic errors or security issues
|
|
41
63
|
|
|
42
64
|
## Testing Mode
|
|
43
65
|
When writing or improving tests:
|