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
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Role Routing Guide
|
|
2
|
+
|
|
3
|
+
Roles are defined in `conductor.json`. Route tasks to the appropriate role based on task characteristics.
|
|
4
|
+
|
|
5
|
+
**Config location** (project-local takes precedence):
|
|
6
|
+
1. `./.conductor-kit/conductor.json`
|
|
7
|
+
2. `~/.conductor-kit/conductor.json`
|
|
8
|
+
|
|
9
|
+
## Role Matrix
|
|
10
|
+
|
|
11
|
+
| Role | Use For | Strengths |
|
|
12
|
+
|------|---------|-----------|
|
|
13
|
+
| `sage` | Deep analysis, architecture, security, algorithms | Extended thinking, trade-off analysis |
|
|
14
|
+
| `scout` | Web search, API reference, best practices research | Fast retrieval, broad knowledge |
|
|
15
|
+
| `pathfinder` | Codebase navigation, file discovery, pattern finding | Quick scanning, parallel search |
|
|
16
|
+
| `pixelator` | Web UI/UX, React/Vue/CSS, responsive design | Visual reasoning, frontend patterns |
|
|
17
|
+
| `author` | README, docs, comments, changelogs | Clear writing, formatting |
|
|
18
|
+
| `vision` | Screenshot analysis, image review, visual debugging | Image understanding |
|
|
19
|
+
|
|
20
|
+
**Note:** The `cli` and `model` for each role are configured in `conductor.json`, not hardcoded here.
|
|
21
|
+
|
|
22
|
+
## Task -> Role Mapping
|
|
23
|
+
|
|
24
|
+
### Use `sage` when:
|
|
25
|
+
- Architecture decisions with trade-offs
|
|
26
|
+
- Root cause analysis for complex bugs
|
|
27
|
+
- Security vulnerability assessment
|
|
28
|
+
- Algorithm design / complexity analysis
|
|
29
|
+
- Refactoring strategy for legacy code
|
|
30
|
+
- Migration planning with risk assessment
|
|
31
|
+
- Any task requiring step-by-step reasoning
|
|
32
|
+
|
|
33
|
+
### Use `scout` when:
|
|
34
|
+
- Looking up framework/library docs
|
|
35
|
+
- Finding best practices or patterns
|
|
36
|
+
- Researching external dependencies
|
|
37
|
+
- Checking API specifications
|
|
38
|
+
|
|
39
|
+
### Use `pathfinder` when:
|
|
40
|
+
- Initial codebase discovery
|
|
41
|
+
- Finding relevant files for a task
|
|
42
|
+
- Understanding project structure
|
|
43
|
+
- Locating similar implementations
|
|
44
|
+
|
|
45
|
+
### Use `pixelator` when:
|
|
46
|
+
- Web UI component design (React/Vue/Svelte)
|
|
47
|
+
- CSS/Tailwind styling decisions
|
|
48
|
+
- Responsive layout and accessibility
|
|
49
|
+
- Frontend architecture (not mobile/desktop native)
|
|
50
|
+
|
|
51
|
+
### Use `author` when:
|
|
52
|
+
- Writing/updating documentation
|
|
53
|
+
- Generating changelogs
|
|
54
|
+
- Creating code comments
|
|
55
|
+
- README improvements
|
|
56
|
+
|
|
57
|
+
### Use `vision` when:
|
|
58
|
+
- Analyzing screenshots or mockups
|
|
59
|
+
- Visual regression review
|
|
60
|
+
- Image-based debugging
|
|
61
|
+
- UI comparison tasks
|
|
62
|
+
|
|
63
|
+
## Combining Roles
|
|
64
|
+
|
|
65
|
+
For complex tasks, combine roles in sequence:
|
|
66
|
+
|
|
67
|
+
1. **Discovery phase**: `pathfinder` -> find relevant files
|
|
68
|
+
2. **Analysis phase**: `sage` -> deep reasoning on findings
|
|
69
|
+
3. **Review phase**: `scout` -> verify against docs/best practices
|
|
70
|
+
|
|
71
|
+
Example (security audit):
|
|
72
|
+
```
|
|
73
|
+
pathfinder -> find auth-related files
|
|
74
|
+
sage -> analyze vulnerabilities + propose fixes
|
|
75
|
+
scout -> verify against OWASP guidelines
|
|
76
|
+
```
|