ai-flow-dev 2.9.0 → 2.9.1

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/README.md CHANGED
@@ -140,7 +140,7 @@ Or using uv (Python tool manager):
140
140
  uv tool install ai-flow-dev
141
141
  ```
142
142
 
143
- ## **Current version:** 2.9.0
143
+ ## **Current version:** 2.9.1
144
144
 
145
145
  ## 🚀 Quick Start
146
146
 
@@ -265,7 +265,7 @@ After initialization, use these slash commands in your AI tool:
265
265
 
266
266
  > **Note:** Command prefix may vary by AI tool. Examples use `/flow-` (GitHub Copilot), but Claude may use `/` alone, Cursor may use `@`, etc. Check your tool's documentation.
267
267
 
268
- **Backend Projects:** 25 prompts (/flow-build with phases 0-10, /flow-work, /flow-check, /flow-commit, /flow-finish, /flow-docs-sync, /flow-release, /flow-report)
268
+ **Backend Projects:** 24 prompts (flow-build.md with phases 0-10, flow-work.md and variants, flow-check.md and variants, flow-commit.md, flow-finish.md, flow-docs-sync.md, flow-release.md)
269
269
  **Frontend Projects:** 26 prompts (same structure tailored for frontend apps)
270
270
  **Mobile Projects:** 26 prompts (same structure tailored for mobile apps)
271
271
  **Desktop Projects:** 25 prompts (same structure tailored for desktop apps)
@@ -395,19 +395,19 @@ AI Flow organizes your project with clear separation of concerns:
395
395
 
396
396
  ## 🎯 Generated Documentation
397
397
 
398
- **Backend** (14 files): AGENT.md, ai-instructions.md, copilot-instructions.md, project-brief.md, README.md, plus 9 technical docs/specs.
398
+ **Backend** (17 files): AGENT.md, ai-instructions.md, copilot-instructions.md, project-brief.md, README.md, pr-description.md, work.md, plus 8 docs (ARCHITECTURE.md, API.md, DATABASE.md, DEVELOPMENT.md, DEPLOYMENT.md, ERRORS.md, SECURITY.md, TESTING.md) and 2 specs (API_DESIGN.md, DATA_MODEL.md).
399
399
 
400
400
  **Frontend** (15 files): AGENT.md, ai-instructions.md, project-brief.md, plus 12 technical docs/specs.
401
401
 
402
402
  **Mobile** (13 files): AGENT.md, ai-instructions.md, project-brief.md, plus 10 technical docs/specs.
403
403
 
404
- **Desktop** (14 files): AGENT.md, ai-instructions.md, copilot-instructions.md, project-brief.md, README.md, plus 9 technical docs/specs.
404
+ **Desktop** (6 files): AGENT.md, ai-instructions.md, copilot-instructions.md, project-brief.md, README.md, .clauderules, .cursorrules (NetBeans/Eclipse Java projects).
405
405
 
406
406
  **Fullstack** (30+ files): Combined Backend + Frontend documentation structures.
407
407
 
408
- **Slash Commands/Prompts** (102 total):
408
+ **Slash Commands/Prompts** (98 total):
409
409
 
410
- - Backend: 25 prompts (/flow-build with phases 0-10, /flow-work variants, /flow-check, /flow-commit, /flow-finish, /flow-docs-sync, /flow-release, /flow-report)
410
+ - Backend: 24 prompts (flow-build.md with phases 0-10, flow-work.md and variants, flow-check.md and variants, flow-commit.md, flow-finish.md, flow-docs-sync.md, flow-release.md)
411
411
  - Frontend: 26 prompts (same structure tailored for frontend + /flow-work-api + /flow-finish + /flow-release + /flow-report)
412
412
  - Mobile: 26 prompts (same structure tailored for mobile apps + /flow-work-api + /flow-finish + /flow-release + /flow-report)
413
413
  - Desktop: 25 prompts (same structure tailored for desktop apps + /flow-finish + /flow-release + /flow-report)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-flow-dev",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "AI-powered development workflow from idea to production. Generate specs, plan features, and build with AI assistance throughout your project lifecycle.",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
@@ -774,7 +774,7 @@ Read the structured summary from `/tmp/ai-context-summary.md` (400-600 words) an
774
774
  **AI Prompt:**
775
775
 
776
776
  ```markdown
777
- Genera dos descripciones profesionales (PR y Jira) usando el TEMPLATE OFICIAL en `.ai-flow/templates/pr-description.template.md`.
777
+ Generate two professional descriptions (PR in **ENGLISH**, Jira in **SPANISH**) using the OFFICIAL TEMPLATE in `.ai-flow/templates/pr-description.template.md`.
778
778
 
779
779
  <context-summary>
780
780
  $(cat /tmp/ai-context-summary.md)
@@ -813,7 +813,7 @@ TESTS_PASSED=$TESTS_PASSED
813
813
  TESTS_TOTAL=$TESTS_TOTAL
814
814
  TESTS_NEW=$TESTS_NEW
815
815
  COVERAGE=$COVERAGE
816
- DOCS_STATUS=$([ -n "$(git diff --name-only main..HEAD | grep '\.md$')" ] && echo "✅ Actualizada" || echo "⚠️ Revisar")
816
+ DOCS_STATUS=$([ -n "$(git diff --name-only main..HEAD | grep '\.md$')" ] && echo "✅ Updated" || echo "⚠️ Review needed")
817
817
 
818
818
  ## Code Metrics
819
819
 
@@ -825,7 +825,7 @@ LINES_DELETED=$LINES_DELETED
825
825
  ## Breaking Changes
826
826
 
827
827
  HAS_BREAKING_CHANGES=$HAS_BREAKING_CHANGES
828
- BREAKING_CHANGES_STATUS=$([ "$HAS_BREAKING_CHANGES" = "true" ] && echo "⚠️ (ver abajo)" || echo "✅ No")
828
+ BREAKING_CHANGES_STATUS=$([ "$HAS_BREAKING_CHANGES" = "true" ] && echo "⚠️ YES (see below)" || echo "✅ No")
829
829
  BREAKING_CHANGES_LIST=$([ "$HAS_BREAKING_CHANGES" = "true" ] && echo "$COMMIT_BREAKING" || echo "")
830
830
  MIGRATION_GUIDE=$([ "$HAS_BREAKING_CHANGES" = "true" ] && echo "[TODO: Usuario debe completar guía de migración]" || echo "")
831
831
 
@@ -898,38 +898,43 @@ OBSERVABILITY=[Analiza qué logging/monitoring se agregó o debe considerarse:
898
898
  </template-variables>
899
899
 
900
900
  <instructions>
901
- **Lee el template en `.ai-flow/templates/pr-description.template.md`** y genera DOS descripciones siguiendo EXACTAMENTE esa estructura:
902
-
903
- 1. **PR Description (GitHub/GitLab/Bitbucket) - TÉCNICO, COMPLETO:**
904
- - Usa TODAS las secciones del template
905
- - Renderiza variables con valores reales
906
- - Audiencia: Desarrolladores y Reviewers
907
- - Enfoque: "Cómo se implementó" (detalles técnicos)
908
- - Incluye secciones condicionales SOLO si aplican:
909
- - Breaking Changes Details (si HAS_BREAKING_CHANGES=true)
910
- - Deployment Notes (si SHOW_DEPLOYMENT_NOTES=true)
911
- - Screenshots (si HAS_UI_CHANGES=true)
912
- - Genera TEST_STEPS específicos del contexto (no genéricos)
913
-
914
- 2. **Jira Comment (Task Update) - BUSINESS-ORIENTED, COMPACTO:**
915
- - Audiencia: QA, PM, Stakeholders + Devs
916
- - Enfoque: "Qué se logró y cómo probarlo" (resultado de negocio)
917
- - Máximo 20-25 líneas (escaneable en 30 segundos)
918
- - BUSINESS_SUMMARY es lo MÁS IMPORTANTE: debe explicar el valor sin términos técnicos
919
- - TEST_STEPS deben ser actionables para QA (no requieren conocimiento de código)
920
- - DEPLOYMENT_NOTES_COMPACT solo si es crítico (1 línea máximo)
921
- - QA_NOTES solo si hay algo no obvio que QA debe saber
922
-
923
- **Reglas Importantes:**
924
-
925
- - Usa lenguaje profesional pero claro (nivel senior engineer)
926
- - Sé específico con cambios técnicos (usa nombres reales de archivos/módulos)
927
- - Usa los commit links ya formateados en $COMMIT_HASHES_SUMMARY
928
- - Genera TEST_STEPS específicos del tipo de cambio (no pasos genéricos)
929
- - Si MIGRATION_GUIDE está vacío y hay breaking changes, recomienda al usuario completarlo
930
- - Escapa caracteres especiales correctamente para Markdown válido
931
- - Usa separadores `---` (no `━━━━` o caracteres Unicode)
932
- - Si NEW_DEPENDENCIES está vacío pero HAS_NEW_DEPS=true, detecta del diff
901
+ **Read the template in `.ai-flow/templates/pr-description.template.md`** and generate TWO descriptions following EXACTLY that structure:
902
+
903
+ 1. **PR Description (GitHub/GitLab/Bitbucket) - TECHNICAL, COMPLETE, IN ENGLISH:**
904
+ - Use ALL sections from the template
905
+ - Render variables with real values
906
+ - Audience: Developers and Reviewers
907
+ - Focus: "How it was implemented" (technical details)
908
+ - **LANGUAGE: English (all text, headers, descriptions)**
909
+ - Include conditional sections ONLY if applicable:
910
+ - Breaking Changes Details (if HAS_BREAKING_CHANGES=true)
911
+ - Deployment Notes (if SHOW_DEPLOYMENT_NOTES=true)
912
+ - Screenshots (if HAS_UI_CHANGES=true)
913
+ - Generate context-specific TEST_STEPS (not generic)
914
+
915
+ 2. **Jira Comment (Task Update) - BUSINESS-ORIENTED, COMPACT, IN SPANISH:**
916
+ - Audience: QA, PM, Stakeholders + Devs
917
+ - Focus: "What was achieved and how to test it" (business outcome)
918
+ - Maximum 20-25 lines (scannable in 30 seconds)
919
+ - **LANGUAGE: Spanish (all text, headers, descriptions)**
920
+ - BUSINESS_SUMMARY is MOST IMPORTANT: must explain value without technical jargon
921
+ - TEST_STEPS must be actionable for QA (no code knowledge required)
922
+ - DEPLOYMENT_NOTES_COMPACT only if critical (1 line max)
923
+ - QA_NOTES only if there's something non-obvious QA should know
924
+
925
+ **Important Rules:**
926
+
927
+ - Use professional but clear language (senior engineer level)
928
+ - Be specific with technical changes (use real file/module names)
929
+ - Use commit links already formatted in $COMMIT_HASHES_SUMMARY
930
+ - Generate context-specific TEST_STEPS (not generic steps)
931
+ - If MIGRATION_GUIDE is empty and there are breaking changes, recommend user to complete it
932
+ - Escape special characters correctly for valid Markdown
933
+ - Use `---` separators (not `━━━━` or Unicode characters)
934
+ - If NEW_DEPENDENCIES is empty but HAS_NEW_DEPS=true, detect from diff
935
+ - **PR Description: 100% English**
936
+ - **Jira Comment: 100% Spanish**
937
+ - **NO SIGNATURES**: Do not include "Generated by AI Flow" or similar footers
933
938
 
934
939
  **Output Format:**
935
940
 
@@ -947,40 +952,40 @@ IMPORTANTE: Responde directamente con este formato EXACTO usando 5 BACKTICKS (m
947
952
 
948
953
  ---
949
954
 
950
- ## 🎯 Tipo de Cambio
955
+ ## 🎯 Change Type
951
956
 
952
- - [{{IS_FEATURE}}] ✨ Feature (nueva funcionalidad)
953
- - [{{IS_FIX}}] 🐛 Fix (corrección de bug)
954
- - [{{IS_REFACTOR}}] ♻️ Refactor (sin cambio funcional)
955
- - [{{IS_DOCS}}] 📝 Docs (solo documentación)
956
- - [{{IS_PERF}}] ⚡ Performance (mejora)
957
- - [{{IS_TEST}}] 🧪 Test (agregar/mejorar tests)
957
+ - [{{IS_FEATURE}}] ✨ Feature (new functionality)
958
+ - [{{IS_FIX}}] 🐛 Fix (bug fix)
959
+ - [{{IS_REFACTOR}}] ♻️ Refactor (no functional change)
960
+ - [{{IS_DOCS}}] 📝 Docs (documentation only)
961
+ - [{{IS_PERF}}] ⚡ Performance (improvement)
962
+ - [{{IS_TEST}}] 🧪 Test (add/improve tests)
958
963
 
959
- ## 🎯 Área de Impacto
964
+ ## 🎯 Impact Area
960
965
 
961
966
  **{{IMPACT_AREA}}**
962
967
 
963
- ## 💡 Contexto
968
+ ## 💡 Context
964
969
 
965
970
  {{CONTEXT}}
966
971
 
967
972
  {{RELATED_ISSUES}}
968
973
 
969
- ## ✅ Solución Implementada
974
+ ## ✅ Implemented Solution
970
975
 
971
976
  {{SOLUTION}}
972
977
 
973
- ## 🔧 Cambios Principales
978
+ ## 🔧 Main Changes
974
979
 
975
980
  {{MAIN_CHANGES}}
976
981
 
977
- ## 🧪 Cómo Probar
982
+ ## 🧪 How to Test
978
983
 
979
984
  {{TEST_STEPS}}
980
985
 
981
986
  {{SCREENSHOTS_SECTION}}
982
987
 
983
- ## Security Impact
988
+ ## 🔒 Security Impact
984
989
 
985
990
  {{SECURITY_IMPACT}}
986
991
 
@@ -992,33 +997,33 @@ IMPORTANTE: Responde directamente con este formato EXACTO usando 5 BACKTICKS (m
992
997
 
993
998
  {{OBSERVABILITY}}
994
999
 
995
- ## �📊 Validación
1000
+ ## 📊 Validation
996
1001
 
997
- | Aspecto | Resultado |
998
- | ----------- | ---------------------------------------------------------------- |
999
- | 🧪 Tests | {{TESTS_PASSED}}/{{TESTS_TOTAL}} passing (+{{TESTS_NEW}} nuevos) |
1000
- | 📈 Coverage | {{COVERAGE}}% |
1001
- | 🔍 Lint | ✅ Sin errores |
1002
- | 📝 Docs | {{DOCS_STATUS}} |
1002
+ | Aspect | Result |
1003
+ | ----------- | ------------------------------------------------------------- |
1004
+ | 🧪 Tests | {{TESTS_PASSED}}/{{TESTS_TOTAL}} passing (+{{TESTS_NEW}} new) |
1005
+ | 📈 Coverage | {{COVERAGE}}% |
1006
+ | 🔍 Lint | ✅ No errors |
1007
+ | 📝 Docs | {{DOCS_STATUS}} |
1003
1008
 
1004
- ## 📈 Métricas
1009
+ ## 📈 Metrics
1005
1010
 
1006
- | Métrica | Valor |
1007
- | ------------------- | ------------------------------------------------------------------------ |
1008
- | 💾 Commits | {{TOTAL_COMMITS}} ([ver commits]({{COMMIT_HASHES_SUMMARY}})) |
1009
- | 📁 Archivos | {{FILES_COUNT}} modificados (+{{LINES_ADDED}}/-{{LINES_DELETED}} líneas) |
1010
- | ⚠️ Breaking Changes | {{BREAKING_CHANGES_STATUS}} |
1011
- | ⏱️ Duración | {{DURATION}} ({{STORY_POINTS}} SP) |
1011
+ | Metric | Value |
1012
+ | ------------------- | -------------------------------------------------------------------- |
1013
+ | 💾 Commits | {{TOTAL_COMMITS}} ([view commits]({{COMMIT_HASHES_SUMMARY}})) |
1014
+ | 📁 Files | {{FILES_COUNT}} modified (+{{LINES_ADDED}}/-{{LINES_DELETED}} lines) |
1015
+ | ⚠️ Breaking Changes | {{BREAKING_CHANGES_STATUS}} |
1016
+ | ⏱️ Duration | {{DURATION}} ({{STORY_POINTS}} SP) |
1012
1017
 
1013
1018
  {{BREAKING_CHANGES_DETAILS}}
1014
1019
 
1015
1020
  {{DEPLOYMENT_NOTES}}
1016
1021
 
1017
- ## 📦 Dependencias
1022
+ ## 📦 Dependencies
1018
1023
 
1019
1024
  {{DEPENDENCIES_SECTION}}
1020
1025
 
1021
- ## 🔗 Referencias
1026
+ ## 🔗 References
1022
1027
 
1023
1028
  - **Commits:** {{COMMIT_HASHES_SUMMARY}}
1024
1029
  - **Platform:** {{PLATFORM}}
@@ -1026,17 +1031,14 @@ IMPORTANTE: Responde directamente con este formato EXACTO usando 5 BACKTICKS (m
1026
1031
 
1027
1032
  ## ✅ Reviewer Checklist
1028
1033
 
1029
- - [ ] El código sigue los estándares del proyecto
1030
- - [ ] La lógica es clara y está bien documentada
1031
- - [ ] Los tests cubren casos críticos y edge cases
1032
- - [ ] No hay riesgos de seguridad o performance
1033
- - [ ] La documentación está actualizada
1034
- - [ ] Los cambios no introducen breaking changes no documentados
1035
- - [ ] El PR es del tamaño adecuado (no demasiado grande)
1034
+ - [ ] Code follows project standards
1035
+ - [ ] Logic is clear and well documented
1036
+ - [ ] Tests cover critical and edge cases
1037
+ - [ ] No security or performance risks
1038
+ - [ ] Documentation is up to date
1039
+ - [ ] No undocumented breaking changes
1040
+ - [ ] PR size is appropriate (not too large)
1036
1041
 
1037
- ---
1038
-
1039
- **Generated by AI Flow**
1040
1042
  \`\`\`\`\`
1041
1043
 
1042
1044
  ---
@@ -1099,9 +1101,6 @@ IMPORTANTE: Responde directamente con este formato EXACTO usando 5 BACKTICKS (m
1099
1101
 
1100
1102
  💡 _Después de crear el PR, reemplaza `[PEGAR_LINK_AQUI]` con el link real._
1101
1103
 
1102
- ---
1103
-
1104
- _Generado automáticamente por AI Flow • Platform: {{PLATFORM}}_
1105
1104
  \`\`\`\`\`
1106
1105
 
1107
1106
  ---
@@ -47,40 +47,40 @@ This template is used by `/flow-finish` to generate professional Pull Request de
47
47
 
48
48
  ---
49
49
 
50
- ## 🎯 Tipo de Cambio
50
+ ## 🎯 Change Type
51
51
 
52
- - [{{IS_FEATURE}}] ✨ Feature (nueva funcionalidad)
53
- - [{{IS_FIX}}] 🐛 Fix (corrección de bug)
54
- - [{{IS_REFACTOR}}] ♻️ Refactor (sin cambio funcional)
55
- - [{{IS_DOCS}}] 📝 Docs (solo documentación)
56
- - [{{IS_PERF}}] ⚡ Performance (mejora de rendimiento)
57
- - [{{IS_TEST}}] 🧪 Test (agregar/mejorar tests)
52
+ - [{{IS_FEATURE}}] ✨ Feature (new functionality)
53
+ - [{{IS_FIX}}] 🐛 Fix (bug fix)
54
+ - [{{IS_REFACTOR}}] ♻️ Refactor (no functional change)
55
+ - [{{IS_DOCS}}] 📝 Docs (documentation only)
56
+ - [{{IS_PERF}}] ⚡ Performance (improvement)
57
+ - [{{IS_TEST}}] 🧪 Test (add/improve tests)
58
58
 
59
- ## 🎯 Área de Impacto
59
+ ## 🎯 Impact Area
60
60
 
61
61
  **{{IMPACT_AREA}}**
62
62
 
63
- ## 💡 Contexto
63
+ ## 💡 Context
64
64
 
65
65
  {{CONTEXT}}
66
66
 
67
67
  {{RELATED_ISSUES}}
68
68
 
69
- ## ✅ Solución Implementada
69
+ ## ✅ Implemented Solution
70
70
 
71
71
  {{SOLUTION}}
72
72
 
73
- ## 🔧 Cambios Principales
73
+ ## 🔧 Main Changes
74
74
 
75
75
  {{MAIN_CHANGES}}
76
76
 
77
- ## 🧪 Cómo Probar
77
+ ## 🧪 How to Test
78
78
 
79
79
  {{TEST_STEPS}}
80
80
 
81
81
  {{SCREENSHOTS_SECTION}}
82
82
 
83
- ## Security Impact
83
+ ## 🔒 Security Impact
84
84
 
85
85
  {{SECURITY_IMPACT}}
86
86
 
@@ -92,33 +92,33 @@ This template is used by `/flow-finish` to generate professional Pull Request de
92
92
 
93
93
  {{OBSERVABILITY}}
94
94
 
95
- ## �📊 Validación
95
+ ## 📊 Validation
96
96
 
97
- | Aspecto | Resultado |
98
- | ----------- | ---------------------------------------------------------------- |
99
- | 🧪 Tests | {{TESTS_PASSED}}/{{TESTS_TOTAL}} passing (+{{TESTS_NEW}} nuevos) |
100
- | 📈 Coverage | {{COVERAGE}}% |
101
- | 🔍 Lint | ✅ Sin errores |
102
- | 📝 Docs | {{DOCS_STATUS}} |
97
+ | Aspect | Result |
98
+ | ----------- | ------------------------------------------------------------- |
99
+ | 🧪 Tests | {{TESTS_PASSED}}/{{TESTS_TOTAL}} passing (+{{TESTS_NEW}} new) |
100
+ | 📈 Coverage | {{COVERAGE}}% |
101
+ | 🔍 Lint | ✅ No errors |
102
+ | 📝 Docs | {{DOCS_STATUS}} |
103
103
 
104
- ## 📈 Métricas
104
+ ## 📈 Metrics
105
105
 
106
- | Métrica | Valor |
107
- | ------------------- | ------------------------------------------------------------------------ |
108
- | 💾 Commits | {{TOTAL_COMMITS}} ([ver commits]({{COMMIT_HASHES_SUMMARY}})) |
109
- | 📁 Archivos | {{FILES_COUNT}} modificados (+{{LINES_ADDED}}/-{{LINES_DELETED}} líneas) |
110
- | ⚠️ Breaking Changes | {{BREAKING_CHANGES_STATUS}} |
111
- | ⏱️ Duración | {{DURATION}} ({{STORY_POINTS}} SP) |
106
+ | Metric | Value |
107
+ | ------------------- | -------------------------------------------------------------------- |
108
+ | 💾 Commits | {{TOTAL_COMMITS}} ([view commits]({{COMMIT_HASHES_SUMMARY}})) |
109
+ | 📁 Files | {{FILES_COUNT}} modified (+{{LINES_ADDED}}/-{{LINES_DELETED}} lines) |
110
+ | ⚠️ Breaking Changes | {{BREAKING_CHANGES_STATUS}} |
111
+ | ⏱️ Duration | {{DURATION}} ({{STORY_POINTS}} SP) |
112
112
 
113
113
  {{BREAKING_CHANGES_DETAILS}}
114
114
 
115
115
  {{DEPLOYMENT_NOTES}}
116
116
 
117
- ## 📦 Dependencias
117
+ ## 📦 Dependencies
118
118
 
119
119
  {{DEPENDENCIES_SECTION}}
120
120
 
121
- ## 🔗 Referencias
121
+ ## 🔗 References
122
122
 
123
123
  - **Commits:** {{COMMIT_HASHES_SUMMARY}}
124
124
  - **Platform:** {{PLATFORM}}
@@ -126,19 +126,15 @@ This template is used by `/flow-finish` to generate professional Pull Request de
126
126
 
127
127
  ## ✅ Reviewer Checklist
128
128
 
129
- - [ ] El código sigue los estándares del proyecto
130
- - [ ] La lógica es clara y está bien documentada
131
- - [ ] Los tests cubren casos críticos y edge cases
132
- - [ ] No hay riesgos de seguridad o performance
133
- - [ ] La documentación está actualizada
134
- - [ ] Los cambios no introducen breaking changes no documentados
135
- - [ ] El PR es del tamaño adecuado (no demasiado grande)
129
+ - [ ] Code follows project standards
130
+ - [ ] Logic is clear and well documented
131
+ - [ ] Tests cover critical and edge cases
132
+ - [ ] No security or performance risks
133
+ - [ ] Documentation is up to date
134
+ - [ ] No undocumented breaking changes
135
+ - [ ] PR size is appropriate (not too large)
136
136
 
137
137
  {{NEXT_STEPS}}
138
-
139
- ---
140
-
141
- **Generated by AI Flow** • [Learn more](https://github.com/victorvelazquez/ai-flow)
142
138
  ```
143
139
 
144
140
  ---