guild-agents 0.2.6 → 0.2.8

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.
Files changed (32) hide show
  1. package/README.md +45 -35
  2. package/bin/guild.js +9 -7
  3. package/package.json +5 -6
  4. package/src/commands/init.js +44 -44
  5. package/src/commands/new-agent.js +37 -37
  6. package/src/commands/status.js +11 -11
  7. package/src/templates/agents/advisor.md +29 -29
  8. package/src/templates/agents/bugfix.md +32 -32
  9. package/src/templates/agents/code-reviewer.md +32 -32
  10. package/src/templates/agents/db-migration.md +32 -32
  11. package/src/templates/agents/developer.md +32 -32
  12. package/src/templates/agents/platform-expert.md +38 -36
  13. package/src/templates/agents/product-owner.md +32 -32
  14. package/src/templates/agents/qa.md +31 -31
  15. package/src/templates/agents/tech-lead.md +32 -32
  16. package/src/templates/skills/build-feature/SKILL.md +85 -85
  17. package/src/templates/skills/council/SKILL.md +68 -68
  18. package/src/templates/skills/dev-flow/SKILL.md +31 -31
  19. package/src/templates/skills/guild-specialize/SKILL.md +69 -68
  20. package/src/templates/skills/new-feature/SKILL.md +34 -34
  21. package/src/templates/skills/qa-cycle/SKILL.md +39 -39
  22. package/src/templates/skills/review/SKILL.md +35 -35
  23. package/src/templates/skills/session-end/SKILL.md +33 -33
  24. package/src/templates/skills/session-start/SKILL.md +32 -32
  25. package/src/templates/skills/status/SKILL.md +34 -34
  26. package/src/utils/files.js +8 -8
  27. package/src/utils/generators.js +47 -47
  28. package/src/utils/github.js +20 -20
  29. package/src/commands/__tests__/doctor.test.js +0 -85
  30. package/src/commands/__tests__/list.test.js +0 -82
  31. package/src/commands/__tests__/new-agent.test.js +0 -40
  32. package/src/commands/__tests__/status.test.js +0 -35
@@ -1,70 +1,70 @@
1
1
  ---
2
2
  name: qa-cycle
3
- description: "Ciclo QA + bugfix hasta que pase"
3
+ description: "QA + bugfix cycle until it passes"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # QA Cycle
8
8
 
9
- Ejecuta un ciclo de validacion QA seguido de bugfix hasta que todos los criterios pasen limpio. Util para validar implementaciones sin el pipeline completo de build-feature.
9
+ Runs a QA validation cycle followed by bugfix until all criteria pass clean. Useful for validating implementations without the full build-feature pipeline.
10
10
 
11
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Despues de implementar cambios que necesitan validacion
14
- - Para verificar que una correccion de bug no introdujo regresiones
15
- - Como ciclo final antes de crear un PR
13
+ - After implementing changes that need validation
14
+ - To verify that a bug fix did not introduce regressions
15
+ - As a final cycle before creating a PR
16
16
 
17
- ## Uso
17
+ ## Usage
18
18
 
19
19
  `/qa-cycle`
20
20
 
21
- ## Proceso
21
+ ## Process
22
22
 
23
- ### Paso 1 — Verificacion automatizada (obligatorio)
23
+ ### Step 1 — Automated verification (mandatory)
24
24
 
25
- Antes de invocar al agente QA, ejecutar los comandos de verificacion del proyecto. Los comandos concretos estan en la seccion "Comandos CLI" de CLAUDE.md:
25
+ Before invoking the QA agent, run the project verification commands. The specific commands are in the "CLI commands" section of CLAUDE.md:
26
26
 
27
- 1. Ejecuta tests del proyecto (ej: `npm test`) — registra resultado y output
28
- 2. Ejecuta lint del proyecto (ej: `npm run lint`) — registra resultado y output
29
- 3. Si alguno falla, esto se convierte en input para el reporte QA como bug automatico de tipo Blocker
27
+ 1. Run project tests (e.g., `npm test`) — record result and output
28
+ 2. Run project lint (e.g., `npm run lint`) — record result and output
29
+ 3. If any fail, this becomes input for the QA report as an automatic Blocker bug
30
30
 
31
- ### Paso 2 — Validacion QA
31
+ ### Step 2 — QA Validation
32
32
 
33
- Invoca el agente QA usando Task tool:
33
+ Invoke the QA agent using Task tool:
34
34
 
35
- 1. Lee `.claude/agents/qa.md` para asumir el rol de QA
36
- 2. Lee CLAUDE.md y SESSION.md para contexto
37
- 3. Recibe los resultados de tests y lint del Paso 1
38
- 4. Si tests o lint fallaron, incluirlos como bugs Blocker en el reporte
39
- 5. Revisa los criterios de aceptacion de la tarea en curso (si existen en SESSION.md)
40
- 6. Valida edge cases y escenarios de error
41
- 7. Reporta resultados
35
+ 1. Read `.claude/agents/qa.md` to assume the QA role
36
+ 2. Read CLAUDE.md and SESSION.md for context
37
+ 3. Receive the test and lint results from Step 1
38
+ 4. If tests or lint failed, include them as Blocker bugs in the report
39
+ 5. Review the acceptance criteria for the current task (if they exist in SESSION.md)
40
+ 6. Validate edge cases and error scenarios
41
+ 7. Report results
42
42
 
43
- ### Paso 3 — Bugfix (si hay bugs)
43
+ ### Step 3 — Bugfix (if there are bugs)
44
44
 
45
- Si QA reporta bugs (incluyendo fallos de tests/lint), invoca el agente Bugfix usando Task tool:
45
+ If QA reports bugs (including test/lint failures), invoke the Bugfix agent using Task tool:
46
46
 
47
- 1. Lee `.claude/agents/bugfix.md` para asumir el rol de Bugfix
48
- 2. Recibe el reporte de bugs de QA como input
49
- 3. Diagnostica la causa raiz de cada bug
50
- 4. Implementa la correccion minima
51
- 5. Verifica que el fix resuelve el problema
52
- 6. Ejecuta tests y lint para confirmar que no introdujo regresiones
47
+ 1. Read `.claude/agents/bugfix.md` to assume the Bugfix role
48
+ 2. Receive the QA bug report as input
49
+ 3. Diagnose the root cause of each bug
50
+ 4. Implement the minimal fix
51
+ 5. Verify that the fix resolves the issue
52
+ 6. Run tests and lint to confirm no regressions were introduced
53
53
 
54
- ### Paso 4 — Re-validacion
54
+ ### Step 4 — Re-validation
55
55
 
56
- Vuelve al Paso 1 (verificacion automatizada) para re-validar despues del bugfix.
57
- Maximo 3 ciclos de verificacion-QA-bugfix para evitar loops infinitos.
56
+ Return to Step 1 (automated verification) to re-validate after the bugfix.
57
+ Maximum 3 verification-QA-bugfix cycles to prevent infinite loops.
58
58
 
59
- ### Paso 5 — Resultado final
59
+ ### Step 5 — Final result
60
60
 
61
- Presenta el resultado:
61
+ Present the result:
62
62
 
63
- - **Aprobado**: Todos los criterios pasan, no hay bugs pendientes
64
- - **Con advertencias**: Pasa pero hay warnings menores
65
- - **Rechazado**: Hay bugs criticos que no se pudieron resolver escalar al Tech Lead
63
+ - **Approved**: All criteria pass, no pending bugs
64
+ - **With warnings**: Passes but there are minor warnings
65
+ - **Rejected**: There are critical bugs that could not be resolvedescalate to the Tech Lead
66
66
 
67
- Actualiza SESSION.md con el resultado del ciclo QA.
67
+ Update SESSION.md with the QA cycle result.
68
68
 
69
69
  ## Example Session
70
70
 
@@ -1,64 +1,64 @@
1
1
  ---
2
2
  name: review
3
- description: "Code review standalone sobre el diff actual"
3
+ description: "Standalone code review on the current diff"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # Review
8
8
 
9
- Ejecuta un code review independiente sobre los cambios actuales del proyecto. Invoca al agente Code Reviewer para analizar calidad, patrones, seguridad y deuda tecnica.
9
+ Runs an independent code review on the current project changes. Invokes the Code Reviewer agent to analyze quality, patterns, security, and technical debt.
10
10
 
11
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Antes de crear un PR
14
- - Para revisar cambios propios antes de pedir review a otros
15
- - Cuando quieres una segunda opinion sobre el codigo que escribiste
13
+ - Before creating a PR
14
+ - To review your own changes before requesting review from others
15
+ - When you want a second opinion on the code you wrote
16
16
 
17
- ## Uso
17
+ ## Usage
18
18
 
19
19
  `/review`
20
20
 
21
- ## Proceso
21
+ ## Process
22
22
 
23
- ### Paso 1 — Obtener diff y estado de verificacion
23
+ ### Step 1 — Get diff and verification state
24
24
 
25
- Obtiene los cambios actuales:
25
+ Get the current changes:
26
26
 
27
- 1. Primero intenta `git diff --staged` (cambios en staging)
28
- 2. Si no hay cambios en staging, usa `git diff` (cambios sin stage)
29
- 3. Si no hay ningun cambio, informa que no hay nada que revisar
27
+ 1. First try `git diff --staged` (staged changes)
28
+ 2. If there are no staged changes, use `git diff` (unstaged changes)
29
+ 3. If there are no changes at all, report that there is nothing to review
30
30
 
31
- Ejecuta verificacion automatizada para dar contexto al reviewer:
31
+ Run automated verification to give context to the reviewer:
32
32
 
33
- 1. Ejecuta tests del proyecto (ej: `npm test`) — captura resultado
34
- 2. Ejecuta lint del proyecto (ej: `npm run lint`) — captura resultado
35
- 3. Incluye ambos resultados como contexto para el Code Reviewer
33
+ 1. Run project tests (e.g., `npm test`) — capture result
34
+ 2. Run project lint (e.g., `npm run lint`) — capture result
35
+ 3. Include both results as context for the Code Reviewer
36
36
 
37
- Nota: El Code Reviewer no tiene acceso a Bash (solo Read, Glob, Grep), por eso los tests y lint se ejecutan aqui antes de invocar al reviewer.
37
+ Note: The Code Reviewer does not have access to Bash (only Read, Glob, Grep), so tests and lint are run here before invoking the reviewer.
38
38
 
39
- ### Paso 2 — Invocar Code Reviewer
39
+ ### Step 2 — Invoke Code Reviewer
40
40
 
41
- Invoca al agente Code Reviewer usando Task tool:
41
+ Invoke the Code Reviewer agent using Task tool:
42
42
 
43
- 1. Lee `.claude/agents/code-reviewer.md` para asumir el rol
44
- 2. Lee CLAUDE.md para entender las convenciones del proyecto
45
- 3. Recibe el diff completo + resultados de tests y lint del Paso 1
46
- 4. Si tests o lint fallaron, esto es automaticamente un hallazgo Blocker
47
- 5. Revisa el diff completo
48
- 6. Clasifica cada hallazgo por severidad:
49
- - **Blocker**: Debe corregirse antes de merge
50
- - **Warning**: Deberia corregirse, introduce deuda tecnica
51
- - **Suggestion**: Mejora opcional
43
+ 1. Read `.claude/agents/code-reviewer.md` to assume the role
44
+ 2. Read CLAUDE.md to understand the project conventions
45
+ 3. Receive the full diff + test and lint results from Step 1
46
+ 4. If tests or lint failed, this is automatically a Blocker finding
47
+ 5. Review the full diff
48
+ 6. Classify each finding by severity:
49
+ - **Blocker**: Must be fixed before merge
50
+ - **Warning**: Should be fixed, introduces technical debt
51
+ - **Suggestion**: Optional improvement
52
52
 
53
- ### Paso 3 — Presentar hallazgos
53
+ ### Step 3 — Present findings
54
54
 
55
- Presenta el reporte organizado por severidad:
55
+ Present the report organized by severity:
56
56
 
57
- - Cantidad total de hallazgos por tipo
58
- - Detalle de cada hallazgo: archivo, descripcion, sugerencia de correccion
59
- - Veredicto final: Aprobado / Aprobado con warnings / Bloqueado
57
+ - Total count of findings by type
58
+ - Detail of each finding: file, description, suggested fix
59
+ - Final verdict: Approved / Approved with warnings / Blocked
60
60
 
61
- Si hay blockers, sugiere corregirlos y ejecutar `/review` de nuevo.
61
+ If there are blockers, suggest fixing them and running `/review` again.
62
62
 
63
63
  ## Example Session
64
64
 
@@ -1,55 +1,55 @@
1
1
  ---
2
2
  name: session-end
3
- description: "Guarda estado actual en SESSION.md"
3
+ description: "Saves current state to SESSION.md"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # Session End
8
8
 
9
- Guarda el estado actual del trabajo en SESSION.md para poder retomarlo en la siguiente sesion. Ejecuta este skill antes de cerrar la sesion de trabajo.
9
+ Saves the current work state to SESSION.md so it can be resumed in the next session. Run this skill before closing your work session.
10
10
 
11
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Antes de cerrar la sesion de trabajo
14
- - Cuando necesitas pausar y quieres guardar el contexto
13
+ - Before closing the work session
14
+ - When you need to pause and want to save the context
15
15
 
16
- ## Uso
16
+ ## Usage
17
17
 
18
18
  `/session-end`
19
19
 
20
- ## Proceso
20
+ ## Process
21
21
 
22
- ### Paso 1 — Recopilar estado actual
22
+ ### Step 1 — Gather current state
23
23
 
24
- Analiza el estado actual del trabajo:
24
+ Analyze the current work state:
25
25
 
26
- - Que tarea estaba en curso
27
- - En que fase del pipeline se encuentra (si aplica)
28
- - Que archivos se modificaron (via `git status`)
29
- - Que commits se hicieron en esta sesion
26
+ - What task was in progress
27
+ - Which pipeline phase it is in (if applicable)
28
+ - What files were modified (via `git status`)
29
+ - What commits were made in this session
30
30
 
31
- ### Paso 2 — Actualizar SESSION.md
31
+ ### Step 2 — Update SESSION.md
32
32
 
33
- Actualiza SESSION.md con la siguiente informacion:
33
+ Update SESSION.md with the following information:
34
34
 
35
- - **Fecha:** fecha actual
36
- - **Tarea en curso:** nombre de la tarea o "ninguna"
37
- - **GitHub Issue:** URL del issue asociado (si existe)
38
- - **Agente activo:** ultimo agente utilizado o "ninguno"
39
- - **Estado:** descripcion concreta de donde quedo el trabajo
35
+ - **Date:** current date
36
+ - **Task in progress:** task name or "none"
37
+ - **GitHub Issue:** associated issue URL (if it exists)
38
+ - **Active agent:** last agent used or "none"
39
+ - **State:** concrete description of where the work left off
40
40
 
41
- **Contexto relevante:**
41
+ **Relevant context:**
42
42
 
43
- - Decisiones tomadas en esta sesion
44
- - Problemas encontrados y como se resolvieron
45
- - Informacion importante para retomar
43
+ - Decisions made in this session
44
+ - Problems encountered and how they were resolved
45
+ - Important information for resuming
46
46
 
47
- **Proximos pasos:**
47
+ **Next steps:**
48
48
 
49
- - Las 2-3 acciones concretas mas importantes al retomar
50
- - Skill sugerido para continuar (ej: "ejecutar /build-feature para continuar desde Fase 4")
49
+ - The 2-3 most important concrete actions when resuming
50
+ - Suggested skill to continue (e.g., "run /build-feature to continue from Phase 4")
51
51
 
52
- ### Paso 3 — Commit WIP if uncommitted work exists
52
+ ### Step 3 — Commit WIP if uncommitted work exists
53
53
 
54
54
  If there are uncommitted changes, create a checkpoint commit:
55
55
 
@@ -74,11 +74,11 @@ WIP committed: wip: session paused — user-preferences phase 4
74
74
  SESSION.md updated. Safe to close.
75
75
  ```
76
76
 
77
- ### Paso 4 — Confirmar
77
+ ### Step 4 — Confirm
78
78
 
79
- Confirma al usuario:
79
+ Confirm to the user:
80
80
 
81
- - SESSION.md actualizado con el estado actual
81
+ - SESSION.md updated with the current state
82
82
  - WIP committed (if applicable)
83
- - Proximos pasos registrados
84
- - Puedes cerrar la sesion con seguridad
83
+ - Next steps recorded
84
+ - You can safely close the session
@@ -1,33 +1,33 @@
1
1
  ---
2
2
  name: session-start
3
- description: "Carga contexto y retoma trabajo desde SESSION.md"
3
+ description: "Loads context and resumes work from SESSION.md"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # Session Start
8
8
 
9
- Carga el contexto del proyecto y retoma el trabajo desde donde se dejo en la sesion anterior. Este es el primer skill que debes ejecutar al iniciar una sesion de trabajo.
9
+ Loads the project context and resumes work from where it was left off in the previous session. This is the first skill you should run when starting a work session.
10
10
 
11
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Al inicio de cada sesion de trabajo con el proyecto
14
- - Cuando quieres retomar el contexto despues de una pausa
13
+ - At the start of each work session with the project
14
+ - When you want to resume context after a pause
15
15
 
16
- ## Uso
16
+ ## Usage
17
17
 
18
18
  `/session-start`
19
19
 
20
- ## Proceso
20
+ ## Process
21
21
 
22
- ### Paso 1 — Cargar contexto
22
+ ### Step 1 — Load context
23
23
 
24
- Lee los archivos de estado de Guild:
24
+ Read the Guild state files:
25
25
 
26
- - `CLAUDE.md` — instrucciones, convenciones y reglas del proyecto
27
- - `SESSION.md` — estado de la ultima sesion, tarea en curso, proximos pasos
28
- - `PROJECT.md` — identidad del proyecto, stack, agentes configurados
26
+ - `CLAUDE.md` — project instructions, conventions, and rules
27
+ - `SESSION.md` — last session state, task in progress, next steps
28
+ - `PROJECT.md` — project identity, stack, configured agents
29
29
 
30
- ### Paso 2 — Detect resumable work
30
+ ### Step 2 — Detect resumable work
31
31
 
32
32
  Check for `wip:` checkpoint commits on active branches:
33
33
 
@@ -39,35 +39,35 @@ done
39
39
 
40
40
  If `wip:` commits are found, present them to the user with the phase they were in when interrupted.
41
41
 
42
- ### Paso 3 — Presentar estado
42
+ ### Step 3 — Present state
43
43
 
44
- Muestra un resumen de la sesion anterior:
44
+ Show a summary of the previous session:
45
45
 
46
- - Fecha de la ultima sesion
47
- - Tarea en curso (si existe)
48
- - Estado en que quedo el trabajo
49
- - Decisiones tomadas previamente
50
- - Proximos pasos registrados
46
+ - Date of the last session
47
+ - Task in progress (if any)
48
+ - State where the work left off
49
+ - Decisions made previously
50
+ - Recorded next steps
51
51
  - **Resumable pipelines** (if wip: commits detected)
52
52
 
53
- ### Paso 4 — Sugerir como continuar
53
+ ### Step 4 — Suggest how to continue
54
54
 
55
- Si hay tarea en curso:
55
+ If there is a task in progress:
56
56
 
57
- - Muestra el estado de la tarea
58
- - Sugiere continuar con el skill apropiado (ej: `/build-feature` si esta en implementacion)
59
- - Muestra los proximos pasos registrados en SESSION.md
57
+ - Show the task state
58
+ - Suggest continuing with the appropriate skill (e.g., `/build-feature` if in implementation)
59
+ - Show the next steps recorded in SESSION.md
60
60
 
61
- Si no hay tarea en curso, sugiere opciones:
61
+ If there is no task in progress, suggest options:
62
62
 
63
- - `/build-feature [descripcion]` — para implementar una feature nueva
64
- - `/new-feature [nombre]` — para preparar el entorno de una feature
65
- - `/status` — para ver el estado general del proyecto
66
- - `/council [pregunta]` — para debatir una decision importante
63
+ - `/build-feature [description]` — to implement a new feature
64
+ - `/new-feature [name]` — to prepare the environment for a feature
65
+ - `/status` — to see the general project state
66
+ - `/council [question]` — to debate an important decision
67
67
 
68
- ### Paso 5 — Actualizar sesion
68
+ ### Step 5 — Update session
69
69
 
70
- Actualiza SESSION.md con la fecha actual para registrar que la sesion inicio.
70
+ Update SESSION.md with the current date to record that the session has started.
71
71
 
72
72
  ## Example Session
73
73
 
@@ -1,67 +1,67 @@
1
1
  ---
2
2
  name: status
3
- description: "Muestra estado actual del proyecto y sesion"
3
+ description: "Shows current project and session state"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # Status
8
8
 
9
- Muestra un resumen completo del estado actual del proyecto, la sesion activa y los recursos disponibles de Guild.
9
+ Shows a complete summary of the current project state, the active session, and the available Guild resources.
10
10
 
11
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Al inicio de una sesion para orientarte
14
- - Para verificar que Guild esta correctamente configurado
15
- - Para ver que agentes y skills estan disponibles
13
+ - At the start of a session to get oriented
14
+ - To verify that Guild is correctly configured
15
+ - To see which agents and skills are available
16
16
 
17
- ## Uso
17
+ ## Usage
18
18
 
19
19
  `/status`
20
20
 
21
- ## Proceso
21
+ ## Process
22
22
 
23
- ### Paso 1 — Leer archivos de estado
23
+ ### Step 1 — Read state files
24
24
 
25
- Lee los archivos de configuracion de Guild:
25
+ Read the Guild configuration files:
26
26
 
27
- - `CLAUDE.md` — instrucciones y convenciones del proyecto
28
- - `PROJECT.md` — identidad, stack y agentes configurados
29
- - `SESSION.md` — estado de la sesion actual
27
+ - `CLAUDE.md` — project instructions and conventions
28
+ - `PROJECT.md` — identity, stack, and configured agents
29
+ - `SESSION.md` — current session state
30
30
 
31
- ### Paso 2 — Presentar estado
31
+ ### Step 2 — Present state
32
32
 
33
- Muestra el resumen con el siguiente formato:
33
+ Show the summary in the following format:
34
34
 
35
35
  ```text
36
- Guild v1 — [nombre del proyecto]
36
+ Guild v1 — [project name]
37
37
 
38
- Sesion actual:
39
- - Fecha: [fecha de SESSION.md]
40
- - Tarea en curso: [tarea o "ninguna"]
41
- - Estado: [estado actual]
38
+ Current session:
39
+ - Date: [date from SESSION.md]
40
+ - Task in progress: [task or "none"]
41
+ - State: [current state]
42
42
 
43
43
  Stack:
44
- - [tecnologias listadas en PROJECT.md]
44
+ - [technologies listed in PROJECT.md]
45
45
 
46
- Agentes disponibles:
47
- - [lista de archivos .md en .claude/agents/]
46
+ Available agents:
47
+ - [list of .md files in .claude/agents/]
48
48
 
49
- Skills disponibles:
50
- - [lista de directorios en .claude/skills/]
49
+ Available skills:
50
+ - [list of directories in .claude/skills/]
51
51
 
52
- Proximos pasos:
53
- - [extraidos de SESSION.md]
52
+ Next steps:
53
+ - [extracted from SESSION.md]
54
54
  ```
55
55
 
56
- ### Paso 3 — Sugerir acciones
56
+ ### Step 3 — Suggest actions
57
57
 
58
- Si no hay tarea en curso, sugiere:
58
+ If there is no task in progress, suggest:
59
59
 
60
- - `/build-feature` para implementar algo nuevo
61
- - `/new-feature` para preparar el entorno de una feature
62
- - `/council` para debatir una decision
60
+ - `/build-feature` to implement something new
61
+ - `/new-feature` to prepare the environment for a feature
62
+ - `/council` to debate a decision
63
63
 
64
- Si hay tarea en curso, sugiere continuar con el skill apropiado segun el estado.
64
+ If there is a task in progress, suggest continuing with the appropriate skill based on the state.
65
65
 
66
66
  ## Example Session
67
67
 
@@ -75,7 +75,7 @@ Session: 2026-02-23
75
75
  Task: Implementing user preferences
76
76
  State: Phase 4 — Developer implementing
77
77
 
78
- Agents: advisor, product-owner, tech-lead, developer, code-reviewer, qa, bugfix, db-migration
78
+ Agents: advisor, product-owner, tech-lead, developer, code-reviewer, qa, bugfix, db-migration, platform-expert
79
79
  Skills: guild-specialize, build-feature, new-feature, council, qa-cycle, review, dev-flow,
80
80
  status, session-start, session-end
81
81
  ```
@@ -1,5 +1,5 @@
1
1
  /**
2
- * files.js — Utilidades de sistema de archivos para Guild v1
2
+ * files.js — File system utilities for Guild v1
3
3
  */
4
4
 
5
5
  import { mkdirSync, copyFileSync, existsSync, readdirSync, readFileSync } from 'fs';
@@ -12,7 +12,7 @@ const AGENTS_DIR = join('.claude', 'agents');
12
12
  const SKILLS_DIR = join('.claude', 'skills');
13
13
 
14
14
  /**
15
- * Lista los nombres de los 9 agentes v1.
15
+ * Returns the names of the 9 v1 agents.
16
16
  */
17
17
  export function getAgentNames() {
18
18
  return [
@@ -29,7 +29,7 @@ export function getAgentNames() {
29
29
  }
30
30
 
31
31
  /**
32
- * Copia los templates de agentes y skills al proyecto del usuario.
32
+ * Copies agent and skill templates to the user's project.
33
33
  */
34
34
  export async function copyTemplates() {
35
35
  mkdirSync(AGENTS_DIR, { recursive: true });
@@ -65,7 +65,7 @@ export async function copyTemplates() {
65
65
  }
66
66
 
67
67
  /**
68
- * Lee el contenido de PROJECT.md si existe.
68
+ * Reads the contents of PROJECT.md if it exists.
69
69
  */
70
70
  export function readProjectMd() {
71
71
  const path = 'PROJECT.md';
@@ -74,7 +74,7 @@ export function readProjectMd() {
74
74
  }
75
75
 
76
76
  /**
77
- * Lee el contenido de SESSION.md si existe.
77
+ * Reads the contents of SESSION.md if it exists.
78
78
  */
79
79
  export function readSessionMd() {
80
80
  const path = 'SESSION.md';
@@ -83,9 +83,9 @@ export function readSessionMd() {
83
83
  }
84
84
 
85
85
  /**
86
- * Resuelve la raiz del proyecto Guild caminando hacia arriba desde startDir.
87
- * Busca .claude/ o PROJECT.md como marcadores de un proyecto Guild.
88
- * Retorna la ruta absoluta del proyecto o null si no se encuentra.
86
+ * Resolves the Guild project root by walking up from startDir.
87
+ * Looks for .claude/ or PROJECT.md as markers of a Guild project.
88
+ * Returns the absolute path to the project or null if not found.
89
89
  */
90
90
  export function resolveProjectRoot(startDir = process.cwd()) {
91
91
  let dir = resolve(startDir);