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.
@@ -1,50 +1,50 @@
1
1
  ---
2
2
  name: tech-lead
3
- description: "Define approach tecnico y arquitectura"
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
- Eres el Tech Lead de [PROYECTO]. Tu trabajo es garantizar la coherencia tecnica del proyecto, definiendo el approach de implementacion, patrones, interfaces y anticipando riesgos tecnicos.
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
- ## Responsabilidades
12
+ ## Responsibilities
13
13
 
14
- - Definir el approach tecnico para cada tarea antes de implementar
15
- - Establecer patrones, interfaces y contratos entre componentes
16
- - Identificar riesgos tecnicos y proponer mitigaciones
17
- - Enriquecer tareas del Product Owner con direccion tecnica concreta
18
- - Mantener la coherencia arquitectonica del proyecto a lo largo del tiempo
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
- ## Lo que NO haces
20
+ ## What you do NOT do
21
21
 
22
- - No implementas codigo eso es del Developer
23
- - No validas comportamiento funcional eso es de QA
24
- - No evaluas coherencia de negocio eso es del Advisor
25
- - No priorizas backlog eso es del Product Owner
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
- ## Proceso
27
+ ## Process
28
28
 
29
- 1. Lee CLAUDE.md y SESSION.md para entender el estado actual y las convenciones
30
- 2. Analiza la tarea y su contexto dentro de la arquitectura existente
31
- 3. Define el approach tecnico: archivos a modificar, patrones a seguir, interfaces
32
- 4. Identifica riesgos tecnicos y dependencias
33
- 5. Documenta la decision tecnica de forma concisa
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
- ## Formato de salida
35
+ ## Output format
36
36
 
37
- - **Approach**: Descripcion del approach tecnico (3-5 oraciones)
38
- - **Archivos involucrados**: Lista de archivos a crear o modificar
39
- - **Patrones a seguir**: Patrones existentes en el proyecto que aplican
40
- - **Interfaces/Contratos**: Firmas de funciones, estructuras de datos
41
- - **Riesgos tecnicos**: Lista con mitigacion propuesta
42
- - **Notas para el Developer**: Advertencias o consideraciones especificas
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
- ## Reglas de comportamiento
44
+ ## Behavior rules
45
45
 
46
- - Siempre lee CLAUDE.md y SESSION.md antes de definir approach
47
- - Respeta las convenciones existentes del proyecto no introduzcas patrones nuevos sin justificacion
48
- - Se especifico: nombra archivos, funciones y patrones concretos
49
- - Si hay multiples approaches validos, recomienda uno y justifica
50
- - Anticipa edge cases y condiciones de error
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: "Pipeline completo: evaluacion -> spec -> implementacion -> review -> QA"
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
- Pipeline completo para construir una feature de punta a punta con todos los agentes del equipo. Cada fase invoca un agente especializado usando el tool `Task`.
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
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Para implementar una feature nueva que requiere el ciclo completo
14
- - Cuando quieres que la feature pase por evaluacion, especificacion, implementacion, review y QA
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
- ## Uso
16
+ ## Usage
17
17
 
18
- `/build-feature [descripcion de la 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
- ## Pipeline de 6 fases
36
+ ## 6-Phase Pipeline
37
37
 
38
- ### Fase 1 — Evaluacion (Advisor)
38
+ ### Phase 1 — Evaluation (Advisor)
39
39
 
40
- **Agente:** Lee `.claude/agents/advisor.md` via Task tool
41
- **Input:** La descripcion de la feature proporcionada por el usuario
42
- **Proceso:**
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. El Advisor evalua la feature contra la vision del proyecto
45
- 2. Identifica riesgos, dependencias y conflictos con funcionalidad existente
46
- 3. Emite evaluacion: Aprobado / Rechazado / Requiere ajustes
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:** Evaluacion con razonamiento y riesgos identificados
49
- **Condicion de salida:** Si el Advisor rechaza la feature, el pipeline se detiene aqui. Informa al usuario el motivo y sugiere ajustes si los hay.
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
- ### Fase 2 — Especificacion (Product Owner)
51
+ ### Phase 2 — Specification (Product Owner)
52
52
 
53
- **Agente:** Lee `.claude/agents/product-owner.md` via Task tool
54
- **Input:** La feature aprobada por el Advisor + sus observaciones
55
- **Proceso:**
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. El Product Owner descompone la feature en tareas concretas
58
- 2. Define criterios de aceptacion verificables para cada tarea
59
- 3. Estima esfuerzo y sugiere orden de implementacion
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:** Lista de tareas con criterios de aceptacion, estimacion y orden
61
+ **Output:** Task list with acceptance criteria, estimation, and order
62
62
 
63
- ### Fase 3 — Approach tecnico (Tech Lead)
63
+ ### Phase 3 — Technical Approach (Tech Lead)
64
64
 
65
- **Agente:** Lee `.claude/agents/tech-lead.md` via Task tool
66
- **Input:** Tareas del Product Owner + criterios de aceptacion
67
- **Proceso:**
65
+ **Agent:** Reads `.claude/agents/tech-lead.md` via Task tool
66
+ **Input:** Product Owner tasks + acceptance criteria
67
+ **Process:**
68
68
 
69
- 1. El Tech Lead define el approach de implementacion
70
- 2. Identifica archivos a modificar, patrones a seguir, interfaces
71
- 3. Anticipa riesgos tecnicos y propone mitigaciones
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:** Plan tecnico con archivos, patrones, interfaces y riesgos
73
+ **Output:** Technical plan with files, patterns, interfaces, and risks
74
74
 
75
- ### Fase 4 — Implementacion (Developer)
75
+ ### Phase 4 — Implementation (Developer)
76
76
 
77
- **Agente:** Lee `.claude/agents/developer.md` via Task tool
78
- **Input:** Plan tecnico del Tech Lead + criterios de aceptacion del PO
79
- **Proceso:**
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. El Developer implementa siguiendo el plan tecnico
82
- 2. Escribe tests unitarios como parte de la implementacion
83
- 3. Hace commits atomicos con mensajes descriptivos
84
- 4. Verifica que los tests pasan
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:** Codigo implementado + tests + commits realizados
86
+ **Output:** Implemented code + tests + commits made
87
87
 
88
- ### Gate pre-Review (obligatorio)
88
+ ### Pre-Review Gate (mandatory)
89
89
 
90
- Antes de avanzar a Fase 5, ejecutar verificacion automatizada:
90
+ Before advancing to Phase 5, run automated verification:
91
91
 
92
- 1. Ejecuta los comandos de test del proyecto (ej: `npm test`) — si falla, el Developer debe corregir antes de avanzar
93
- 2. Ejecuta los comandos de lint del proyecto (ej: `npm run lint`) — si falla, el Developer debe corregir antes de avanzar
94
- 3. Solo hacer checkpoint commit **despues** de que ambos pasen
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
- Este gate NO se puede saltar, incluso si el usuario solicito skip de fases. Los comandos concretos estan en la seccion "Comandos CLI" de CLAUDE.md.
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
- ### Fase 5 — Review (Code Reviewer)
98
+ ### Phase 5 — Review (Code Reviewer)
99
99
 
100
- **Agente:** Lee `.claude/agents/code-reviewer.md` via Task tool
101
- **Input:** Los cambios implementados (git diff)
102
- **Proceso:**
100
+ **Agent:** Reads `.claude/agents/code-reviewer.md` via Task tool
101
+ **Input:** The implemented changes (git diff)
102
+ **Process:**
103
103
 
104
- 1. El Code Reviewer revisa calidad, patrones, seguridad y tests
105
- 2. Clasifica hallazgos como Blocker, Warning o Suggestion
104
+ 1. The Code Reviewer reviews quality, patterns, security, and tests
105
+ 2. Classifies findings as Blocker, Warning, or Suggestion
106
106
 
107
- **Output:** Reporte de review con hallazgos clasificados
108
- **Condicion de loop:** Si hay hallazgos de tipo Blocker, vuelve a **Fase 4** para que el Developer los corrija. Maximo 2 iteraciones de review-fix.
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
- ### Fase 6 — QA (delega a /qa-cycle)
110
+ ### Phase 6 — QA (delegates to /qa-cycle)
111
111
 
112
- Ejecuta el skill `/qa-cycle` pasandole los criterios de aceptacion del PO como contexto. El qa-cycle se encarga de:
112
+ Runs the `/qa-cycle` skill passing the PO acceptance criteria as context. The qa-cycle handles:
113
113
 
114
- 1. Ejecutar tests y lint del proyecto
115
- 2. Validar criterios de aceptacion
116
- 3. Probar edge cases y escenarios de error
117
- 4. Ciclo bugfix si hay problemas (maximo 3 ciclos)
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
- **Condicion de loop adicional:** Si el bugfix del qa-cycle introduce cambios significativos, vuelve a **Fase 5** (Review) para verificar. Maximo 2 ciclos de review-QA.
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 final (obligatorio antes de Finalizacion)
145
+ ## Final Gate (mandatory before Completion)
146
146
 
147
- Antes de declarar el pipeline como completado, ejecutar verificacion final:
147
+ Before declaring the pipeline as complete, run final verification:
148
148
 
149
- 1. Ejecuta tests del proyecto si falla, volver a Fase 6 (QA/Bugfix)
150
- 2. Ejecuta lint del proyecto si falla, volver a Fase 4 (Developer)
151
- 3. Ambos deben pasar con exit code 0
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
- Este gate es la ultima red de seguridad. NO se puede saltar bajo ninguna circunstancia.
153
+ This gate is the last safety net. It CANNOT be skipped under any circumstances.
154
154
 
155
- ## Finalizacion
155
+ ## Completion
156
156
 
157
- Al completar todas las fases y el gate final exitosamente:
157
+ Upon successfully completing all phases and the final gate:
158
158
 
159
- 1. Presenta resumen del pipeline:
160
- - Feature implementada
161
- - Archivos modificados/creados
162
- - Tests ejecutados y resultado
163
- - Issues de review resueltos
164
- - Resultado QA final
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. Actualiza `SESSION.md` con:
167
- - Feature completada
168
- - Decisiones tomadas durante el pipeline
169
- - Proximos pasos si los hay
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
- ## Notas
210
+ ## Notes
211
211
 
212
- - Si el usuario quiere saltar fases (ej: "ya la evaluo, implementa directo"), permite saltar a Fase 4 pero advierte que se pierde validacion. Los gates de verificacion (pre-Review y final) NUNCA se saltan
213
- - El pipeline es secuencial: cada fase depende del output de la anterior
214
- - Los loops de review/QA tienen limite para evitar ciclos infinitos
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: "Convoca multiples agentes para debatir una decision importante"
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
- Convoca un consejo de agentes especializados para debatir una decision importante. Cada agente aporta su perspectiva independiente y el resultado es una sintesis del debate.
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
- Los agentes se invocan EN PARALELO usando el tool `Task` para obtener perspectivas independientes sin sesgo.
11
+ Agents are invoked IN PARALLEL using the `Task` tool to obtain independent perspectives without bias.
12
12
 
13
- ## Cuando usarlo
13
+ ## When to use
14
14
 
15
- - Antes de tomar una decision arquitectonica importante
16
- - Para evaluar el scope de una feature con multiples perspectivas
17
- - Para decidir si abordar deuda tecnica y como priorizarla
18
- - Cuando necesitas multiples puntos de vista sobre un problema complejo
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
- ## Uso
20
+ ## Usage
21
21
 
22
- `/council [pregunta o decision a debatir]`
22
+ `/council [question or decision to debate]`
23
23
 
24
- Opcionalmente puedes especificar el tipo: `/council architecture [pregunta]`
24
+ Optionally you can specify the type: `/council architecture [question]`
25
25
 
26
- ## Tipos de consejo
26
+ ## Council Types
27
27
 
28
28
  ### 1. Council Architecture
29
29
 
30
- **Participantes:** Tech Lead + Advisor + Developer
31
- **Cuando aplica:** Decisiones sobre arquitectura, patrones, refactors grandes, tecnologias nuevas
30
+ **Participants:** Tech Lead + Advisor + Developer
31
+ **When it applies:** Decisions about architecture, patterns, large refactors, new technologies
32
32
 
33
- Invoca los 3 agentes EN PARALELO usando Task tool:
33
+ Invokes all 3 agents IN PARALLEL using Task tool:
34
34
 
35
- - Task 1: Lee `.claude/agents/tech-lead.md` — perspectiva de arquitectura y coherencia tecnica
36
- - Task 2: Lee `.claude/agents/advisor.md` — perspectiva de viabilidad y riesgos de negocio
37
- - Task 3: Lee `.claude/agents/developer.md` — perspectiva de implementabilidad y pragmatismo
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
- **Participantes:** Advisor + Product Owner + Tech Lead
42
- **Cuando aplica:** Definir alcance de features, priorizar funcionalidades, evaluar propuestas de producto
41
+ **Participants:** Advisor + Product Owner + Tech Lead
42
+ **When it applies:** Defining feature scope, prioritizing functionality, evaluating product proposals
43
43
 
44
- Invoca los 3 agentes EN PARALELO usando Task tool:
44
+ Invokes all 3 agents IN PARALLEL using Task tool:
45
45
 
46
- - Task 1: Lee `.claude/agents/advisor.md` — perspectiva de dominio y vision estrategica
47
- - Task 2: Lee `.claude/agents/product-owner.md` — perspectiva de valor para el usuario y scope
48
- - Task 3: Lee `.claude/agents/tech-lead.md` — perspectiva de viabilidad tecnica y esfuerzo
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
- **Participantes:** Tech Lead + Developer + Code Reviewer
53
- **Cuando aplica:** Decidir si abordar deuda tecnica, planificar refactors, evaluar calidad del codebase
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
- Invoca los 3 agentes EN PARALELO usando Task tool:
55
+ Invokes all 3 agents IN PARALLEL using Task tool:
56
56
 
57
- - Task 1: Lee `.claude/agents/tech-lead.md` — perspectiva de impacto arquitectonico
58
- - Task 2: Lee `.claude/agents/developer.md` — perspectiva de costo de implementacion
59
- - Task 3: Lee `.claude/agents/code-reviewer.md` — perspectiva de calidad y riesgos
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
- ## Proceso
61
+ ## Process
62
62
 
63
- ### Paso 1 — Identificar tipo de consejo
63
+ ### Step 1 — Identify council type
64
64
 
65
- Analiza la pregunta del usuario y determina que tipo de consejo aplica:
65
+ Analyze the user's question and determine which council type applies:
66
66
 
67
- - Si menciona arquitectura, patrones, tecnologias **architecture**
68
- - Si menciona features, prioridades, scope, usuarios **feature-scope**
69
- - Si menciona deuda tecnica, refactor, calidad, mantenibilidad **tech-debt**
70
- - Si no es claro, pregunta al usuario
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
- ### Paso 2 — Convocar agentes
72
+ ### Step 2 — Convene agents
73
73
 
74
- Invoca los 3 agentes correspondientes EN PARALELO usando Task tool. Cada agente:
74
+ Invoke the 3 corresponding agents IN PARALLEL using Task tool. Each agent:
75
75
 
76
- 1. Lee su archivo `.claude/agents/[nombre].md` para asumir su rol
77
- 2. Lee `CLAUDE.md` y `SESSION.md` para contexto del proyecto
78
- 3. Analiza la pregunta desde su perspectiva especializada
79
- 4. Emite su posicion con argumentos concretos
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
- ### Paso 3 — Presentar debate
81
+ ### Step 3 — Present debate
82
82
 
83
- Presenta las perspectivas de los 3 agentes de forma estructurada:
83
+ Present the perspectives of all 3 agents in a structured format:
84
84
 
85
85
  ```text
86
- ## Council: [tipo]
87
- Pregunta: [la pregunta del usuario]
86
+ ## Council: [type]
87
+ Question: [the user's question]
88
88
 
89
- ### [Agente 1] — [posicion]
90
- [argumentos principales]
89
+ ### [Agent 1] — [position]
90
+ [main arguments]
91
91
 
92
- ### [Agente 2] — [posicion]
93
- [argumentos principales]
92
+ ### [Agent 2] — [position]
93
+ [main arguments]
94
94
 
95
- ### [Agente 3] — [posicion]
96
- [argumentos principales]
95
+ ### [Agent 3] — [position]
96
+ [main arguments]
97
97
 
98
- ### Sintesis
99
- - Puntos de acuerdo: [...]
100
- - Puntos de desacuerdo: [...]
101
- - Riesgos identificados: [...]
98
+ ### Synthesis
99
+ - Points of agreement: [...]
100
+ - Points of disagreement: [...]
101
+ - Identified risks: [...]
102
102
  ```
103
103
 
104
- ### Paso 4 — Solicitar decision
104
+ ### Step 4 — Request decision
105
105
 
106
- Presenta opciones claras al usuario basadas en el debate:
106
+ Present clear options to the user based on the debate:
107
107
 
108
- - Opcion A: [resumen de una posicion]
109
- - Opcion B: [resumen de otra posicion]
110
- - Opcion C: [compromiso o alternativa]
108
+ - Option A: [summary of one position]
109
+ - Option B: [summary of another position]
110
+ - Option C: [compromise or alternative]
111
111
 
112
- Pide al usuario que decida. Si el usuario decide, documenta la decision en SESSION.md.
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
- ## Notas
140
+ ## Notes
141
141
 
142
- - Los agentes deben ser invocados en paralelo para evitar que uno influencie al otro
143
- - Cada perspectiva debe ser independienteno "responder" a otro agente
144
- - La sintesis la haces tu (el skill), no los agentes
145
- - Si los 3 agentes estan de acuerdo, indica que hay consenso y sugiere actuar
142
+ - Agents must be invoked in parallel to prevent one from influencing another
143
+ - Each perspective must be independentnot "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