conductor-kit 0.2.0 → 0.2.1
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/config/conductor.json +1 -0
- package/config/conductor.schema.json +1 -0
- package/package.json +1 -1
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 |
|
package/config/conductor.json
CHANGED