conductor-kit 0.0.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/LICENSE +21 -0
- package/README.ko.md +144 -0
- package/README.md +144 -0
- package/bin/conductor +67 -0
- package/commands/conductor-debug.md +10 -0
- package/commands/conductor-docs.md +10 -0
- package/commands/conductor-explain.md +10 -0
- package/commands/conductor-implement.md +10 -0
- package/commands/conductor-migrate.md +10 -0
- package/commands/conductor-plan.md +10 -0
- package/commands/conductor-refactor.md +10 -0
- package/commands/conductor-release.md +10 -0
- package/commands/conductor-review.md +10 -0
- package/commands/conductor-search.md +10 -0
- package/commands/conductor-security.md +10 -0
- package/commands/conductor-symphony.md +10 -0
- package/commands/conductor-test.md +10 -0
- package/config/conductor.json +44 -0
- package/config/conductor.schema.json +73 -0
- package/config/mcp-bundles.json +40 -0
- package/package.json +48 -0
- package/scripts/postinstall.js +135 -0
- package/skills/conductor/SKILL.md +227 -0
- package/skills/conductor/references/delegation.md +110 -0
- package/skills/conductor/references/formats.md +180 -0
- package/skills/conductor/references/roles.md +76 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Skyline-23
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.ko.md
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# conductor-kit
|
|
2
|
+
|
|
3
|
+
**Codex CLI**, **Claude Code**, **Gemini CLI**를 위한 글로벌 스킬팩과 통합 MCP 서버입니다.
|
|
4
|
+
|
|
5
|
+
**언어**: [English](README.md) | 한국어
|
|
6
|
+
|
|
7
|
+
## 이게 뭔가요?
|
|
8
|
+
|
|
9
|
+
conductor-kit은 다음을 도와줍니다:
|
|
10
|
+
- 일관된 오케스트레이션 워크플로우 사용 (검색 → 계획 → 실행 → 검증)
|
|
11
|
+
- 여러 AI CLI 간의 작업 위임 (Codex, Claude, Gemini)
|
|
12
|
+
- 원하는 CLI에 전문 스킬과 커맨드 로드
|
|
13
|
+
|
|
14
|
+
## 빠른 시작
|
|
15
|
+
|
|
16
|
+
### 설치 (macOS)
|
|
17
|
+
```bash
|
|
18
|
+
brew tap Skyline-23/conductor-kit
|
|
19
|
+
brew install --cask conductor-kit
|
|
20
|
+
conductor install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### 수동 설치
|
|
24
|
+
```bash
|
|
25
|
+
git clone https://github.com/Skyline-23/conductor-kit ~/.conductor-kit
|
|
26
|
+
cd ~/.conductor-kit
|
|
27
|
+
go build -o ~/.local/bin/conductor ./cmd/conductor
|
|
28
|
+
conductor install
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### 설치 확인
|
|
32
|
+
```bash
|
|
33
|
+
conductor status # CLI 가용성 및 인증 상태 확인
|
|
34
|
+
conductor doctor # 전체 진단
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## 사용법
|
|
38
|
+
|
|
39
|
+
### 1. 스킬 사용
|
|
40
|
+
Claude Code 또는 Codex CLI에서 다음으로 트리거:
|
|
41
|
+
- `conductor` 또는 `symphony` 또는 `sym`
|
|
42
|
+
|
|
43
|
+
### 2. 슬래시 커맨드
|
|
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` |
|
|
51
|
+
|
|
52
|
+
### 3. MCP 도구 사용 (CLI 간 위임)
|
|
53
|
+
|
|
54
|
+
통합 MCP 서버 등록:
|
|
55
|
+
|
|
56
|
+
**Claude Code** (`~/.claude/mcp.json`):
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"mcpServers": {
|
|
60
|
+
"conductor": {
|
|
61
|
+
"command": "conductor",
|
|
62
|
+
"args": ["mcp"]
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
**Codex CLI**:
|
|
69
|
+
```bash
|
|
70
|
+
codex mcp add conductor -- conductor mcp
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
사용 가능한 MCP 도구:
|
|
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 가용성 및 인증 확인 |
|
|
85
|
+
|
|
86
|
+
프롬프트에서 사용 예시:
|
|
87
|
+
```
|
|
88
|
+
gemini 도구를 사용해서 인증 로직을 코드베이스에서 검색해줘
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## 설정
|
|
92
|
+
|
|
93
|
+
설정 파일: `~/.conductor-kit/conductor.json`
|
|
94
|
+
|
|
95
|
+
### 역할 기반 라우팅 (기본값)
|
|
96
|
+
```json
|
|
97
|
+
{
|
|
98
|
+
"roles": {
|
|
99
|
+
"sage": { "cli": "codex", "model": "gpt-5.2-codex", "reasoning": "medium", "description": "Deep reasoning for complex problems" },
|
|
100
|
+
"scout": { "cli": "gemini", "model": "gemini-3-flash", "description": "Web search and research" },
|
|
101
|
+
"pathfinder": { "cli": "gemini", "model": "gemini-3-flash", "description": "Codebase exploration and navigation" },
|
|
102
|
+
"pixelator": { "cli": "gemini", "model": "gemini-3-pro", "description": "Web UI/UX design and frontend" }
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### 설정 마법사
|
|
108
|
+
```bash
|
|
109
|
+
conductor settings # 대화형 TUI 마법사
|
|
110
|
+
conductor settings --list-models --cli codex # 사용 가능한 모델 목록
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
자세한 설정 옵션은 [CONFIGURATION.md](docs/CONFIGURATION.md)를 참조하세요.
|
|
114
|
+
|
|
115
|
+
## 요구 사항
|
|
116
|
+
|
|
117
|
+
- **호스트 CLI**: Codex CLI, Claude Code, Gemini CLI 중 최소 하나
|
|
118
|
+
- **Go 1.24+**: 소스에서 빌드할 때만 필요
|
|
119
|
+
- **macOS**: Homebrew cask 설치용 (Linux: 수동 설치 사용)
|
|
120
|
+
|
|
121
|
+
## 명령어 참조
|
|
122
|
+
|
|
123
|
+
| 명령어 | 설명 |
|
|
124
|
+
|--------|------|
|
|
125
|
+
| `conductor install` | CLI에 스킬/커맨드 설치 |
|
|
126
|
+
| `conductor uninstall` | 설치된 파일 제거 |
|
|
127
|
+
| `conductor status` | CLI 인증 및 가용성 확인 |
|
|
128
|
+
| `conductor doctor` | 전체 진단 |
|
|
129
|
+
| `conductor settings` | 역할 및 모델 설정 |
|
|
130
|
+
| `conductor mcp` | 통합 MCP 서버 시작 |
|
|
131
|
+
|
|
132
|
+
## 제거
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
# Homebrew
|
|
136
|
+
brew uninstall --cask conductor-kit
|
|
137
|
+
|
|
138
|
+
# 수동
|
|
139
|
+
conductor uninstall
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## 라이선스
|
|
143
|
+
|
|
144
|
+
MIT
|
package/README.md
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# conductor-kit
|
|
2
|
+
|
|
3
|
+
A global skills pack for **Codex CLI**, **Claude Code**, and **Gemini CLI** with a unified MCP server for cross-CLI orchestration.
|
|
4
|
+
|
|
5
|
+
**Language**: English | [한국어](README.ko.md)
|
|
6
|
+
|
|
7
|
+
## What is this?
|
|
8
|
+
|
|
9
|
+
conductor-kit helps you:
|
|
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
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
### Install (macOS)
|
|
17
|
+
```bash
|
|
18
|
+
brew tap Skyline-23/conductor-kit
|
|
19
|
+
brew install --cask conductor-kit
|
|
20
|
+
conductor install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Install (Manual)
|
|
24
|
+
```bash
|
|
25
|
+
git clone https://github.com/Skyline-23/conductor-kit ~/.conductor-kit
|
|
26
|
+
cd ~/.conductor-kit
|
|
27
|
+
go build -o ~/.local/bin/conductor ./cmd/conductor
|
|
28
|
+
conductor install
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Verify Installation
|
|
32
|
+
```bash
|
|
33
|
+
conductor status # Check CLI availability and auth status
|
|
34
|
+
conductor doctor # Full diagnostics
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Usage
|
|
38
|
+
|
|
39
|
+
### 1. Use the Skill
|
|
40
|
+
In Claude Code or Codex CLI, trigger by saying:
|
|
41
|
+
- `conductor` or `symphony` or `sym`
|
|
42
|
+
|
|
43
|
+
### 2. Use Slash Commands
|
|
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` |
|
|
51
|
+
|
|
52
|
+
### 3. Use MCP Tools (Cross-CLI Delegation)
|
|
53
|
+
|
|
54
|
+
Register the unified MCP server:
|
|
55
|
+
|
|
56
|
+
**Claude Code** (`~/.claude/mcp.json`):
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"mcpServers": {
|
|
60
|
+
"conductor": {
|
|
61
|
+
"command": "conductor",
|
|
62
|
+
"args": ["mcp"]
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
**Codex CLI**:
|
|
69
|
+
```bash
|
|
70
|
+
codex mcp add conductor -- conductor mcp
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Available MCP tools:
|
|
74
|
+
| Tool | Description |
|
|
75
|
+
|------|-------------|
|
|
76
|
+
| `codex` | Run Codex CLI session |
|
|
77
|
+
| `codex-reply` | Continue Codex session |
|
|
78
|
+
| `claude` | Run Claude Code session |
|
|
79
|
+
| `claude-reply` | Continue Claude session |
|
|
80
|
+
| `gemini` | Run Gemini CLI session |
|
|
81
|
+
| `gemini-reply` | Continue Gemini session |
|
|
82
|
+
| `conductor` | Role-based routing (uses config) |
|
|
83
|
+
| `conductor-reply` | Continue conductor session |
|
|
84
|
+
| `status` | Check CLI availability and auth |
|
|
85
|
+
|
|
86
|
+
Example usage in your prompt:
|
|
87
|
+
```
|
|
88
|
+
Use the gemini tool to search the codebase for authentication logic
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## Configuration
|
|
92
|
+
|
|
93
|
+
Config file: `~/.conductor-kit/conductor.json`
|
|
94
|
+
|
|
95
|
+
### Role-based Routing (Default)
|
|
96
|
+
```json
|
|
97
|
+
{
|
|
98
|
+
"roles": {
|
|
99
|
+
"sage": { "cli": "codex", "model": "gpt-5.2-codex", "reasoning": "medium", "description": "Deep reasoning for complex problems" },
|
|
100
|
+
"scout": { "cli": "gemini", "model": "gemini-3-flash", "description": "Web search and research" },
|
|
101
|
+
"pathfinder": { "cli": "gemini", "model": "gemini-3-flash", "description": "Codebase exploration and navigation" },
|
|
102
|
+
"pixelator": { "cli": "gemini", "model": "gemini-3-pro", "description": "Web UI/UX design and frontend" }
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### Setup Wizard
|
|
108
|
+
```bash
|
|
109
|
+
conductor settings # Interactive TUI wizard
|
|
110
|
+
conductor settings --list-models --cli codex # List available models
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
For detailed configuration options, see [CONFIGURATION.md](docs/CONFIGURATION.md).
|
|
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)
|
|
120
|
+
|
|
121
|
+
## Commands Reference
|
|
122
|
+
|
|
123
|
+
| Command | Description |
|
|
124
|
+
|---------|-------------|
|
|
125
|
+
| `conductor install` | Install skills/commands to CLIs |
|
|
126
|
+
| `conductor uninstall` | Remove installed files |
|
|
127
|
+
| `conductor status` | Check CLI auth and availability |
|
|
128
|
+
| `conductor doctor` | Full diagnostics |
|
|
129
|
+
| `conductor settings` | Configure roles and models |
|
|
130
|
+
| `conductor mcp` | Start unified MCP server |
|
|
131
|
+
|
|
132
|
+
## Uninstall
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
# Homebrew
|
|
136
|
+
brew uninstall --cask conductor-kit
|
|
137
|
+
|
|
138
|
+
# Manual
|
|
139
|
+
conductor uninstall
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## License
|
|
143
|
+
|
|
144
|
+
MIT
|
package/bin/conductor
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const { spawn } = require('child_process');
|
|
4
|
+
const path = require('path');
|
|
5
|
+
const fs = require('fs');
|
|
6
|
+
const os = require('os');
|
|
7
|
+
|
|
8
|
+
const BINARY_NAME = 'conductor';
|
|
9
|
+
|
|
10
|
+
function getBinaryPath() {
|
|
11
|
+
// Check for binary in package directory first
|
|
12
|
+
const packageBinary = path.join(__dirname, '..', 'native', BINARY_NAME);
|
|
13
|
+
if (fs.existsSync(packageBinary)) {
|
|
14
|
+
return packageBinary;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// Check common global install locations
|
|
18
|
+
const homeDir = os.homedir();
|
|
19
|
+
const possiblePaths = [
|
|
20
|
+
path.join(homeDir, '.conductor-kit', 'bin', BINARY_NAME),
|
|
21
|
+
'/usr/local/bin/' + BINARY_NAME,
|
|
22
|
+
'/opt/homebrew/bin/' + BINARY_NAME,
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
for (const p of possiblePaths) {
|
|
26
|
+
if (fs.existsSync(p)) {
|
|
27
|
+
return p;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
return null;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
function main() {
|
|
35
|
+
const binaryPath = getBinaryPath();
|
|
36
|
+
|
|
37
|
+
if (!binaryPath) {
|
|
38
|
+
console.error('Error: conductor binary not found.');
|
|
39
|
+
console.error('Run postinstall or install via Homebrew:');
|
|
40
|
+
console.error(' brew install Skyline-23/conductor-kit/conductor-kit');
|
|
41
|
+
process.exit(1);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const args = process.argv.slice(2);
|
|
45
|
+
const child = spawn(binaryPath, args, {
|
|
46
|
+
stdio: 'inherit',
|
|
47
|
+
env: {
|
|
48
|
+
...process.env,
|
|
49
|
+
CONDUCTOR_NPX: '1',
|
|
50
|
+
},
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
child.on('error', (err) => {
|
|
54
|
+
console.error(`Failed to start conductor: ${err.message}`);
|
|
55
|
+
process.exit(1);
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
child.on('exit', (code, signal) => {
|
|
59
|
+
if (signal) {
|
|
60
|
+
process.kill(process.pid, signal);
|
|
61
|
+
} else {
|
|
62
|
+
process.exit(code ?? 1);
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
main();
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Debug mode: trace bugs and analyze errors."
|
|
3
|
+
argument-hint: "error message or symptom"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate debug mode.
|
|
7
|
+
|
|
8
|
+
Delegate to sage for root cause analysis. Trace execution paths, check logs.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Docs mode: write or update documentation."
|
|
3
|
+
argument-hint: "what to document"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate docs mode.
|
|
7
|
+
|
|
8
|
+
Delegate to author role via MCP. Keep docs concise and accurate.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Explain mode: understand and explain code or architecture."
|
|
3
|
+
argument-hint: "what to explain"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate explain mode.
|
|
7
|
+
|
|
8
|
+
Trace code flow, explain architecture decisions, document patterns.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Implement mode: make small, safe code changes."
|
|
3
|
+
argument-hint: "what to implement"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate implement mode.
|
|
7
|
+
|
|
8
|
+
Minimal surgical edits. Verify with tests. Rollback when stuck.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Migrate mode: upgrade versions or migrate frameworks."
|
|
3
|
+
argument-hint: "migration target"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate migrate mode.
|
|
7
|
+
|
|
8
|
+
Plan migration steps, identify breaking changes, update dependencies safely.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Plan mode: read-only planning with no edits."
|
|
3
|
+
argument-hint: "task to plan"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate plan mode.
|
|
7
|
+
|
|
8
|
+
Read-only. No edits allowed. Output 3-6 steps with success criteria.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Refactor mode: improve code structure without changing behavior."
|
|
3
|
+
argument-hint: "what to refactor"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate refactor mode.
|
|
7
|
+
|
|
8
|
+
Extract patterns, remove duplication, improve naming. Verify behavior unchanged.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Release mode: release checklist and validation."
|
|
3
|
+
argument-hint: "version or release scope"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate release mode.
|
|
7
|
+
|
|
8
|
+
Checklist: version bump, changelog, validation, secret scan.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Review mode: code review and quality inspection."
|
|
3
|
+
argument-hint: "PR number, file, or scope"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate review mode.
|
|
7
|
+
|
|
8
|
+
Delegate to sage for deep analysis. Check for bugs, security issues, style violations.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Search mode: explore and analyze codebase."
|
|
3
|
+
argument-hint: "what to search for"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate search mode.
|
|
7
|
+
|
|
8
|
+
Delegate to pathfinder/scout roles via MCP. Evidence over opinions.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Security mode: scan for vulnerabilities and security issues."
|
|
3
|
+
argument-hint: "scope or specific concern"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate security mode.
|
|
7
|
+
|
|
8
|
+
Delegate to sage for vulnerability analysis. Check dependencies, secrets, OWASP risks.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Symphony mode: full orchestration loop (search -> plan -> execute -> verify -> cleanup)."
|
|
3
|
+
argument-hint: "task or objective"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate symphony mode.
|
|
7
|
+
|
|
8
|
+
Your first response must start with "SYMPHONY MODE ENABLED!".
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Test mode: write and run tests."
|
|
3
|
+
argument-hint: "what to test"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Load conductor skill. Activate test mode.
|
|
7
|
+
|
|
8
|
+
Write tests for specified code. Run tests and report coverage.
|
|
9
|
+
|
|
10
|
+
Refer to skills/conductor/SKILL.md for detailed instructions.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"defaults": {
|
|
3
|
+
"idle_timeout_ms": 120000,
|
|
4
|
+
"summary_only": true,
|
|
5
|
+
"max_parallel": 4,
|
|
6
|
+
"retry": 0,
|
|
7
|
+
"retry_backoff_ms": 500,
|
|
8
|
+
"log_prompt": false
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
"roles": {
|
|
12
|
+
"sage": {
|
|
13
|
+
"cli": "codex",
|
|
14
|
+
"model": "gpt-5.2-codex",
|
|
15
|
+
"reasoning": "medium",
|
|
16
|
+
"description": "Deep reasoning for complex problems"
|
|
17
|
+
},
|
|
18
|
+
"scout": {
|
|
19
|
+
"cli": "gemini",
|
|
20
|
+
"model": "gemini-3-flash",
|
|
21
|
+
"description": "Web search and research"
|
|
22
|
+
},
|
|
23
|
+
"pathfinder": {
|
|
24
|
+
"cli": "gemini",
|
|
25
|
+
"model": "gemini-3-flash",
|
|
26
|
+
"description": "Codebase exploration and navigation"
|
|
27
|
+
},
|
|
28
|
+
"pixelator": {
|
|
29
|
+
"cli": "gemini",
|
|
30
|
+
"model": "gemini-3-pro",
|
|
31
|
+
"description": "Web UI/UX design and frontend"
|
|
32
|
+
},
|
|
33
|
+
"author": {
|
|
34
|
+
"cli": "gemini",
|
|
35
|
+
"model": "gemini-3-flash",
|
|
36
|
+
"description": "Documentation and technical writing"
|
|
37
|
+
},
|
|
38
|
+
"vision": {
|
|
39
|
+
"cli": "gemini",
|
|
40
|
+
"model": "gemini-3-flash",
|
|
41
|
+
"description": "Image and screenshot analysis"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "Conductor Config",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"defaults": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"idle_timeout_ms": { "type": "integer", "minimum": 0 },
|
|
12
|
+
"max_parallel": { "type": "integer", "minimum": 0 },
|
|
13
|
+
"retry": { "type": "integer", "minimum": 0 },
|
|
14
|
+
"retry_backoff_ms": { "type": "integer", "minimum": 0 },
|
|
15
|
+
"log_prompt": { "type": "boolean" }
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"roles": {
|
|
19
|
+
"type": "object",
|
|
20
|
+
"minProperties": 1,
|
|
21
|
+
"additionalProperties": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"additionalProperties": false,
|
|
24
|
+
"properties": {
|
|
25
|
+
"cli": { "type": "string" },
|
|
26
|
+
"args": {
|
|
27
|
+
"type": "array",
|
|
28
|
+
"items": { "type": "string" }
|
|
29
|
+
},
|
|
30
|
+
"model_flag": { "type": "string" },
|
|
31
|
+
"model": { "type": "string" },
|
|
32
|
+
"models": {
|
|
33
|
+
"type": "array",
|
|
34
|
+
"items": {
|
|
35
|
+
"anyOf": [
|
|
36
|
+
{ "type": "string" },
|
|
37
|
+
{
|
|
38
|
+
"type": "object",
|
|
39
|
+
"additionalProperties": false,
|
|
40
|
+
"properties": {
|
|
41
|
+
"name": { "type": "string" },
|
|
42
|
+
"reasoning_effort": { "type": "string" },
|
|
43
|
+
"reasoning": { "type": "string" }
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"reasoning_flag": { "type": "string" },
|
|
50
|
+
"reasoning_key": { "type": "string" },
|
|
51
|
+
"reasoning": { "type": "string" },
|
|
52
|
+
"ready_cmd": { "type": "string" },
|
|
53
|
+
"ready_args": {
|
|
54
|
+
"type": "array",
|
|
55
|
+
"items": { "type": "string" }
|
|
56
|
+
},
|
|
57
|
+
"ready_timeout_ms": { "type": "integer" },
|
|
58
|
+
"env": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"additionalProperties": { "type": "string" }
|
|
61
|
+
},
|
|
62
|
+
"cwd": { "type": "string" },
|
|
63
|
+
"idle_timeout_ms": { "type": "integer", "minimum": 0 },
|
|
64
|
+
"max_parallel": { "type": "integer", "minimum": 0 },
|
|
65
|
+
"retry": { "type": "integer", "minimum": 0 },
|
|
66
|
+
"retry_backoff_ms": { "type": "integer", "minimum": 0 }
|
|
67
|
+
},
|
|
68
|
+
"required": ["cli"]
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"required": ["roles"]
|
|
73
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bundles": {
|
|
3
|
+
"extended": {
|
|
4
|
+
"servers": [
|
|
5
|
+
{
|
|
6
|
+
"name": "search",
|
|
7
|
+
"command": "",
|
|
8
|
+
"args": [],
|
|
9
|
+
"enabled": false,
|
|
10
|
+
"note": "Add a search MCP server command here."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "lsp",
|
|
14
|
+
"command": "",
|
|
15
|
+
"args": [],
|
|
16
|
+
"enabled": false,
|
|
17
|
+
"note": "Add an LSP MCP server command here."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "ast",
|
|
21
|
+
"command": "",
|
|
22
|
+
"args": [],
|
|
23
|
+
"enabled": false,
|
|
24
|
+
"note": "Add an AST MCP server command here."
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
"conductor": {
|
|
30
|
+
"servers": [
|
|
31
|
+
{
|
|
32
|
+
"name": "conductor",
|
|
33
|
+
"command": "conductor",
|
|
34
|
+
"args": ["mcp"],
|
|
35
|
+
"note": "Unified MCP server with codex/claude/gemini + role-based conductor routing."
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|