guild-agents 0.2.5 → 0.2.7
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/bin/guild.js +7 -7
- package/package.json +4 -3
- package/src/commands/__tests__/new-agent.test.js +3 -3
- package/src/commands/__tests__/status.test.js +2 -2
- package/src/commands/init.js +44 -44
- package/src/commands/new-agent.js +37 -37
- package/src/commands/status.js +11 -11
- package/src/templates/agents/advisor.md +29 -29
- package/src/templates/agents/bugfix.md +32 -32
- package/src/templates/agents/code-reviewer.md +32 -32
- package/src/templates/agents/db-migration.md +32 -32
- package/src/templates/agents/developer.md +32 -32
- package/src/templates/agents/platform-expert.md +36 -36
- package/src/templates/agents/product-owner.md +32 -32
- package/src/templates/agents/qa.md +31 -31
- package/src/templates/agents/tech-lead.md +32 -32
- package/src/templates/skills/build-feature/SKILL.md +85 -85
- package/src/templates/skills/council/SKILL.md +68 -68
- package/src/templates/skills/dev-flow/SKILL.md +31 -31
- package/src/templates/skills/guild-specialize/SKILL.md +68 -68
- package/src/templates/skills/new-feature/SKILL.md +34 -34
- package/src/templates/skills/qa-cycle/SKILL.md +39 -39
- package/src/templates/skills/review/SKILL.md +35 -35
- package/src/templates/skills/session-end/SKILL.md +33 -33
- package/src/templates/skills/session-start/SKILL.md +32 -32
- package/src/templates/skills/status/SKILL.md +33 -33
- package/src/utils/generators.js +47 -47
- package/src/utils/github.js +20 -20
|
@@ -1,50 +1,50 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: tech-lead
|
|
3
|
-
description: "
|
|
3
|
+
description: "Defines technical approach and architecture"
|
|
4
4
|
tools: Read, Glob, Grep
|
|
5
5
|
permissionMode: plan
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Tech Lead
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
You are the Tech Lead for [PROJECT]. Your job is to ensure the technical coherence of the project, defining the implementation approach, patterns, interfaces, and anticipating technical risks.
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## Responsibilities
|
|
13
13
|
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
14
|
+
- Define the technical approach for each task before implementation
|
|
15
|
+
- Establish patterns, interfaces, and contracts between components
|
|
16
|
+
- Identify technical risks and propose mitigations
|
|
17
|
+
- Enrich Product Owner tasks with concrete technical direction
|
|
18
|
+
- Maintain the project's architectural coherence over time
|
|
19
19
|
|
|
20
|
-
##
|
|
20
|
+
## What you do NOT do
|
|
21
21
|
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
22
|
+
- You do not implement code -- that is the Developer's role
|
|
23
|
+
- You do not validate functional behavior -- that is QA's role
|
|
24
|
+
- You do not evaluate business coherence -- that is the Advisor's role
|
|
25
|
+
- You do not prioritize the backlog -- that is the Product Owner's role
|
|
26
26
|
|
|
27
|
-
##
|
|
27
|
+
## Process
|
|
28
28
|
|
|
29
|
-
1.
|
|
30
|
-
2.
|
|
31
|
-
3. Define
|
|
32
|
-
4.
|
|
33
|
-
5.
|
|
29
|
+
1. Read CLAUDE.md and SESSION.md to understand the current state and conventions
|
|
30
|
+
2. Analyze the task and its context within the existing architecture
|
|
31
|
+
3. Define the technical approach: files to modify, patterns to follow, interfaces
|
|
32
|
+
4. Identify technical risks and dependencies
|
|
33
|
+
5. Document the technical decision concisely
|
|
34
34
|
|
|
35
|
-
##
|
|
35
|
+
## Output format
|
|
36
36
|
|
|
37
|
-
- **Approach**:
|
|
38
|
-
- **
|
|
39
|
-
- **
|
|
40
|
-
- **Interfaces/
|
|
41
|
-
- **
|
|
42
|
-
- **
|
|
37
|
+
- **Approach**: Description of the technical approach (3-5 sentences)
|
|
38
|
+
- **Files involved**: List of files to create or modify
|
|
39
|
+
- **Patterns to follow**: Existing patterns in the project that apply
|
|
40
|
+
- **Interfaces/Contracts**: Function signatures, data structures
|
|
41
|
+
- **Technical risks**: List with proposed mitigation
|
|
42
|
+
- **Notes for the Developer**: Warnings or specific considerations
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Behavior rules
|
|
45
45
|
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
46
|
+
- Always read CLAUDE.md and SESSION.md before defining the approach
|
|
47
|
+
- Respect existing project conventions -- do not introduce new patterns without justification
|
|
48
|
+
- Be specific: name files, functions, and concrete patterns
|
|
49
|
+
- If there are multiple valid approaches, recommend one and justify it
|
|
50
|
+
- Anticipate edge cases and error conditions
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: build-feature
|
|
3
|
-
description: "
|
|
3
|
+
description: "Full pipeline: evaluation -> spec -> implementation -> review -> QA"
|
|
4
4
|
user-invocable: true
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Build Feature
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Full pipeline to build a feature end-to-end with all team agents. Each phase invokes a specialized agent using the `Task` tool.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## When to use
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
-
|
|
13
|
+
- To implement a new feature that requires the complete cycle
|
|
14
|
+
- When you want the feature to go through evaluation, specification, implementation, review, and QA
|
|
15
15
|
|
|
16
|
-
##
|
|
16
|
+
## Usage
|
|
17
17
|
|
|
18
|
-
`/build-feature [
|
|
18
|
+
`/build-feature [feature description]`
|
|
19
19
|
|
|
20
20
|
## Parallel Execution: Worktree Isolation
|
|
21
21
|
|
|
@@ -33,90 +33,90 @@ git worktree remove .claude/worktrees/[branch-name]
|
|
|
33
33
|
|
|
34
34
|
When running a single build-feature, a simple `git checkout -b` is sufficient.
|
|
35
35
|
|
|
36
|
-
##
|
|
36
|
+
## 6-Phase Pipeline
|
|
37
37
|
|
|
38
|
-
###
|
|
38
|
+
### Phase 1 — Evaluation (Advisor)
|
|
39
39
|
|
|
40
|
-
**
|
|
41
|
-
**Input:**
|
|
42
|
-
**
|
|
40
|
+
**Agent:** Reads `.claude/agents/advisor.md` via Task tool
|
|
41
|
+
**Input:** The feature description provided by the user
|
|
42
|
+
**Process:**
|
|
43
43
|
|
|
44
|
-
1.
|
|
45
|
-
2.
|
|
46
|
-
3.
|
|
44
|
+
1. The Advisor evaluates the feature against the project vision
|
|
45
|
+
2. Identifies risks, dependencies, and conflicts with existing functionality
|
|
46
|
+
3. Issues evaluation: Approved / Rejected / Requires adjustments
|
|
47
47
|
|
|
48
|
-
**Output:**
|
|
49
|
-
**
|
|
48
|
+
**Output:** Evaluation with reasoning and identified risks
|
|
49
|
+
**Exit condition:** If the Advisor rejects the feature, the pipeline stops here. Inform the user of the reason and suggest adjustments if any.
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### Phase 2 — Specification (Product Owner)
|
|
52
52
|
|
|
53
|
-
**
|
|
54
|
-
**Input:**
|
|
55
|
-
**
|
|
53
|
+
**Agent:** Reads `.claude/agents/product-owner.md` via Task tool
|
|
54
|
+
**Input:** The feature approved by the Advisor + their observations
|
|
55
|
+
**Process:**
|
|
56
56
|
|
|
57
|
-
1.
|
|
58
|
-
2.
|
|
59
|
-
3.
|
|
57
|
+
1. The Product Owner breaks the feature into concrete tasks
|
|
58
|
+
2. Defines verifiable acceptance criteria for each task
|
|
59
|
+
3. Estimates effort and suggests implementation order
|
|
60
60
|
|
|
61
|
-
**Output:**
|
|
61
|
+
**Output:** Task list with acceptance criteria, estimation, and order
|
|
62
62
|
|
|
63
|
-
###
|
|
63
|
+
### Phase 3 — Technical Approach (Tech Lead)
|
|
64
64
|
|
|
65
|
-
**
|
|
66
|
-
**Input:**
|
|
67
|
-
**
|
|
65
|
+
**Agent:** Reads `.claude/agents/tech-lead.md` via Task tool
|
|
66
|
+
**Input:** Product Owner tasks + acceptance criteria
|
|
67
|
+
**Process:**
|
|
68
68
|
|
|
69
|
-
1.
|
|
70
|
-
2.
|
|
71
|
-
3.
|
|
69
|
+
1. The Tech Lead defines the implementation approach
|
|
70
|
+
2. Identifies files to modify, patterns to follow, interfaces
|
|
71
|
+
3. Anticipates technical risks and proposes mitigations
|
|
72
72
|
|
|
73
|
-
**Output:**
|
|
73
|
+
**Output:** Technical plan with files, patterns, interfaces, and risks
|
|
74
74
|
|
|
75
|
-
###
|
|
75
|
+
### Phase 4 — Implementation (Developer)
|
|
76
76
|
|
|
77
|
-
**
|
|
78
|
-
**Input:**
|
|
79
|
-
**
|
|
77
|
+
**Agent:** Reads `.claude/agents/developer.md` via Task tool
|
|
78
|
+
**Input:** Tech Lead technical plan + PO acceptance criteria
|
|
79
|
+
**Process:**
|
|
80
80
|
|
|
81
|
-
1.
|
|
82
|
-
2.
|
|
83
|
-
3.
|
|
84
|
-
4.
|
|
81
|
+
1. The Developer implements following the technical plan
|
|
82
|
+
2. Writes unit tests as part of the implementation
|
|
83
|
+
3. Makes atomic commits with descriptive messages
|
|
84
|
+
4. Verifies that tests pass
|
|
85
85
|
|
|
86
|
-
**Output:**
|
|
86
|
+
**Output:** Implemented code + tests + commits made
|
|
87
87
|
|
|
88
|
-
###
|
|
88
|
+
### Pre-Review Gate (mandatory)
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
Before advancing to Phase 5, run automated verification:
|
|
91
91
|
|
|
92
|
-
1.
|
|
93
|
-
2.
|
|
94
|
-
3.
|
|
92
|
+
1. Run the project test commands (e.g., `npm test`) — if it fails, the Developer must fix before advancing
|
|
93
|
+
2. Run the project lint commands (e.g., `npm run lint`) — if it fails, the Developer must fix before advancing
|
|
94
|
+
3. Only make a checkpoint commit **after** both pass
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
This gate CANNOT be skipped, even if the user requested phase skipping. The specific commands are in the "CLI commands" section of CLAUDE.md.
|
|
97
97
|
|
|
98
|
-
###
|
|
98
|
+
### Phase 5 — Review (Code Reviewer)
|
|
99
99
|
|
|
100
|
-
**
|
|
101
|
-
**Input:**
|
|
102
|
-
**
|
|
100
|
+
**Agent:** Reads `.claude/agents/code-reviewer.md` via Task tool
|
|
101
|
+
**Input:** The implemented changes (git diff)
|
|
102
|
+
**Process:**
|
|
103
103
|
|
|
104
|
-
1.
|
|
105
|
-
2.
|
|
104
|
+
1. The Code Reviewer reviews quality, patterns, security, and tests
|
|
105
|
+
2. Classifies findings as Blocker, Warning, or Suggestion
|
|
106
106
|
|
|
107
|
-
**Output:**
|
|
108
|
-
**
|
|
107
|
+
**Output:** Review report with classified findings
|
|
108
|
+
**Loop condition:** If there are Blocker findings, return to **Phase 4** for the Developer to fix them. Maximum 2 review-fix iterations.
|
|
109
109
|
|
|
110
|
-
###
|
|
110
|
+
### Phase 6 — QA (delegates to /qa-cycle)
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
Runs the `/qa-cycle` skill passing the PO acceptance criteria as context. The qa-cycle handles:
|
|
113
113
|
|
|
114
|
-
1.
|
|
115
|
-
2.
|
|
116
|
-
3.
|
|
117
|
-
4.
|
|
114
|
+
1. Running project tests and lint
|
|
115
|
+
2. Validating acceptance criteria
|
|
116
|
+
3. Testing edge cases and error scenarios
|
|
117
|
+
4. Bugfix cycle if issues arise (maximum 3 cycles)
|
|
118
118
|
|
|
119
|
-
**
|
|
119
|
+
**Additional loop condition:** If the qa-cycle bugfix introduces significant changes, return to **Phase 5** (Review) for verification. Maximum 2 review-QA cycles.
|
|
120
120
|
|
|
121
121
|
## Checkpoint Commits
|
|
122
122
|
|
|
@@ -142,31 +142,31 @@ Also update SESSION.md at each phase transition:
|
|
|
142
142
|
- [timestamp] | build-feature | Phase N ([phase-name]) complete for [feature]
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
## Gate
|
|
145
|
+
## Final Gate (mandatory before Completion)
|
|
146
146
|
|
|
147
|
-
|
|
147
|
+
Before declaring the pipeline as complete, run final verification:
|
|
148
148
|
|
|
149
|
-
1.
|
|
150
|
-
2.
|
|
151
|
-
3.
|
|
149
|
+
1. Run project tests — if it fails, return to Phase 6 (QA/Bugfix)
|
|
150
|
+
2. Run project lint — if it fails, return to Phase 4 (Developer)
|
|
151
|
+
3. Both must pass with exit code 0
|
|
152
152
|
|
|
153
|
-
|
|
153
|
+
This gate is the last safety net. It CANNOT be skipped under any circumstances.
|
|
154
154
|
|
|
155
|
-
##
|
|
155
|
+
## Completion
|
|
156
156
|
|
|
157
|
-
|
|
157
|
+
Upon successfully completing all phases and the final gate:
|
|
158
158
|
|
|
159
|
-
1.
|
|
160
|
-
- Feature
|
|
161
|
-
-
|
|
162
|
-
- Tests
|
|
163
|
-
-
|
|
164
|
-
-
|
|
159
|
+
1. Present pipeline summary:
|
|
160
|
+
- Feature implemented
|
|
161
|
+
- Files modified/created
|
|
162
|
+
- Tests run and result
|
|
163
|
+
- Review issues resolved
|
|
164
|
+
- Final QA result
|
|
165
165
|
|
|
166
|
-
2.
|
|
167
|
-
- Feature
|
|
168
|
-
-
|
|
169
|
-
-
|
|
166
|
+
2. Update `SESSION.md` with:
|
|
167
|
+
- Feature completed
|
|
168
|
+
- Decisions made during the pipeline
|
|
169
|
+
- Next steps if any
|
|
170
170
|
|
|
171
171
|
3. Close the GitHub Issue (if applicable):
|
|
172
172
|
- Do NOT use `Closes #N` in PR description (only works when merging to default branch)
|
|
@@ -207,8 +207,8 @@ Phase 6 — QA: All 3 acceptance criteria verified. 0 bugs.
|
|
|
207
207
|
Feature complete. PR ready for merge.
|
|
208
208
|
```
|
|
209
209
|
|
|
210
|
-
##
|
|
210
|
+
## Notes
|
|
211
211
|
|
|
212
|
-
-
|
|
213
|
-
-
|
|
214
|
-
-
|
|
212
|
+
- If the user wants to skip phases (e.g., "already evaluated, implement directly"), allow skipping to Phase 4 but warn that validation is lost. Verification gates (pre-Review and final) are NEVER skipped
|
|
213
|
+
- The pipeline is sequential: each phase depends on the output of the previous one
|
|
214
|
+
- Review/QA loops have limits to prevent infinite cycles
|
|
@@ -1,115 +1,115 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: council
|
|
3
|
-
description: "
|
|
3
|
+
description: "Convenes multiple agents to debate an important decision"
|
|
4
4
|
user-invocable: true
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Council
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Convenes a council of specialized agents to debate an important decision. Each agent contributes their independent perspective and the result is a synthesis of the debate.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Agents are invoked IN PARALLEL using the `Task` tool to obtain independent perspectives without bias.
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## When to use
|
|
14
14
|
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
15
|
+
- Before making an important architectural decision
|
|
16
|
+
- To evaluate the scope of a feature with multiple perspectives
|
|
17
|
+
- To decide whether to address technical debt and how to prioritize it
|
|
18
|
+
- When you need multiple viewpoints on a complex problem
|
|
19
19
|
|
|
20
|
-
##
|
|
20
|
+
## Usage
|
|
21
21
|
|
|
22
|
-
`/council [
|
|
22
|
+
`/council [question or decision to debate]`
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
Optionally you can specify the type: `/council architecture [question]`
|
|
25
25
|
|
|
26
|
-
##
|
|
26
|
+
## Council Types
|
|
27
27
|
|
|
28
28
|
### 1. Council Architecture
|
|
29
29
|
|
|
30
|
-
**
|
|
31
|
-
**
|
|
30
|
+
**Participants:** Tech Lead + Advisor + Developer
|
|
31
|
+
**When it applies:** Decisions about architecture, patterns, large refactors, new technologies
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
Invokes all 3 agents IN PARALLEL using Task tool:
|
|
34
34
|
|
|
35
|
-
- Task 1:
|
|
36
|
-
- Task 2:
|
|
37
|
-
- Task 3:
|
|
35
|
+
- Task 1: Reads `.claude/agents/tech-lead.md` — architecture and technical coherence perspective
|
|
36
|
+
- Task 2: Reads `.claude/agents/advisor.md` — feasibility and business risk perspective
|
|
37
|
+
- Task 3: Reads `.claude/agents/developer.md` — implementability and pragmatism perspective
|
|
38
38
|
|
|
39
39
|
### 2. Council Feature-Scope
|
|
40
40
|
|
|
41
|
-
**
|
|
42
|
-
**
|
|
41
|
+
**Participants:** Advisor + Product Owner + Tech Lead
|
|
42
|
+
**When it applies:** Defining feature scope, prioritizing functionality, evaluating product proposals
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
Invokes all 3 agents IN PARALLEL using Task tool:
|
|
45
45
|
|
|
46
|
-
- Task 1:
|
|
47
|
-
- Task 2:
|
|
48
|
-
- Task 3:
|
|
46
|
+
- Task 1: Reads `.claude/agents/advisor.md` — domain and strategic vision perspective
|
|
47
|
+
- Task 2: Reads `.claude/agents/product-owner.md` — user value and scope perspective
|
|
48
|
+
- Task 3: Reads `.claude/agents/tech-lead.md` — technical feasibility and effort perspective
|
|
49
49
|
|
|
50
50
|
### 3. Council Tech-Debt
|
|
51
51
|
|
|
52
|
-
**
|
|
53
|
-
**
|
|
52
|
+
**Participants:** Tech Lead + Developer + Code Reviewer
|
|
53
|
+
**When it applies:** Deciding whether to address technical debt, planning refactors, evaluating codebase quality
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
Invokes all 3 agents IN PARALLEL using Task tool:
|
|
56
56
|
|
|
57
|
-
- Task 1:
|
|
58
|
-
- Task 2:
|
|
59
|
-
- Task 3:
|
|
57
|
+
- Task 1: Reads `.claude/agents/tech-lead.md` — architectural impact perspective
|
|
58
|
+
- Task 2: Reads `.claude/agents/developer.md` — implementation cost perspective
|
|
59
|
+
- Task 3: Reads `.claude/agents/code-reviewer.md` — quality and risk perspective
|
|
60
60
|
|
|
61
|
-
##
|
|
61
|
+
## Process
|
|
62
62
|
|
|
63
|
-
###
|
|
63
|
+
### Step 1 — Identify council type
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
Analyze the user's question and determine which council type applies:
|
|
66
66
|
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
67
|
+
- If it mentions architecture, patterns, technologies -> **architecture**
|
|
68
|
+
- If it mentions features, priorities, scope, users -> **feature-scope**
|
|
69
|
+
- If it mentions technical debt, refactor, quality, maintainability -> **tech-debt**
|
|
70
|
+
- If unclear, ask the user
|
|
71
71
|
|
|
72
|
-
###
|
|
72
|
+
### Step 2 — Convene agents
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
Invoke the 3 corresponding agents IN PARALLEL using Task tool. Each agent:
|
|
75
75
|
|
|
76
|
-
1.
|
|
77
|
-
2.
|
|
78
|
-
3.
|
|
79
|
-
4.
|
|
76
|
+
1. Reads their `.claude/agents/[name].md` file to assume their role
|
|
77
|
+
2. Reads `CLAUDE.md` and `SESSION.md` for project context
|
|
78
|
+
3. Analyzes the question from their specialized perspective
|
|
79
|
+
4. States their position with concrete arguments
|
|
80
80
|
|
|
81
|
-
###
|
|
81
|
+
### Step 3 — Present debate
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
Present the perspectives of all 3 agents in a structured format:
|
|
84
84
|
|
|
85
85
|
```text
|
|
86
|
-
## Council: [
|
|
87
|
-
|
|
86
|
+
## Council: [type]
|
|
87
|
+
Question: [the user's question]
|
|
88
88
|
|
|
89
|
-
### [
|
|
90
|
-
[
|
|
89
|
+
### [Agent 1] — [position]
|
|
90
|
+
[main arguments]
|
|
91
91
|
|
|
92
|
-
### [
|
|
93
|
-
[
|
|
92
|
+
### [Agent 2] — [position]
|
|
93
|
+
[main arguments]
|
|
94
94
|
|
|
95
|
-
### [
|
|
96
|
-
[
|
|
95
|
+
### [Agent 3] — [position]
|
|
96
|
+
[main arguments]
|
|
97
97
|
|
|
98
|
-
###
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
98
|
+
### Synthesis
|
|
99
|
+
- Points of agreement: [...]
|
|
100
|
+
- Points of disagreement: [...]
|
|
101
|
+
- Identified risks: [...]
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
###
|
|
104
|
+
### Step 4 — Request decision
|
|
105
105
|
|
|
106
|
-
|
|
106
|
+
Present clear options to the user based on the debate:
|
|
107
107
|
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
108
|
+
- Option A: [summary of one position]
|
|
109
|
+
- Option B: [summary of another position]
|
|
110
|
+
- Option C: [compromise or alternative]
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
Ask the user to decide. If the user decides, document the decision in SESSION.md.
|
|
113
113
|
|
|
114
114
|
## Subagent Configuration
|
|
115
115
|
|
|
@@ -137,9 +137,9 @@ Developer — Prefers REST simplicity. GraphQL adds tooling overhead.
|
|
|
137
137
|
Consensus: Incremental adoption. New endpoints in GraphQL, existing stay REST.
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
##
|
|
140
|
+
## Notes
|
|
141
141
|
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
142
|
+
- Agents must be invoked in parallel to prevent one from influencing another
|
|
143
|
+
- Each perspective must be independent — not "responding" to another agent
|
|
144
|
+
- The synthesis is done by you (the skill), not by the agents
|
|
145
|
+
- If all 3 agents agree, indicate consensus and suggest taking action
|