conductor-kit 0.0.0 → 0.1.68
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/README.ko.md +204 -54
- package/README.md +204 -54
- package/package.json +1 -1
- package/scripts/postinstall.js +2 -1
package/README.ko.md
CHANGED
|
@@ -6,21 +6,34 @@
|
|
|
6
6
|
|
|
7
7
|
## 이게 뭔가요?
|
|
8
8
|
|
|
9
|
-
conductor-kit은
|
|
10
|
-
- 일관된 오케스트레이션 워크플로우 사용 (검색 → 계획 → 실행 → 검증)
|
|
11
|
-
- 여러 AI CLI 간의 작업 위임 (Codex, Claude, Gemini)
|
|
12
|
-
- 원하는 CLI에 전문 스킬과 커맨드 로드
|
|
9
|
+
conductor-kit은 AI CLI 도구들이 함께 원활하게 작동하도록 합니다:
|
|
13
10
|
|
|
14
|
-
|
|
11
|
+
- **Cross-CLI 위임**: Claude가 Codex에게 추론을, Gemini에게 웹 검색을 위임
|
|
12
|
+
- **통합 스킬 시스템**: 하나의 스킬이 모든 지원 CLI에서 작동
|
|
13
|
+
- **역할 기반 라우팅**: 작업을 최적의 CLI/모델 조합으로 자동 라우팅
|
|
14
|
+
- **MCP 통합**: 도구 상호운용성을 위한 완전한 Model Context Protocol 지원
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
## 설치
|
|
17
|
+
|
|
18
|
+
### 옵션 1: npx (가장 쉬움)
|
|
19
|
+
```bash
|
|
20
|
+
npx conductor-kit install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### 옵션 2: Homebrew (macOS)
|
|
17
24
|
```bash
|
|
18
25
|
brew tap Skyline-23/conductor-kit
|
|
19
26
|
brew install --cask conductor-kit
|
|
20
27
|
conductor install
|
|
21
28
|
```
|
|
22
29
|
|
|
23
|
-
###
|
|
30
|
+
### 옵션 3: npm 글로벌
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g conductor-kit
|
|
33
|
+
conductor install
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### 옵션 4: 소스에서 빌드
|
|
24
37
|
```bash
|
|
25
38
|
git clone https://github.com/Skyline-23/conductor-kit ~/.conductor-kit
|
|
26
39
|
cd ~/.conductor-kit
|
|
@@ -30,30 +43,64 @@ conductor install
|
|
|
30
43
|
|
|
31
44
|
### 설치 확인
|
|
32
45
|
```bash
|
|
33
|
-
conductor status # CLI 가용성 및 인증 상태 확인
|
|
34
46
|
conductor doctor # 전체 진단
|
|
47
|
+
conductor status # CLI 가용성 확인
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 튜토리얼: 시작하기
|
|
53
|
+
|
|
54
|
+
### 1단계: AI CLI 최소 하나 설치
|
|
55
|
+
|
|
56
|
+
conductor-kit은 다음 CLI들과 작동합니다:
|
|
57
|
+
|
|
58
|
+
| CLI | 설치 | 인증 |
|
|
59
|
+
|-----|------|------|
|
|
60
|
+
| **Claude Code** | `npm install -g @anthropic-ai/claude-code` | `claude` (프롬프트 따라하기) |
|
|
61
|
+
| **Codex CLI** | `npm install -g @openai/codex` | `codex --login` |
|
|
62
|
+
| **Gemini CLI** | `npm install -g @anthropic-ai/gemini-cli` | `gemini auth` |
|
|
63
|
+
|
|
64
|
+
### 2단계: 설치 프로그램 실행
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
conductor install
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
이 명령은:
|
|
71
|
+
- 설치된 CLI 감지
|
|
72
|
+
- `~/.claude/skills/` 및/또는 `~/.codex/skills/`에 스킬 복사
|
|
73
|
+
- `~/.claude/commands/` 및/또는 `~/.codex/prompts/`에 슬래시 커맨드 복사
|
|
74
|
+
- `~/.conductor-kit/conductor.json`에 설정 파일 생성
|
|
75
|
+
|
|
76
|
+
### 3단계: 스킬 로드
|
|
77
|
+
|
|
78
|
+
선호하는 CLI를 시작하고 conductor 스킬을 트리거하세요:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
# Claude Code에서
|
|
82
|
+
claude
|
|
83
|
+
> conductor 스킬 로드해줘
|
|
84
|
+
> sym # 단축 트리거
|
|
35
85
|
```
|
|
36
86
|
|
|
37
|
-
|
|
87
|
+
```bash
|
|
88
|
+
# Codex CLI에서
|
|
89
|
+
codex
|
|
90
|
+
> conductor 로드
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
스킬은 오케스트레이션 가이드와 역할 기반 위임 패턴을 제공합니다.
|
|
38
94
|
|
|
39
|
-
|
|
40
|
-
Claude Code 또는 Codex CLI에서 다음으로 트리거:
|
|
41
|
-
- `conductor` 또는 `symphony` 또는 `sym`
|
|
95
|
+
---
|
|
42
96
|
|
|
43
|
-
|
|
44
|
-
| Claude Code | Codex CLI |
|
|
45
|
-
|-------------|-----------|
|
|
46
|
-
| `/conductor-plan` | `/prompts:conductor-plan` |
|
|
47
|
-
| `/conductor-search` | `/prompts:conductor-search` |
|
|
48
|
-
| `/conductor-implement` | `/prompts:conductor-implement` |
|
|
49
|
-
| `/conductor-release` | `/prompts:conductor-release` |
|
|
50
|
-
| `/conductor-symphony` | `/prompts:conductor-symphony` |
|
|
97
|
+
## 튜토리얼: MCP로 Cross-CLI 위임
|
|
51
98
|
|
|
52
|
-
|
|
99
|
+
conductor-kit의 진정한 힘은 한 CLI가 MCP 도구를 통해 다른 CLI를 호출하는 것입니다.
|
|
53
100
|
|
|
54
|
-
|
|
101
|
+
### 1단계: MCP 서버 등록
|
|
55
102
|
|
|
56
|
-
**Claude Code
|
|
103
|
+
**Claude Code용** - `~/.claude/mcp.json`에 추가:
|
|
57
104
|
```json
|
|
58
105
|
{
|
|
59
106
|
"mcpServers": {
|
|
@@ -65,58 +112,120 @@ Claude Code 또는 Codex CLI에서 다음으로 트리거:
|
|
|
65
112
|
}
|
|
66
113
|
```
|
|
67
114
|
|
|
68
|
-
**Codex CLI
|
|
115
|
+
**Codex CLI용**:
|
|
69
116
|
```bash
|
|
70
117
|
codex mcp add conductor -- conductor mcp
|
|
71
118
|
```
|
|
72
119
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
| `codex` | Codex CLI 세션 실행 |
|
|
77
|
-
| `codex-reply` | Codex 세션 계속 |
|
|
78
|
-
| `claude` | Claude Code 세션 실행 |
|
|
79
|
-
| `claude-reply` | Claude 세션 계속 |
|
|
80
|
-
| `gemini` | Gemini CLI 세션 실행 |
|
|
81
|
-
| `gemini-reply` | Gemini 세션 계속 |
|
|
82
|
-
| `conductor` | 역할 기반 라우팅 (config 사용) |
|
|
83
|
-
| `conductor-reply` | conductor 세션 계속 |
|
|
84
|
-
| `status` | CLI 가용성 및 인증 확인 |
|
|
120
|
+
### 2단계: 프롬프트에서 cross-CLI 도구 사용
|
|
121
|
+
|
|
122
|
+
이제 Claude에게 다른 CLI에 위임하도록 요청할 수 있습니다:
|
|
85
123
|
|
|
86
|
-
프롬프트에서 사용 예시:
|
|
87
124
|
```
|
|
88
|
-
|
|
125
|
+
codex 도구를 사용해서 이 알고리즘을 깊은 추론으로 분석해줘
|
|
89
126
|
```
|
|
90
127
|
|
|
128
|
+
```
|
|
129
|
+
gemini 도구를 사용해서 React 19 모범 사례를 웹에서 검색해줘
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
```
|
|
133
|
+
conductor 도구를 "sage" 역할로 사용해서 이 복잡한 문제를 해결해줘
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### 사용 가능한 MCP 도구
|
|
137
|
+
|
|
138
|
+
| 도구 | 설명 | 예시 |
|
|
139
|
+
|------|------|------|
|
|
140
|
+
| `codex` | Codex CLI 세션 실행 | 깊은 추론, 복잡한 분석 |
|
|
141
|
+
| `claude` | Claude Code 세션 실행 | 코드 생성, 리팩토링 |
|
|
142
|
+
| `gemini` | Gemini CLI 세션 실행 | 웹 검색, 리서치 |
|
|
143
|
+
| `conductor` | 역할 기반 라우팅 | 작업에 최적의 CLI 자동 선택 |
|
|
144
|
+
| `*-reply` | 세션 계속 | 멀티턴 대화 |
|
|
145
|
+
| `status` | CLI 가용성 확인 | 진단 |
|
|
146
|
+
|
|
147
|
+
### 예시: 멀티-CLI 워크플로우
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
새로운 인증 시스템을 구현해야 해.
|
|
151
|
+
|
|
152
|
+
1. gemini 도구로 2025년 OAuth 2.0 모범 사례 리서치
|
|
153
|
+
2. codex 도구로 추론과 함께 아키텍처 설계
|
|
154
|
+
3. 그 다음 여기 Claude에서 구현
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## 튜토리얼: 슬래시 커맨드 사용
|
|
160
|
+
|
|
161
|
+
슬래시 커맨드는 일반적인 워크플로우에 빠르게 접근할 수 있게 합니다.
|
|
162
|
+
|
|
163
|
+
### Claude Code에서
|
|
164
|
+
|
|
165
|
+
| 커맨드 | 설명 |
|
|
166
|
+
|--------|------|
|
|
167
|
+
| `/conductor-plan` | 구현 계획 생성 |
|
|
168
|
+
| `/conductor-search` | 위임으로 코드베이스 검색 |
|
|
169
|
+
| `/conductor-implement` | 검증과 함께 구현 |
|
|
170
|
+
| `/conductor-debug` | 멀티-CLI 분석으로 디버그 |
|
|
171
|
+
| `/conductor-review` | 코드 리뷰 워크플로우 |
|
|
172
|
+
| `/conductor-release` | 릴리즈 준비 |
|
|
173
|
+
| `/conductor-symphony` | 풀 오케스트레이션 모드 |
|
|
174
|
+
|
|
175
|
+
### Codex CLI에서
|
|
176
|
+
|
|
177
|
+
커맨드 앞에 `/prompts:` 붙이기:
|
|
178
|
+
```
|
|
179
|
+
/prompts:conductor-plan
|
|
180
|
+
/prompts:conductor-symphony
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
91
185
|
## 설정
|
|
92
186
|
|
|
93
187
|
설정 파일: `~/.conductor-kit/conductor.json`
|
|
94
188
|
|
|
95
|
-
### 역할 기반 라우팅
|
|
189
|
+
### 역할 기반 라우팅
|
|
190
|
+
|
|
191
|
+
역할은 작업 유형을 CLI/모델 조합에 매핑합니다:
|
|
192
|
+
|
|
96
193
|
```json
|
|
97
194
|
{
|
|
98
195
|
"roles": {
|
|
99
|
-
"sage": {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
196
|
+
"sage": {
|
|
197
|
+
"cli": "codex",
|
|
198
|
+
"model": "gpt-5.2-codex",
|
|
199
|
+
"reasoning": "medium",
|
|
200
|
+
"description": "복잡한 문제를 위한 깊은 추론"
|
|
201
|
+
},
|
|
202
|
+
"scout": {
|
|
203
|
+
"cli": "gemini",
|
|
204
|
+
"model": "gemini-3-flash",
|
|
205
|
+
"description": "웹 검색과 리서치"
|
|
206
|
+
},
|
|
207
|
+
"pathfinder": {
|
|
208
|
+
"cli": "gemini",
|
|
209
|
+
"model": "gemini-3-flash",
|
|
210
|
+
"description": "코드베이스 탐색과 네비게이션"
|
|
211
|
+
},
|
|
212
|
+
"pixelator": {
|
|
213
|
+
"cli": "gemini",
|
|
214
|
+
"model": "gemini-3-pro",
|
|
215
|
+
"description": "웹 UI/UX 디자인과 프론트엔드"
|
|
216
|
+
}
|
|
103
217
|
}
|
|
104
218
|
}
|
|
105
219
|
```
|
|
106
220
|
|
|
107
|
-
### 설정
|
|
221
|
+
### 대화형 설정
|
|
222
|
+
|
|
108
223
|
```bash
|
|
109
|
-
conductor settings #
|
|
110
|
-
conductor settings --list-models --cli codex #
|
|
224
|
+
conductor settings # TUI 마법사
|
|
225
|
+
conductor settings --list-models --cli codex # 모델 목록
|
|
111
226
|
```
|
|
112
227
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
## 요구 사항
|
|
116
|
-
|
|
117
|
-
- **호스트 CLI**: Codex CLI, Claude Code, Gemini CLI 중 최소 하나
|
|
118
|
-
- **Go 1.24+**: 소스에서 빌드할 때만 필요
|
|
119
|
-
- **macOS**: Homebrew cask 설치용 (Linux: 수동 설치 사용)
|
|
228
|
+
---
|
|
120
229
|
|
|
121
230
|
## 명령어 참조
|
|
122
231
|
|
|
@@ -129,16 +238,57 @@ conductor settings --list-models --cli codex # 사용 가능한 모델 목록
|
|
|
129
238
|
| `conductor settings` | 역할 및 모델 설정 |
|
|
130
239
|
| `conductor mcp` | 통합 MCP 서버 시작 |
|
|
131
240
|
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
## 문제 해결
|
|
244
|
+
|
|
245
|
+
### "conductor: command not found"
|
|
246
|
+
|
|
247
|
+
바이너리가 PATH에 있는지 확인:
|
|
248
|
+
```bash
|
|
249
|
+
# 설치 위치 확인
|
|
250
|
+
which conductor
|
|
251
|
+
|
|
252
|
+
# 필요하면 PATH에 추가 (npm 글로벌용)
|
|
253
|
+
export PATH="$PATH:$(npm config get prefix)/bin"
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### MCP 도구가 나타나지 않음
|
|
257
|
+
|
|
258
|
+
1. MCP 설정 추가 후 CLI 재시작
|
|
259
|
+
2. MCP 서버 작동 확인:
|
|
260
|
+
```bash
|
|
261
|
+
conductor mcp --help
|
|
262
|
+
conductor status
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### CLI가 감지되지 않음
|
|
266
|
+
|
|
267
|
+
진단 실행:
|
|
268
|
+
```bash
|
|
269
|
+
conductor doctor
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
어떤 CLI가 설치되고 인증되었는지 표시됩니다.
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
132
276
|
## 제거
|
|
133
277
|
|
|
134
278
|
```bash
|
|
135
279
|
# Homebrew
|
|
136
280
|
brew uninstall --cask conductor-kit
|
|
137
281
|
|
|
138
|
-
#
|
|
282
|
+
# npm
|
|
283
|
+
npm uninstall -g conductor-kit
|
|
284
|
+
|
|
285
|
+
# 수동 정리
|
|
139
286
|
conductor uninstall
|
|
287
|
+
rm -rf ~/.conductor-kit
|
|
140
288
|
```
|
|
141
289
|
|
|
290
|
+
---
|
|
291
|
+
|
|
142
292
|
## 라이선스
|
|
143
293
|
|
|
144
294
|
MIT
|
package/README.md
CHANGED
|
@@ -6,21 +6,34 @@ A global skills pack for **Codex CLI**, **Claude Code**, and **Gemini CLI** with
|
|
|
6
6
|
|
|
7
7
|
## What is this?
|
|
8
8
|
|
|
9
|
-
conductor-kit
|
|
10
|
-
- Use a consistent orchestration workflow (search → plan → execute → verify)
|
|
11
|
-
- Delegate tasks between different AI CLIs (Codex, Claude, Gemini)
|
|
12
|
-
- Load specialized skills and commands into your preferred CLI
|
|
9
|
+
conductor-kit enables AI CLI tools to work together seamlessly:
|
|
13
10
|
|
|
14
|
-
|
|
11
|
+
- **Cross-CLI Delegation**: Let Claude delegate to Codex for reasoning, or Gemini for web search
|
|
12
|
+
- **Unified Skill System**: One skill works across all supported CLIs
|
|
13
|
+
- **Role-based Routing**: Automatically route tasks to the best CLI/model combination
|
|
14
|
+
- **MCP Integration**: Full Model Context Protocol support for tool interoperability
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
### Option 1: npx (Easiest)
|
|
19
|
+
```bash
|
|
20
|
+
npx conductor-kit install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Option 2: Homebrew (macOS)
|
|
17
24
|
```bash
|
|
18
25
|
brew tap Skyline-23/conductor-kit
|
|
19
26
|
brew install --cask conductor-kit
|
|
20
27
|
conductor install
|
|
21
28
|
```
|
|
22
29
|
|
|
23
|
-
###
|
|
30
|
+
### Option 3: npm global
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g conductor-kit
|
|
33
|
+
conductor install
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Option 4: Build from source
|
|
24
37
|
```bash
|
|
25
38
|
git clone https://github.com/Skyline-23/conductor-kit ~/.conductor-kit
|
|
26
39
|
cd ~/.conductor-kit
|
|
@@ -30,30 +43,64 @@ conductor install
|
|
|
30
43
|
|
|
31
44
|
### Verify Installation
|
|
32
45
|
```bash
|
|
33
|
-
conductor status # Check CLI availability and auth status
|
|
34
46
|
conductor doctor # Full diagnostics
|
|
47
|
+
conductor status # Check CLI availability
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Tutorial: Getting Started
|
|
53
|
+
|
|
54
|
+
### Step 1: Install at least one AI CLI
|
|
55
|
+
|
|
56
|
+
conductor-kit works with these CLIs:
|
|
57
|
+
|
|
58
|
+
| CLI | Install | Auth |
|
|
59
|
+
|-----|---------|------|
|
|
60
|
+
| **Claude Code** | `npm install -g @anthropic-ai/claude-code` | `claude` (follow prompts) |
|
|
61
|
+
| **Codex CLI** | `npm install -g @openai/codex` | `codex --login` |
|
|
62
|
+
| **Gemini CLI** | `npm install -g @anthropic-ai/gemini-cli` | `gemini auth` |
|
|
63
|
+
|
|
64
|
+
### Step 2: Run the installer
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
conductor install
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
This will:
|
|
71
|
+
- Detect which CLIs are installed
|
|
72
|
+
- Copy skills to `~/.claude/skills/` and/or `~/.codex/skills/`
|
|
73
|
+
- Copy slash commands to `~/.claude/commands/` and/or `~/.codex/prompts/`
|
|
74
|
+
- Create config at `~/.conductor-kit/conductor.json`
|
|
75
|
+
|
|
76
|
+
### Step 3: Load the skill
|
|
77
|
+
|
|
78
|
+
Start your preferred CLI and trigger the conductor skill:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
# In Claude Code
|
|
82
|
+
claude
|
|
83
|
+
> Load the conductor skill
|
|
84
|
+
> sym # shorthand trigger
|
|
35
85
|
```
|
|
36
86
|
|
|
37
|
-
|
|
87
|
+
```bash
|
|
88
|
+
# In Codex CLI
|
|
89
|
+
codex
|
|
90
|
+
> Load conductor
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
The skill provides orchestration guidance and role-based delegation patterns.
|
|
38
94
|
|
|
39
|
-
|
|
40
|
-
In Claude Code or Codex CLI, trigger by saying:
|
|
41
|
-
- `conductor` or `symphony` or `sym`
|
|
95
|
+
---
|
|
42
96
|
|
|
43
|
-
|
|
44
|
-
| Claude Code | Codex CLI |
|
|
45
|
-
|-------------|-----------|
|
|
46
|
-
| `/conductor-plan` | `/prompts:conductor-plan` |
|
|
47
|
-
| `/conductor-search` | `/prompts:conductor-search` |
|
|
48
|
-
| `/conductor-implement` | `/prompts:conductor-implement` |
|
|
49
|
-
| `/conductor-release` | `/prompts:conductor-release` |
|
|
50
|
-
| `/conductor-symphony` | `/prompts:conductor-symphony` |
|
|
97
|
+
## Tutorial: Cross-CLI Delegation with MCP
|
|
51
98
|
|
|
52
|
-
|
|
99
|
+
The real power of conductor-kit is letting one CLI call another via MCP tools.
|
|
53
100
|
|
|
54
|
-
Register the
|
|
101
|
+
### Step 1: Register the MCP server
|
|
55
102
|
|
|
56
|
-
**Claude Code**
|
|
103
|
+
**For Claude Code** - Add to `~/.claude/mcp.json`:
|
|
57
104
|
```json
|
|
58
105
|
{
|
|
59
106
|
"mcpServers": {
|
|
@@ -65,58 +112,120 @@ Register the unified MCP server:
|
|
|
65
112
|
}
|
|
66
113
|
```
|
|
67
114
|
|
|
68
|
-
**Codex CLI**:
|
|
115
|
+
**For Codex CLI**:
|
|
69
116
|
```bash
|
|
70
117
|
codex mcp add conductor -- conductor mcp
|
|
71
118
|
```
|
|
72
119
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
120
|
+
### Step 2: Use cross-CLI tools in your prompts
|
|
121
|
+
|
|
122
|
+
Now you can ask Claude to delegate to other CLIs:
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
Use the codex tool to analyze this algorithm with deep reasoning
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
Use the gemini tool to search the web for React 19 best practices
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
```
|
|
133
|
+
Use the conductor tool with role "sage" to solve this complex problem
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Available MCP Tools
|
|
137
|
+
|
|
138
|
+
| Tool | Description | Example |
|
|
139
|
+
|------|-------------|---------|
|
|
140
|
+
| `codex` | Run Codex CLI session | Deep reasoning, complex analysis |
|
|
141
|
+
| `claude` | Run Claude Code session | Code generation, refactoring |
|
|
142
|
+
| `gemini` | Run Gemini CLI session | Web search, research |
|
|
143
|
+
| `conductor` | Role-based routing | Auto-select best CLI for task |
|
|
144
|
+
| `*-reply` | Continue a session | Multi-turn conversations |
|
|
145
|
+
| `status` | Check CLI availability | Diagnostics |
|
|
146
|
+
|
|
147
|
+
### Example: Multi-CLI Workflow
|
|
85
148
|
|
|
86
|
-
Example usage in your prompt:
|
|
87
149
|
```
|
|
88
|
-
|
|
150
|
+
I need to implement a new authentication system.
|
|
151
|
+
|
|
152
|
+
1. Use the gemini tool to research OAuth 2.0 best practices for 2025
|
|
153
|
+
2. Use the codex tool to design the architecture with reasoning
|
|
154
|
+
3. Then implement it here in Claude
|
|
89
155
|
```
|
|
90
156
|
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## Tutorial: Using Slash Commands
|
|
160
|
+
|
|
161
|
+
Slash commands provide quick access to common workflows.
|
|
162
|
+
|
|
163
|
+
### In Claude Code
|
|
164
|
+
|
|
165
|
+
| Command | Description |
|
|
166
|
+
|---------|-------------|
|
|
167
|
+
| `/conductor-plan` | Create an implementation plan |
|
|
168
|
+
| `/conductor-search` | Search codebase with delegation |
|
|
169
|
+
| `/conductor-implement` | Implement with verification |
|
|
170
|
+
| `/conductor-debug` | Debug with multi-CLI analysis |
|
|
171
|
+
| `/conductor-review` | Code review workflow |
|
|
172
|
+
| `/conductor-release` | Release preparation |
|
|
173
|
+
| `/conductor-symphony` | Full orchestration mode |
|
|
174
|
+
|
|
175
|
+
### In Codex CLI
|
|
176
|
+
|
|
177
|
+
Prefix commands with `/prompts:`:
|
|
178
|
+
```
|
|
179
|
+
/prompts:conductor-plan
|
|
180
|
+
/prompts:conductor-symphony
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
91
185
|
## Configuration
|
|
92
186
|
|
|
93
187
|
Config file: `~/.conductor-kit/conductor.json`
|
|
94
188
|
|
|
95
|
-
### Role-based Routing
|
|
189
|
+
### Role-based Routing
|
|
190
|
+
|
|
191
|
+
Roles map task types to CLI/model combinations:
|
|
192
|
+
|
|
96
193
|
```json
|
|
97
194
|
{
|
|
98
195
|
"roles": {
|
|
99
|
-
"sage": {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
196
|
+
"sage": {
|
|
197
|
+
"cli": "codex",
|
|
198
|
+
"model": "gpt-5.2-codex",
|
|
199
|
+
"reasoning": "medium",
|
|
200
|
+
"description": "Deep reasoning for complex problems"
|
|
201
|
+
},
|
|
202
|
+
"scout": {
|
|
203
|
+
"cli": "gemini",
|
|
204
|
+
"model": "gemini-3-flash",
|
|
205
|
+
"description": "Web search and research"
|
|
206
|
+
},
|
|
207
|
+
"pathfinder": {
|
|
208
|
+
"cli": "gemini",
|
|
209
|
+
"model": "gemini-3-flash",
|
|
210
|
+
"description": "Codebase exploration and navigation"
|
|
211
|
+
},
|
|
212
|
+
"pixelator": {
|
|
213
|
+
"cli": "gemini",
|
|
214
|
+
"model": "gemini-3-pro",
|
|
215
|
+
"description": "Web UI/UX design and frontend"
|
|
216
|
+
}
|
|
103
217
|
}
|
|
104
218
|
}
|
|
105
219
|
```
|
|
106
220
|
|
|
107
|
-
### Setup
|
|
221
|
+
### Interactive Setup
|
|
222
|
+
|
|
108
223
|
```bash
|
|
109
|
-
conductor settings #
|
|
110
|
-
conductor settings --list-models --cli codex # List
|
|
224
|
+
conductor settings # TUI wizard
|
|
225
|
+
conductor settings --list-models --cli codex # List models
|
|
111
226
|
```
|
|
112
227
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
## Requirements
|
|
116
|
-
|
|
117
|
-
- **Host CLI**: At least one of Codex CLI, Claude Code, or Gemini CLI
|
|
118
|
-
- **Go 1.24+**: Only if building from source
|
|
119
|
-
- **macOS**: For Homebrew cask install (Linux: use manual install)
|
|
228
|
+
---
|
|
120
229
|
|
|
121
230
|
## Commands Reference
|
|
122
231
|
|
|
@@ -129,16 +238,57 @@ For detailed configuration options, see [CONFIGURATION.md](docs/CONFIGURATION.md
|
|
|
129
238
|
| `conductor settings` | Configure roles and models |
|
|
130
239
|
| `conductor mcp` | Start unified MCP server |
|
|
131
240
|
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
## Troubleshooting
|
|
244
|
+
|
|
245
|
+
### "conductor: command not found"
|
|
246
|
+
|
|
247
|
+
Ensure the binary is in your PATH:
|
|
248
|
+
```bash
|
|
249
|
+
# Check install location
|
|
250
|
+
which conductor
|
|
251
|
+
|
|
252
|
+
# Add to PATH if needed (for npm global)
|
|
253
|
+
export PATH="$PATH:$(npm config get prefix)/bin"
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### MCP tools not appearing
|
|
257
|
+
|
|
258
|
+
1. Restart your CLI after adding MCP config
|
|
259
|
+
2. Check MCP server is working:
|
|
260
|
+
```bash
|
|
261
|
+
conductor mcp --help
|
|
262
|
+
conductor status
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### CLI not detected
|
|
266
|
+
|
|
267
|
+
Run diagnostics:
|
|
268
|
+
```bash
|
|
269
|
+
conductor doctor
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
This shows which CLIs are installed and authenticated.
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
132
276
|
## Uninstall
|
|
133
277
|
|
|
134
278
|
```bash
|
|
135
279
|
# Homebrew
|
|
136
280
|
brew uninstall --cask conductor-kit
|
|
137
281
|
|
|
138
|
-
#
|
|
282
|
+
# npm
|
|
283
|
+
npm uninstall -g conductor-kit
|
|
284
|
+
|
|
285
|
+
# Manual cleanup
|
|
139
286
|
conductor uninstall
|
|
287
|
+
rm -rf ~/.conductor-kit
|
|
140
288
|
```
|
|
141
289
|
|
|
290
|
+
---
|
|
291
|
+
|
|
142
292
|
## License
|
|
143
293
|
|
|
144
294
|
MIT
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -109,8 +109,9 @@ async function main() {
|
|
|
109
109
|
console.log(`Binary: ${binaryPath}`);
|
|
110
110
|
|
|
111
111
|
// Run install command to set up skills/commands
|
|
112
|
+
// Use packageDir (npm package root) which contains skills/commands, not nativeDir (binary only)
|
|
112
113
|
console.log('\nSetting up skills and commands...');
|
|
113
|
-
const installProcess = spawn(binaryPath, ['install', '--mode', '
|
|
114
|
+
const installProcess = spawn(binaryPath, ['install', '--mode', 'copy', '--repo', packageDir], {
|
|
114
115
|
stdio: 'inherit',
|
|
115
116
|
});
|
|
116
117
|
|