conductor-kit 0.2.0 → 0.2.2
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 +5 -0
- package/README.md +5 -0
- package/commands/conductor-debug.md +2 -1
- package/commands/conductor-docs.md +2 -1
- package/commands/conductor-explain.md +2 -1
- package/commands/conductor-implement.md +2 -1
- package/commands/conductor-migrate.md +2 -1
- package/commands/conductor-plan.md +2 -1
- package/commands/conductor-refactor.md +2 -1
- package/commands/conductor-release.md +2 -1
- package/commands/conductor-review.md +2 -1
- package/commands/conductor-search.md +2 -1
- package/commands/conductor-security.md +2 -1
- package/commands/conductor-symphony.md +2 -1
- package/commands/conductor-test.md +2 -1
- package/config/conductor.json +1 -0
- package/config/conductor.schema.json +1 -0
- package/package.json +1 -1
- package/skills/conductor/SKILL.md +7 -5
package/README.ko.md
CHANGED
|
@@ -141,9 +141,12 @@ conductor 도구를 "sage" 역할로 사용해서 이 복잡한 문제를 해결
|
|
|
141
141
|
| `claude` | Claude Code 세션 실행 | 코드 생성, 리팩토링 |
|
|
142
142
|
| `gemini` | Gemini CLI 세션 실행 | 웹 검색, 리서치 |
|
|
143
143
|
| `conductor` | 역할 기반 라우팅 | 작업에 최적의 CLI 자동 선택 |
|
|
144
|
+
| `memory` | 공유 메모리 캐시 | 공유 컨텍스트 저장/조회 |
|
|
144
145
|
| `*-reply` | 세션 계속 | 멀티턴 대화 |
|
|
145
146
|
| `status` | CLI 가용성 확인 | 진단 |
|
|
146
147
|
|
|
148
|
+
공유 메모리는 프로젝트 단위로 캐시됩니다(TTL + git HEAD 변경 시 무효화). MCP 호출에 자동으로 prepend 되며, `memory`로 갱신하거나 `memory_key`/`memory_mode`로 추가 키를 주입하세요.
|
|
149
|
+
|
|
147
150
|
### 예시: 멀티-CLI 워크플로우
|
|
148
151
|
|
|
149
152
|
```
|
|
@@ -233,6 +236,8 @@ conductor settings --list-models --cli codex # 모델 목록
|
|
|
233
236
|
|--------|------|
|
|
234
237
|
| `conductor install` | CLI에 스킬/커맨드 설치 |
|
|
235
238
|
| `conductor uninstall` | 설치된 파일 제거 |
|
|
239
|
+
| `conductor disable` | 역할 라우팅 비활성화 |
|
|
240
|
+
| `conductor enable` | 역할 라우팅 재활성화 |
|
|
236
241
|
| `conductor status` | CLI 인증 및 가용성 확인 |
|
|
237
242
|
| `conductor doctor` | 전체 진단 |
|
|
238
243
|
| `conductor settings` | 역할 및 모델 설정 |
|
package/README.md
CHANGED
|
@@ -141,9 +141,12 @@ Use the conductor tool with role "sage" to solve this complex problem
|
|
|
141
141
|
| `claude` | Run Claude Code session | Code generation, refactoring |
|
|
142
142
|
| `gemini` | Run Gemini CLI session | Web search, research |
|
|
143
143
|
| `conductor` | Role-based routing | Auto-select best CLI for task |
|
|
144
|
+
| `memory` | Shared memory cache | Store/retrieve shared context |
|
|
144
145
|
| `*-reply` | Continue a session | Multi-turn conversations |
|
|
145
146
|
| `status` | Check CLI availability | Diagnostics |
|
|
146
147
|
|
|
148
|
+
Shared memory is cached per project (TTL + git HEAD invalidation) and auto-prepended to MCP calls. Use `memory` to update it, or `memory_key`/`memory_mode` to inject additional keys on `codex`, `claude`, `gemini`, or `conductor`.
|
|
149
|
+
|
|
147
150
|
### Example: Multi-CLI Workflow
|
|
148
151
|
|
|
149
152
|
```
|
|
@@ -233,6 +236,8 @@ conductor settings --list-models --cli codex # List models
|
|
|
233
236
|
|---------|-------------|
|
|
234
237
|
| `conductor install` | Install skills/commands to CLIs |
|
|
235
238
|
| `conductor uninstall` | Remove installed files |
|
|
239
|
+
| `conductor disable` | Disable conductor role routing |
|
|
240
|
+
| `conductor enable` | Re-enable conductor role routing |
|
|
236
241
|
| `conductor status` | Check CLI auth and availability |
|
|
237
242
|
| `conductor doctor` | Full diagnostics |
|
|
238
243
|
| `conductor settings` | Configure roles and models |
|
|
@@ -3,7 +3,8 @@ description: "Debug mode: trace bugs and analyze errors."
|
|
|
3
3
|
argument-hint: "error message or symptom"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate debug mode.
|
|
7
8
|
|
|
8
9
|
Delegate to sage for root cause analysis. Trace execution paths, check logs.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Docs mode: write or update documentation."
|
|
|
3
3
|
argument-hint: "what to document"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate docs mode.
|
|
7
8
|
|
|
8
9
|
Delegate to author role via MCP. Keep docs concise and accurate.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Explain mode: understand and explain code or architecture."
|
|
|
3
3
|
argument-hint: "what to explain"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate explain mode.
|
|
7
8
|
|
|
8
9
|
Trace code flow, explain architecture decisions, document patterns.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Implement mode: make small, safe code changes."
|
|
|
3
3
|
argument-hint: "what to implement"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate implement mode.
|
|
7
8
|
|
|
8
9
|
Minimal surgical edits. Verify with tests. Rollback when stuck.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Migrate mode: upgrade versions or migrate frameworks."
|
|
|
3
3
|
argument-hint: "migration target"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate migrate mode.
|
|
7
8
|
|
|
8
9
|
Plan migration steps, identify breaking changes, update dependencies safely.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Plan mode: read-only planning with no edits."
|
|
|
3
3
|
argument-hint: "task to plan"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate plan mode.
|
|
7
8
|
|
|
8
9
|
Read-only. No edits allowed. Output 3-6 steps with success criteria.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Refactor mode: improve code structure without changing behavior."
|
|
|
3
3
|
argument-hint: "what to refactor"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate refactor mode.
|
|
7
8
|
|
|
8
9
|
Extract patterns, remove duplication, improve naming. Verify behavior unchanged.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Release mode: release checklist and validation."
|
|
|
3
3
|
argument-hint: "version or release scope"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate release mode.
|
|
7
8
|
|
|
8
9
|
Checklist: version bump, changelog, validation, secret scan.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Review mode: code review and quality inspection."
|
|
|
3
3
|
argument-hint: "PR number, file, or scope"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate review mode.
|
|
7
8
|
|
|
8
9
|
Delegate to sage for deep analysis. Check for bugs, security issues, style violations.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Search mode: explore and analyze codebase."
|
|
|
3
3
|
argument-hint: "what to search for"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate search mode.
|
|
7
8
|
|
|
8
9
|
Delegate to pathfinder/scout roles via MCP. Evidence over opinions.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Security mode: scan for vulnerabilities and security issues."
|
|
|
3
3
|
argument-hint: "scope or specific concern"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate security mode.
|
|
7
8
|
|
|
8
9
|
Delegate to sage for vulnerability analysis. Check dependencies, secrets, OWASP risks.
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Symphony mode: full orchestration loop (search -> plan -> execute
|
|
|
3
3
|
argument-hint: "task or objective"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate symphony mode.
|
|
7
8
|
|
|
8
9
|
Your first response must start with "SYMPHONY MODE ENABLED!".
|
|
9
10
|
|
|
@@ -3,7 +3,8 @@ description: "Test mode: write and run tests."
|
|
|
3
3
|
argument-hint: "what to test"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Respect disabled state. If Conductor is disabled, do not enable it automatically; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
7
|
+
If enabled, load conductor skill. Activate test mode.
|
|
7
8
|
|
|
8
9
|
Write tests for specified code. Run tests and report coverage.
|
|
9
10
|
|
package/config/conductor.json
CHANGED
package/package.json
CHANGED
|
@@ -66,7 +66,8 @@ When delegating to external CLIs (gemini, codex, claude via MCP):
|
|
|
66
66
|
|
|
67
67
|
## Activation
|
|
68
68
|
|
|
69
|
-
**This skill activates automatically for all code-related tasks.**
|
|
69
|
+
**This skill activates automatically for all code-related tasks when Conductor is enabled.**
|
|
70
|
+
If Conductor is disabled, do not auto-activate or re-enable it; inform the user and proceed without Conductor unless they explicitly request enabling.
|
|
70
71
|
|
|
71
72
|
Conductor assesses the task and chooses the appropriate mode:
|
|
72
73
|
|
|
@@ -79,10 +80,11 @@ Conductor assesses the task and chooses the appropriate mode:
|
|
|
79
80
|
| **Release** | Deploy, publish, release | Release checklist + validation |
|
|
80
81
|
|
|
81
82
|
**Decision flow:**
|
|
82
|
-
1. Skill loads → Conductor activates
|
|
83
|
-
2.
|
|
84
|
-
3.
|
|
85
|
-
4.
|
|
83
|
+
1. Skill loads → Conductor activates (only when enabled)
|
|
84
|
+
2. If disabled → do not enable; inform user and proceed without Conductor
|
|
85
|
+
3. Assess task complexity
|
|
86
|
+
4. Simple task → execute directly
|
|
87
|
+
5. Complex/specialized → delegate via MCP
|
|
86
88
|
|
|
87
89
|
---
|
|
88
90
|
|