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.
@@ -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
+ ```