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,60 +1,60 @@
1
1
  ---
2
2
  name: dev-flow
3
- description: "Muestra fase actual del pipeline y que sigue"
3
+ description: "Shows current pipeline phase and what comes next"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # Dev Flow
8
8
 
9
- Muestra la fase actual del pipeline de desarrollo y sugiere el siguiente paso. Util para retomar trabajo cuando no recuerdas en que punto del flujo te quedaste.
9
+ Shows the current phase of the development pipeline and suggests the next step. Useful for resuming work when you do not remember where you left off in the flow.
10
10
 
11
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Cuando retomas trabajo y no recuerdas la fase actual
14
- - Para ver el progreso del pipeline de build-feature
15
- - Para decidir que skill ejecutar a continuacion
13
+ - When resuming work and you do not remember the current phase
14
+ - To see the progress of the build-feature pipeline
15
+ - To decide which skill to run next
16
16
 
17
- ## Uso
17
+ ## Usage
18
18
 
19
19
  `/dev-flow`
20
20
 
21
- ## Proceso
21
+ ## Process
22
22
 
23
- ### Paso 1 — Leer estado
23
+ ### Step 1 — Read state
24
24
 
25
- Lee `SESSION.md` para determinar:
25
+ Read `SESSION.md` to determine:
26
26
 
27
- - Si hay una feature en curso
28
- - En que fase del pipeline se encuentra
29
- - Que se completo y que falta
27
+ - Whether there is a feature in progress
28
+ - Which pipeline phase it is in
29
+ - What has been completed and what remains
30
30
 
31
- ### Paso 2 — Determinar fase actual
31
+ ### Step 2 — Determine current phase
32
32
 
33
- Las fases del pipeline son:
33
+ The pipeline phases are:
34
34
 
35
- 1. **Evaluacion** (Advisor) — go/no-go
36
- 2. **Especificacion** (Product Owner) — criterios de aceptacion
37
- 3. **Approach tecnico** (Tech Lead) — plan de implementacion
38
- 4. **Implementacion** (Developer) — codigo y tests
39
- 5. **Review** (Code Reviewer) — revision de calidad
40
- 6. **QA** — validacion funcional
35
+ 1. **Evaluation** (Advisor) — go/no-go
36
+ 2. **Specification** (Product Owner) — acceptance criteria
37
+ 3. **Technical Approach** (Tech Lead) — implementation plan
38
+ 4. **Implementation** (Developer) — code and tests
39
+ 5. **Review** (Code Reviewer) — quality review
40
+ 6. **QA** — functional validation
41
41
 
42
- ### Paso 3 — Presentar estado del flujo
42
+ ### Step 3 — Present flow state
43
43
 
44
44
  ```text
45
- Dev Flow — [nombre de la feature]
45
+ Dev Flow — [feature name]
46
46
 
47
- [x] Fase 1 — Evaluacion (completada)
48
- [x] Fase 2 — Especificacion (completada)
49
- [ ] Fase 3 — Approach tecnico (pendiente) <-- estas aqui
50
- [ ] Fase 4 — Implementacion
51
- [ ] Fase 5 — Review
52
- [ ] Fase 6 — QA
47
+ [x] Phase 1 — Evaluation (completed)
48
+ [x] Phase 2 — Specification (completed)
49
+ [ ] Phase 3 — Technical Approach (pending) <-- you are here
50
+ [ ] Phase 4 — Implementation
51
+ [ ] Phase 5 — Review
52
+ [ ] Phase 6 — QA
53
53
 
54
- Siguiente paso: Ejecuta /build-feature para continuar desde la Fase 3.
54
+ Next step: Run /build-feature to continue from Phase 3.
55
55
  ```
56
56
 
57
- Si no hay feature en curso, informa que no hay pipeline activo y sugiere `/new-feature` o `/build-feature`.
57
+ If there is no feature in progress, report that there is no active pipeline and suggest `/new-feature` or `/build-feature`.
58
58
 
59
59
  ## Example Session
60
60
 
@@ -1,116 +1,116 @@
1
1
  ---
2
2
  name: guild-specialize
3
- description: "Enriquece CLAUDE.md explorando el proyecto y especializa los agentes al stack real"
3
+ description: "Enriches CLAUDE.md by exploring the project and specializes agents to the real stack"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # Guild Specialize
8
8
 
9
- Explora el proyecto real del usuario y enriquece toda la configuracion de Guild con informacion concreta del stack, arquitectura y convenciones detectadas.
9
+ Explores the user's real project and enriches the entire Guild configuration with concrete information about the detected stack, architecture, and conventions.
10
10
 
11
- Este skill se ejecuta una vez despues de `guild init`. Transforma los placeholders genericos en informacion real del proyecto.
11
+ This skill runs once after `guild init`. It transforms generic placeholders into real project information.
12
12
 
13
- ## Cuando usarlo
13
+ ## When to use
14
14
 
15
- - Inmediatamente despues de ejecutar `guild init`
16
- - Cuando se agrega un stack nuevo al proyecto (nueva base de datos, nuevo framework)
17
- - Cuando la estructura del proyecto cambio significativamente
15
+ - Immediately after running `guild init`
16
+ - When a new stack is added to the project (new database, new framework)
17
+ - When the project structure has changed significantly
18
18
 
19
- ## Proceso
19
+ ## Process
20
20
 
21
- ### Paso 1 — Leer contexto base
21
+ ### Step 1 — Read base context
22
22
 
23
- Lee los archivos de configuracion de Guild:
23
+ Read the Guild configuration files:
24
24
 
25
- - `CLAUDE.md` — instrucciones actuales (contiene placeholders `[PENDIENTE: guild-specialize]`)
26
- - `PROJECT.md` — identidad y stack declarado durante init
27
- - `SESSION.md` — estado de sesion actual
25
+ - `CLAUDE.md` — current instructions (contains `[PENDING: guild-specialize]` placeholders)
26
+ - `PROJECT.md` — identity and stack declared during init
27
+ - `SESSION.md` — current session state
28
28
 
29
- ### Paso 2 — Explorar el proyecto real
29
+ ### Step 2 — Explore the real project
30
30
 
31
- Investiga la estructura real del proyecto buscando:
31
+ Investigate the real project structure looking for:
32
32
 
33
- **Dependencias y versiones:**
33
+ **Dependencies and versions:**
34
34
 
35
35
  - `package.json` (Node.js/frontend)
36
- - `pom.xml` o `build.gradle` (Java)
37
- - `requirements.txt` o `pyproject.toml` (Python)
36
+ - `pom.xml` or `build.gradle` (Java)
37
+ - `requirements.txt` or `pyproject.toml` (Python)
38
38
  - `Gemfile` (Ruby)
39
39
  - `go.mod` (Go)
40
40
  - `Cargo.toml` (Rust)
41
41
 
42
- **Arquitectura y estructura:**
42
+ **Architecture and structure:**
43
43
 
44
- - Carpetas `src/`, `app/`, `lib/`, `pkg/`, `internal/`
45
- - Patron de organizacion: por capas, por features, por dominio
46
- - Entry points del proyecto
44
+ - Folders `src/`, `app/`, `lib/`, `pkg/`, `internal/`
45
+ - Organization pattern: by layers, by features, by domain
46
+ - Project entry points
47
47
 
48
- **Configuracion y convenciones:**
48
+ **Configuration and conventions:**
49
49
 
50
50
  - `tsconfig.json`, `eslint.config.*`, `.prettierrc`
51
- - `.env.example`, `.env.local` (variables de entorno NO leer `.env` real)
51
+ - `.env.example`, `.env.local` (environment variables do NOT read real `.env`)
52
52
  - `Dockerfile`, `docker-compose.yml`
53
53
  - CI/CD: `.github/workflows/`, `.gitlab-ci.yml`
54
54
 
55
- **Base de datos y migraciones:**
55
+ **Database and migrations:**
56
56
 
57
- - Carpeta `migrations/`, `db/`, `prisma/`, `drizzle/`
58
- - ORM o query builder configurado
59
- - Schema existente
57
+ - Folder `migrations/`, `db/`, `prisma/`, `drizzle/`
58
+ - Configured ORM or query builder
59
+ - Existing schema
60
60
 
61
- **Documentacion existente:**
61
+ **Existing documentation:**
62
62
 
63
- - `README.md` — vision general del proyecto
64
- - Documentacion interna en `docs/`
63
+ - `README.md` — project overview
64
+ - Internal documentation in `docs/`
65
65
 
66
- ### Paso 3 — Enriquecer CLAUDE.md
66
+ ### Step 3 — Enrich CLAUDE.md
67
67
 
68
- Reemplaza todos los placeholders `[PENDIENTE: guild-specialize]` en CLAUDE.md con informacion real:
68
+ Replace all `[PENDING: guild-specialize]` placeholders in CLAUDE.md with real information:
69
69
 
70
- - **Stack con versiones exactas**: extraidas de los archivos de dependencias
71
- - **Estructura de carpetas explicada**: que hace cada carpeta principal
72
- - **Convenciones de codigo detectadas**: linter, formatter, estilo de imports
73
- - **Patrones de arquitectura identificados**: MVC, hexagonal, modular, etc.
74
- - **Variables de entorno conocidas**: listadas desde `.env.example`
75
- - **Limitaciones y deuda tecnica visible**: dependencias desactualizadas, TODOs encontrados
76
- - **Comandos utiles del proyecto**: scripts de npm/make/cargo detectados
70
+ - **Stack with exact versions**: extracted from dependency files
71
+ - **Folder structure explained**: what each main folder does
72
+ - **Detected code conventions**: linter, formatter, import style
73
+ - **Identified architecture patterns**: MVC, hexagonal, modular, etc.
74
+ - **Known environment variables**: listed from `.env.example`
75
+ - **Visible limitations and technical debt**: outdated dependencies, TODOs found
76
+ - **Useful project commands**: detected npm/make/cargo scripts
77
77
 
78
- ### Paso 4 — Especializar agentes
78
+ ### Step 4 — Specialize agents
79
79
 
80
- Para cada agente en `.claude/agents/*.md`, agrega contexto especifico del proyecto:
80
+ For each agent in `.claude/agents/*.md`, add project-specific context:
81
81
 
82
- - **advisor.md**: dominio real del proyecto, usuarios objetivo
83
- - **tech-lead.md**: stack especifico, patrones detectados, decisiones de arquitectura
84
- - **product-owner.md**: funcionalidades existentes, backlog visible
85
- - **developer.md**: convenciones de codigo, framework principal, estructura de archivos
86
- - **code-reviewer.md**: reglas de lint, patrones del proyecto, anti-patrones a vigilar
87
- - **qa.md**: framework de testing, comandos para ejecutar tests, cobertura actual
88
- - **bugfix.md**: stack de debugging, logs, herramientas disponibles
89
- - **db-migration.md**: ORM, herramienta de migraciones, schema actual (si aplica)
82
+ - **advisor.md**: real project domain, target users
83
+ - **tech-lead.md**: specific stack, detected patterns, architecture decisions
84
+ - **product-owner.md**: existing functionality, visible backlog
85
+ - **developer.md**: code conventions, main framework, file structure
86
+ - **code-reviewer.md**: lint rules, project patterns, anti-patterns to watch
87
+ - **qa.md**: testing framework, commands to run tests, current coverage
88
+ - **bugfix.md**: debugging stack, logs, available tools
89
+ - **db-migration.md**: ORM, migration tool, current schema (if applicable)
90
90
 
91
- Usa el tool `Task` para invocar cada agente leyendo su `.claude/agents/[nombre].md` si necesitas perspectiva especializada para enriquecer su configuracion.
91
+ Use the `Task` tool to invoke each agent by reading their `.claude/agents/[name].md` if you need a specialized perspective to enrich their configuration.
92
92
 
93
- ### Paso 5 — Confirmar
93
+ ### Step 5 — Confirm
94
94
 
95
- Presenta un resumen de lo detectado:
95
+ Present a summary of what was detected:
96
96
 
97
97
  ```text
98
- Guild v1 especializado para [nombre-proyecto]
98
+ Guild v1 specialized for [project-name]
99
99
 
100
- Stack detectado:
101
- - [lista de tecnologias con versiones]
100
+ Detected stack:
101
+ - [list of technologies with versions]
102
102
 
103
- Arquitectura:
104
- - [patron identificado]
105
- - [estructura principal]
103
+ Architecture:
104
+ - [identified pattern]
105
+ - [main structure]
106
106
 
107
- Agentes actualizados:
108
- - [lista de agentes con su especializacion aplicada]
107
+ Updated agents:
108
+ - [list of agents with their applied specialization]
109
109
 
110
- Ejecuta /status para ver el estado completo.
110
+ Run /status to see the full state.
111
111
  ```
112
112
 
113
- ### Paso 6 — Commit enrichment immediately
113
+ ### Step 6 — Commit enrichment immediately
114
114
 
115
115
  **CRITICAL:** After enriching CLAUDE.md and agent files, commit the changes immediately as their own atomic commit. Do NOT leave them as unstaged changes — they are vulnerable to `git stash` and other operations.
116
116
 
@@ -146,11 +146,11 @@ Agents updated:
146
146
  Run /status to see the full state.
147
147
  ```
148
148
 
149
- ## Notas importantes
149
+ ## Important Notes
150
150
 
151
- - NUNCA leas archivos `.env` realessolo `.env.example` o `.env.local`
152
- - Si no puedes detectar algo con certeza, pregunta al usuario en vez de asumir
153
- - Prioriza precision sobre completitudes mejor decir "no detectado" que inventar
154
- - Los agentes deben quedar especializados al stack real, no generico
151
+ - NEVER read real `.env` filesonly `.env.example` or `.env.local`
152
+ - If you cannot detect something with certainty, ask the user instead of assuming
153
+ - Prioritize accuracy over completenessit is better to say "not detected" than to fabricate
154
+ - Agents should be specialized to the real stack, not generic
155
155
  - NEVER use `git stash` in automated pipelines — use `wip:` commits instead
156
156
  - CLAUDE.md changes must always be committed separately from feature code
@@ -1,60 +1,60 @@
1
1
  ---
2
2
  name: new-feature
3
- description: "Crea branch y scaffold para una nueva feature"
3
+ description: "Creates branch and scaffold for a new feature"
4
4
  user-invocable: true
5
5
  ---
6
6
 
7
7
  # New Feature
8
8
 
9
- Prepara el entorno para trabajar en una nueva feature: crea branch, actualiza SESSION.md y opcionalmente crea un GitHub Issue.
9
+ Prepares the environment for working on a new feature: creates a branch, updates SESSION.md, and optionally creates a GitHub Issue.
10
10
 
11
- ## Cuando usarlo
11
+ ## When to use
12
12
 
13
- - Al iniciar una feature nueva antes de escribir codigo
14
- - Cuando quieres dejar registrado el contexto de la feature en SESSION.md
13
+ - When starting a new feature before writing code
14
+ - When you want to record the feature context in SESSION.md
15
15
 
16
- ## Uso
16
+ ## Usage
17
17
 
18
- `/new-feature [nombre-de-la-feature]`
18
+ `/new-feature [feature-name]`
19
19
 
20
- ## Proceso
20
+ ## Process
21
21
 
22
- ### Paso 1 — Obtener nombre
22
+ ### Step 1 — Get name
23
23
 
24
- Si el usuario no proporciono nombre, preguntale:
24
+ If the user did not provide a name, ask for:
25
25
 
26
- - Nombre corto para la feature (se usara en el nombre del branch)
27
- - Descripcion breve (1-2 oraciones)
26
+ - Short name for the feature (will be used in the branch name)
27
+ - Brief description (1-2 sentences)
28
28
 
29
- ### Paso 2 — Crear branch con worktree isolation
29
+ ### Step 2 — Create branch with worktree isolation
30
30
 
31
31
  When running in parallel with other agents, use git worktrees for isolation. When running standalone, a simple branch is sufficient.
32
32
 
33
33
  **For parallel execution (multiple build-features at once):**
34
34
 
35
35
  ```bash
36
- git worktree add .claude/worktrees/feature-[nombre] -b feature/[nombre-de-la-feature] develop
36
+ git worktree add .claude/worktrees/feature-[name] -b feature/[feature-name] develop
37
37
  ```
38
38
 
39
- All subsequent operations should use `.claude/worktrees/feature-[nombre]` as the working directory.
39
+ All subsequent operations should use `.claude/worktrees/feature-[name]` as the working directory.
40
40
 
41
41
  **For standalone execution:**
42
42
 
43
43
  ```bash
44
- git checkout -b feature/[nombre-de-la-feature]
44
+ git checkout -b feature/[feature-name]
45
45
  ```
46
46
 
47
- Si el branch ya existe, pregunta si quiere cambiarse a el o crear uno nuevo.
47
+ If the branch already exists, ask whether to switch to it or create a new one.
48
48
 
49
- **Cleanup:** At skill exit, if using worktrees, the caller is responsible for cleanup via `git worktree remove .claude/worktrees/feature-[nombre]` after the PR is merged.
49
+ **Cleanup:** At skill exit, if using worktrees, the caller is responsible for cleanup via `git worktree remove .claude/worktrees/feature-[name]` after the PR is merged.
50
50
 
51
- ### Paso 3 — Actualizar SESSION.md
51
+ ### Step 3 — Update SESSION.md
52
52
 
53
- Actualiza SESSION.md con el contexto de la nueva feature:
53
+ Update SESSION.md with the new feature context:
54
54
 
55
- - **Fecha:** fecha actual
56
- - **Tarea en curso:** nombre de la feature
57
- - **Estado:** Feature iniciadapendiente de implementacion
55
+ - **Date:** current date
56
+ - **Task in progress:** feature name
57
+ - **State:** Feature startedpending implementation
58
58
 
59
59
  ## Example Session
60
60
 
@@ -68,19 +68,19 @@ GitHub Issue #42 created.
68
68
  Next: Run /build-feature to implement.
69
69
  ```
70
70
 
71
- ### Paso 4 — GitHub Issue (opcional)
71
+ ### Step 4 — GitHub Issue (optional)
72
72
 
73
- Si el proyecto tiene integracion GitHub configurada en PROJECT.md:
73
+ If the project has GitHub integration configured in PROJECT.md:
74
74
 
75
- 1. Pregunta si quiere crear un GitHub Issue para la feature
76
- 2. Si acepta, crea el issue con `gh issue create`
77
- 3. Registra la URL del issue en SESSION.md
75
+ 1. Ask whether to create a GitHub Issue for the feature
76
+ 2. If accepted, create the issue with `gh issue create`
77
+ 3. Record the issue URL in SESSION.md
78
78
 
79
- ### Paso 5 — Confirmar
79
+ ### Step 5 — Confirm
80
80
 
81
- Confirma al usuario:
81
+ Confirm to the user:
82
82
 
83
- - Branch creado: `feature/[nombre]`
84
- - SESSION.md actualizado
85
- - GitHub Issue creado (si aplica)
86
- - Sugiere: "Ejecuta /build-feature para implementar la feature completa"
83
+ - Branch created: `feature/[name]`
84
+ - SESSION.md updated
85
+ - GitHub Issue created (if applicable)
86
+ - Suggest: "Run /build-feature to implement the full feature"
@@ -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