awc-zns-mtd 2.0.0

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 (130) hide show
  1. package/.editorconfig +21 -0
  2. package/CHANGELOG.md +210 -0
  3. package/LICENSE +21 -0
  4. package/README.md +439 -0
  5. package/docs/examples/example-feature.md +94 -0
  6. package/docs/getting-started/quick-start.md +85 -0
  7. package/docs/guides/agent-guide.md +56 -0
  8. package/docs/guides/workflow-guide.md +49 -0
  9. package/docs/reference/commands-reference.md +93 -0
  10. package/docs/reference/methodology-design.md +193 -0
  11. package/package.json +66 -0
  12. package/src/modules/awc-zns-mtd/agents/architect-senior.agent.yaml +159 -0
  13. package/src/modules/awc-zns-mtd/agents/developer-pro.agent.yaml +197 -0
  14. package/src/modules/awc-zns-mtd/agents/qa-specialist.agent.yaml +225 -0
  15. package/src/modules/awc-zns-mtd/agents/zen-master.agent.yaml +142 -0
  16. package/src/modules/awc-zns-mtd/config.yaml +412 -0
  17. package/src/modules/awc-zns-mtd/templates/PRD-template.md +490 -0
  18. package/src/modules/awc-zns-mtd/templates/arquitectura-conceptual.md +431 -0
  19. package/src/modules/awc-zns-mtd/templates/cotizacion.md +333 -0
  20. package/src/modules/awc-zns-mtd/templates/discovery-notes.md +205 -0
  21. package/src/modules/awc-zns-mtd/templates/kickoff-agenda.md +297 -0
  22. package/src/modules/awc-zns-mtd/templates/oferta-comercial.md +279 -0
  23. package/src/modules/awc-zns-mtd/templates/viabilidad.md +281 -0
  24. package/src/modules/awc-zns-mtd/workflows/analisis-flow/workflow.yaml +500 -0
  25. package/src/modules/awc-zns-mtd/workflows/comercial-flow/workflow.yaml +444 -0
  26. package/src/modules/awc-zns-mtd/workflows/deployment-flow/workflow.yaml +395 -0
  27. package/src/modules/awc-zns-mtd/workflows/development-flow/workflow.yaml +321 -0
  28. package/src/modules/awc-zns-mtd/workflows/enterprise-flow/workflow.yaml +276 -0
  29. package/src/modules/awc-zns-mtd/workflows/inception-flow/workflow.yaml +588 -0
  30. package/src/modules/awc-zns-mtd/workflows/planificacion-flow/workflow.yaml +526 -0
  31. package/src/modules/awc-zns-mtd/workflows/qa-flow/workflow.yaml +291 -0
  32. package/src/modules/awc-zns-mtd/workflows/quick-flow/workflow.yaml +121 -0
  33. package/src/modules/awc-zns-mtd/workflows/standard-flow/workflow.yaml +181 -0
  34. package/src/modules/awc-zns-mtd/workflows/support-flow/workflow.yaml +438 -0
  35. package/src/modules/custom-agents/ARCHITECTURE.md +566 -0
  36. package/src/modules/custom-agents/CONVERSION_SUMMARY.md +315 -0
  37. package/src/modules/custom-agents/FINAL_SUMMARY.md +296 -0
  38. package/src/modules/custom-agents/README.md +628 -0
  39. package/src/modules/custom-agents/USAGE_GUIDE.md +306 -0
  40. package/src/modules/custom-agents/agents/aspnet-core-architect-senior.agent.yaml +368 -0
  41. package/src/modules/custom-agents/agents/backend-audit-master.agent.yaml +376 -0
  42. package/src/modules/custom-agents/agents/backend-java-senior.agent.yaml +606 -0
  43. package/src/modules/custom-agents/agents/c4-diagram-specialist.agent.yaml +345 -0
  44. package/src/modules/custom-agents/agents/consolidation-context-master.agent.yaml +318 -0
  45. package/src/modules/custom-agents/agents/cost-estimator-senior.agent.yaml +369 -0
  46. package/src/modules/custom-agents/agents/database-engineer-senior.agent.yaml +331 -0
  47. package/src/modules/custom-agents/agents/devsecops-onpremise-senior.agent.yaml +370 -0
  48. package/src/modules/custom-agents/agents/document-export-specialist.agent.yaml +355 -0
  49. package/src/modules/custom-agents/agents/dotnet-core-senior.agent.yaml +258 -0
  50. package/src/modules/custom-agents/agents/frontend-audit-master.agent.yaml +356 -0
  51. package/src/modules/custom-agents/agents/frontend-react-senior.agent.yaml +470 -0
  52. package/src/modules/custom-agents/agents/obsolescence-analyst-senior.agent.yaml +339 -0
  53. package/src/modules/custom-agents/agents/php-senior.agent.yaml +277 -0
  54. package/src/modules/custom-agents/agents/product-owner-business-analyst.agent.yaml +315 -0
  55. package/src/modules/custom-agents/agents/prompt-architect-senior.agent.yaml +398 -0
  56. package/src/modules/custom-agents/agents/prompt-engineer-senior.agent.yaml +431 -0
  57. package/src/modules/custom-agents/agents/python-senior.agent.yaml +347 -0
  58. package/src/modules/custom-agents/agents/react-native-senior.agent.yaml +292 -0
  59. package/src/modules/custom-agents/agents/solution-architect-senior.agent.yaml +496 -0
  60. package/src/modules/custom-agents/agents/technical-stories-architect.agent.yaml +402 -0
  61. package/src/modules/custom-agents/agents/validation-quality-master.agent.yaml +377 -0
  62. package/src/modules/custom-agents/cli/.awc-agents/aspnet-core-architect-senior.agent.yaml +368 -0
  63. package/src/modules/custom-agents/cli/.awc-agents/backend-audit-master.agent.yaml +376 -0
  64. package/src/modules/custom-agents/cli/.awc-agents/backend-java-senior.agent.yaml +606 -0
  65. package/src/modules/custom-agents/cli/.awc-agents/c4-diagram-specialist.agent.yaml +345 -0
  66. package/src/modules/custom-agents/cli/.awc-agents/consolidation-context-master.agent.yaml +318 -0
  67. package/src/modules/custom-agents/cli/.awc-agents/cost-estimator-senior.agent.yaml +369 -0
  68. package/src/modules/custom-agents/cli/.awc-agents/database-engineer-senior.agent.yaml +331 -0
  69. package/src/modules/custom-agents/cli/.awc-agents/devsecops-onpremise-senior.agent.yaml +370 -0
  70. package/src/modules/custom-agents/cli/.awc-agents/document-export-specialist.agent.yaml +355 -0
  71. package/src/modules/custom-agents/cli/.awc-agents/dotnet-core-senior.agent.yaml +258 -0
  72. package/src/modules/custom-agents/cli/.awc-agents/frontend-audit-master.agent.yaml +356 -0
  73. package/src/modules/custom-agents/cli/.awc-agents/frontend-react-senior.agent.yaml +470 -0
  74. package/src/modules/custom-agents/cli/.awc-agents/obsolescence-analyst-senior.agent.yaml +339 -0
  75. package/src/modules/custom-agents/cli/.awc-agents/php-senior.agent.yaml +277 -0
  76. package/src/modules/custom-agents/cli/.awc-agents/product-owner-business-analyst.agent.yaml +315 -0
  77. package/src/modules/custom-agents/cli/.awc-agents/prompt-architect-senior.agent.yaml +398 -0
  78. package/src/modules/custom-agents/cli/.awc-agents/prompt-engineer-senior.agent.yaml +431 -0
  79. package/src/modules/custom-agents/cli/.awc-agents/python-senior.agent.yaml +347 -0
  80. package/src/modules/custom-agents/cli/.awc-agents/react-native-senior.agent.yaml +292 -0
  81. package/src/modules/custom-agents/cli/.awc-agents/solution-architect-senior.agent.yaml +496 -0
  82. package/src/modules/custom-agents/cli/.awc-agents/technical-stories-architect.agent.yaml +402 -0
  83. package/src/modules/custom-agents/cli/.awc-agents/validation-quality-master.agent.yaml +377 -0
  84. package/src/modules/custom-agents/cli/CHANGELOG.md +77 -0
  85. package/src/modules/custom-agents/cli/LICENSE +21 -0
  86. package/src/modules/custom-agents/cli/PUBLISH.md +292 -0
  87. package/src/modules/custom-agents/cli/README.md +333 -0
  88. package/src/modules/custom-agents/cli/agents-data/aspnet-core-architect-senior.agent.yaml +368 -0
  89. package/src/modules/custom-agents/cli/agents-data/backend-audit-master.agent.yaml +376 -0
  90. package/src/modules/custom-agents/cli/agents-data/backend-java-senior.agent.yaml +606 -0
  91. package/src/modules/custom-agents/cli/agents-data/c4-diagram-specialist.agent.yaml +345 -0
  92. package/src/modules/custom-agents/cli/agents-data/consolidation-context-master.agent.yaml +318 -0
  93. package/src/modules/custom-agents/cli/agents-data/cost-estimator-senior.agent.yaml +369 -0
  94. package/src/modules/custom-agents/cli/agents-data/database-engineer-senior.agent.yaml +331 -0
  95. package/src/modules/custom-agents/cli/agents-data/devsecops-onpremise-senior.agent.yaml +370 -0
  96. package/src/modules/custom-agents/cli/agents-data/document-export-specialist.agent.yaml +355 -0
  97. package/src/modules/custom-agents/cli/agents-data/dotnet-core-senior.agent.yaml +258 -0
  98. package/src/modules/custom-agents/cli/agents-data/frontend-audit-master.agent.yaml +356 -0
  99. package/src/modules/custom-agents/cli/agents-data/frontend-react-senior.agent.yaml +470 -0
  100. package/src/modules/custom-agents/cli/agents-data/obsolescence-analyst-senior.agent.yaml +339 -0
  101. package/src/modules/custom-agents/cli/agents-data/php-senior.agent.yaml +277 -0
  102. package/src/modules/custom-agents/cli/agents-data/product-owner-business-analyst.agent.yaml +315 -0
  103. package/src/modules/custom-agents/cli/agents-data/prompt-architect-senior.agent.yaml +398 -0
  104. package/src/modules/custom-agents/cli/agents-data/prompt-engineer-senior.agent.yaml +431 -0
  105. package/src/modules/custom-agents/cli/agents-data/python-senior.agent.yaml +347 -0
  106. package/src/modules/custom-agents/cli/agents-data/react-native-senior.agent.yaml +292 -0
  107. package/src/modules/custom-agents/cli/agents-data/solution-architect-senior.agent.yaml +496 -0
  108. package/src/modules/custom-agents/cli/agents-data/technical-stories-architect.agent.yaml +402 -0
  109. package/src/modules/custom-agents/cli/agents-data/validation-quality-master.agent.yaml +377 -0
  110. package/src/modules/custom-agents/cli/awc-agent.js +372 -0
  111. package/src/modules/custom-agents/cli/config.yaml +478 -0
  112. package/src/modules/custom-agents/cli/package.json +63 -0
  113. package/src/modules/custom-agents/config.yaml +478 -0
  114. package/templates/.github/copilot-instructions.md +120 -0
  115. package/tools/cli/awc-cli.js +137 -0
  116. package/tools/cli/commands/config.js +148 -0
  117. package/tools/cli/commands/init.js +147 -0
  118. package/tools/cli/commands/install.js +188 -0
  119. package/tools/cli/commands/status.js +128 -0
  120. package/tools/cli/commands/validate.js +147 -0
  121. package/tools/cli/commands/version.js +49 -0
  122. package/tools/cli/utils/console-logger.js +153 -0
  123. package/tools/cli/utils/file-utils.js +178 -0
  124. package/tools/cli/utils/project-analyzer.js +280 -0
  125. package/tools/cli/utils/version.js +126 -0
  126. package/tools/version/README.md +272 -0
  127. package/tools/version/changelog-manager.js +288 -0
  128. package/tools/version/update-checker.js +234 -0
  129. package/tools/version/version-bump.js +90 -0
  130. package/tools/version/version-manager.js +224 -0
@@ -0,0 +1,500 @@
1
+ workflow:
2
+ name: "Análisis Técnico Profundo"
3
+ id: "analisis-flow"
4
+ version: "1.0.0"
5
+ description: "Auditoría técnica completa de proyectos existentes para identificar deuda técnica, riesgos y oportunidades de mejora"
6
+
7
+ metadata:
8
+ duration: "1-2 semanas"
9
+ complexity: "high"
10
+ team_size: "2-4 personas"
11
+ output_format: "Technical Audit Report"
12
+
13
+ phases:
14
+ - id: "code-audit"
15
+ name: "Auditoría de Código"
16
+ duration: "2-3 días"
17
+
18
+ - id: "architecture-review"
19
+ name: "Revisión de Arquitectura"
20
+ duration: "2-3 días"
21
+
22
+ - id: "technical-debt"
23
+ name: "Análisis de Deuda Técnica"
24
+ duration: "2-3 días"
25
+
26
+ - id: "recommendations"
27
+ name: "Recomendaciones y Plan de Acción"
28
+ duration: "1-2 días"
29
+
30
+ agents:
31
+ primary:
32
+ - "solution-architect-senior"
33
+ - "tech-lead-full-stack"
34
+ - "code-reviewer"
35
+
36
+ supporting:
37
+ - "security-specialist"
38
+ - "performance-engineer"
39
+ - "refactoring-specialist"
40
+
41
+ steps:
42
+ # === FASE 1: AUDITORÍA DE CÓDIGO ===
43
+ - id: "audit-01"
44
+ name: "Escaneo Automatizado de Código"
45
+ phase: "code-audit"
46
+ agent: "code-reviewer"
47
+ duration: "4 horas"
48
+
49
+ actions:
50
+ - type: "analyze"
51
+ description: "Ejecutar análisis estático de código (SonarQube/ESLint/Checkstyle)"
52
+ tools:
53
+ - "SonarQube"
54
+ - "ESLint"
55
+ - "PMD"
56
+ - "SpotBugs"
57
+
58
+ - type: "analyze"
59
+ description: "Detectar code smells y anti-patterns"
60
+ metrics:
61
+ - "Cyclomatic Complexity > 15"
62
+ - "Code Duplication > 5%"
63
+ - "Method Length > 50 líneas"
64
+ - "Class Size > 500 líneas"
65
+
66
+ - type: "document"
67
+ description: "Generar reporte de issues por severidad"
68
+ output: "code-analysis-report.md"
69
+
70
+ deliverables:
71
+ - "Lista priorizada de code smells"
72
+ - "Métricas de calidad de código"
73
+ - "Gráficos de distribución de issues"
74
+
75
+ - id: "audit-02"
76
+ name: "Revisión Manual de Código Crítico"
77
+ phase: "code-audit"
78
+ agent: "tech-lead-full-stack"
79
+ duration: "8 horas"
80
+
81
+ actions:
82
+ - type: "review"
83
+ description: "Revisar módulos core y lógica de negocio crítica"
84
+ focus_areas:
85
+ - "Authentication & Authorization"
86
+ - "Payment Processing"
87
+ - "Data Validation"
88
+ - "Error Handling"
89
+
90
+ - type: "evaluate"
91
+ description: "Evaluar adherencia a mejores prácticas"
92
+ criteria:
93
+ - "SOLID Principles"
94
+ - "DRY (Don't Repeat Yourself)"
95
+ - "KISS (Keep It Simple)"
96
+ - "Design Patterns correctos"
97
+
98
+ - type: "identify"
99
+ description: "Identificar refactorizaciones de alto impacto"
100
+
101
+ deliverables:
102
+ - "Mapa de módulos críticos"
103
+ - "Lista de refactorizaciones recomendadas"
104
+ - "Ejemplos de código problemático con sugerencias"
105
+
106
+ - id: "audit-03"
107
+ name: "Análisis de Dependencias"
108
+ phase: "code-audit"
109
+ agent: "tech-lead-full-stack"
110
+ duration: "4 horas"
111
+
112
+ actions:
113
+ - type: "analyze"
114
+ description: "Mapear dependencias del proyecto"
115
+ tools:
116
+ - "npm audit"
117
+ - "OWASP Dependency-Check"
118
+ - "Snyk"
119
+
120
+ - type: "identify"
121
+ description: "Detectar dependencias obsoletas o vulnerables"
122
+ checks:
123
+ - "Versiones deprecadas"
124
+ - "CVEs conocidos"
125
+ - "Licencias incompatibles"
126
+ - "Dependencias no utilizadas"
127
+
128
+ deliverables:
129
+ - "Dependency tree diagram"
130
+ - "Lista de dependencias vulnerables (CVE score)"
131
+ - "Plan de actualización de dependencias"
132
+
133
+ # === FASE 2: REVISIÓN DE ARQUITECTURA ===
134
+ - id: "arch-01"
135
+ name: "Documentación de Arquitectura Actual"
136
+ phase: "architecture-review"
137
+ agent: "solution-architect-senior"
138
+ duration: "8 horas"
139
+
140
+ actions:
141
+ - type: "document"
142
+ description: "Crear diagramas C4 del sistema actual"
143
+ levels:
144
+ - "Level 1: System Context"
145
+ - "Level 2: Containers"
146
+ - "Level 3: Components (módulos clave)"
147
+
148
+ - type: "analyze"
149
+ description: "Mapear flujos de datos críticos"
150
+
151
+ - type: "identify"
152
+ description: "Identificar patrones arquitectónicos utilizados"
153
+ patterns:
154
+ - "Layered Architecture"
155
+ - "Microservices"
156
+ - "Event-Driven"
157
+ - "CQRS"
158
+
159
+ deliverables:
160
+ - "Diagramas C4 (3 niveles)"
161
+ - "Documentación de patrones arquitectónicos"
162
+ - "Mapa de integraciones externas"
163
+
164
+ - id: "arch-02"
165
+ name: "Evaluación de Escalabilidad"
166
+ phase: "architecture-review"
167
+ agent: "performance-engineer"
168
+ duration: "6 horas"
169
+
170
+ actions:
171
+ - type: "analyze"
172
+ description: "Evaluar capacidad de escalamiento horizontal/vertical"
173
+
174
+ - type: "test"
175
+ description: "Ejecutar tests de carga (opcional si hay ambiente de staging)"
176
+ tools:
177
+ - "JMeter"
178
+ - "Gatling"
179
+ - "K6"
180
+
181
+ - type: "identify"
182
+ description: "Identificar cuellos de botella de performance"
183
+ areas:
184
+ - "Database queries (N+1 problems)"
185
+ - "API response times"
186
+ - "Memory leaks"
187
+ - "CPU-intensive operations"
188
+
189
+ deliverables:
190
+ - "Performance baseline report"
191
+ - "Bottleneck analysis"
192
+ - "Recomendaciones de optimización"
193
+
194
+ - id: "arch-03"
195
+ name: "Auditoría de Seguridad"
196
+ phase: "architecture-review"
197
+ agent: "security-specialist"
198
+ duration: "8 horas"
199
+
200
+ actions:
201
+ - type: "audit"
202
+ description: "Revisar implementación de seguridad"
203
+ checklist:
204
+ - "OWASP Top 10 compliance"
205
+ - "Authentication/Authorization robustness"
206
+ - "Data encryption (at rest & in transit)"
207
+ - "Input validation & sanitization"
208
+ - "Session management"
209
+ - "Secrets management"
210
+
211
+ - type: "test"
212
+ description: "Ejecutar escaneo de vulnerabilidades"
213
+ tools:
214
+ - "OWASP ZAP"
215
+ - "Burp Suite"
216
+ - "Snyk Code"
217
+
218
+ - type: "review"
219
+ description: "Revisar configuraciones de infraestructura"
220
+ focus:
221
+ - "Firewall rules"
222
+ - "IAM policies"
223
+ - "Database access controls"
224
+ - "API rate limiting"
225
+
226
+ deliverables:
227
+ - "Security audit report"
228
+ - "Lista de vulnerabilidades (clasificadas por CVSS)"
229
+ - "Plan de remediación priorizado"
230
+
231
+ # === FASE 3: DEUDA TÉCNICA ===
232
+ - id: "debt-01"
233
+ name: "Cuantificación de Deuda Técnica"
234
+ phase: "technical-debt"
235
+ agent: "tech-lead-full-stack"
236
+ duration: "6 horas"
237
+
238
+ actions:
239
+ - type: "calculate"
240
+ description: "Calcular métricas de deuda técnica"
241
+ metrics:
242
+ - "Technical Debt Ratio (SonarQube)"
243
+ - "Code Coverage (%)"
244
+ - "Duplicated Lines (%)"
245
+ - "Complexity Distribution"
246
+
247
+ - type: "estimate"
248
+ description: "Estimar costo de remediación"
249
+ formula: "Debt Hours = (Issues × Avg Fix Time)"
250
+
251
+ - type: "prioritize"
252
+ description: "Priorizar deuda por impacto/esfuerzo"
253
+ matrix: "Eisenhower Matrix (Urgente/Importante)"
254
+
255
+ deliverables:
256
+ - "Technical Debt Dashboard"
257
+ - "Estimación de esfuerzo de remediación (horas)"
258
+ - "Matriz de priorización"
259
+
260
+ - id: "debt-02"
261
+ name: "Análisis de Tests y Cobertura"
262
+ phase: "technical-debt"
263
+ agent: "qa-test-automation-engineer"
264
+ duration: "6 horas"
265
+
266
+ actions:
267
+ - type: "analyze"
268
+ description: "Evaluar estrategia de testing actual"
269
+ metrics:
270
+ - "Unit Test Coverage (%)"
271
+ - "Integration Test Coverage (%)"
272
+ - "E2E Test Coverage (%)"
273
+ - "Test Execution Time"
274
+
275
+ - type: "identify"
276
+ description: "Identificar gaps de cobertura"
277
+ focus:
278
+ - "Módulos sin tests"
279
+ - "Código legacy sin cobertura"
280
+ - "Happy paths vs edge cases"
281
+
282
+ - type: "recommend"
283
+ description: "Recomendar mejoras en testing strategy"
284
+ improvements:
285
+ - "Aumentar cobertura a >80%"
286
+ - "Implementar mutation testing"
287
+ - "Automatizar E2E tests"
288
+
289
+ deliverables:
290
+ - "Test coverage report"
291
+ - "Gap analysis de testing"
292
+ - "Plan de mejora de testing"
293
+
294
+ - id: "debt-03"
295
+ name: "Documentación Técnica Assessment"
296
+ phase: "technical-debt"
297
+ agent: "documentation-specialist"
298
+ duration: "4 horas"
299
+
300
+ actions:
301
+ - type: "audit"
302
+ description: "Evaluar calidad de documentación existente"
303
+ check:
304
+ - "README actualizado"
305
+ - "API documentation (Swagger/OpenAPI)"
306
+ - "Architecture Decision Records (ADRs)"
307
+ - "Runbooks de deployment"
308
+ - "Guías de troubleshooting"
309
+
310
+ - type: "identify"
311
+ description: "Identificar documentación faltante o desactualizada"
312
+
313
+ - type: "recommend"
314
+ description: "Crear plan de documentación"
315
+
316
+ deliverables:
317
+ - "Documentation audit report"
318
+ - "Lista de documentación faltante"
319
+ - "Plan de creación de docs"
320
+
321
+ # === FASE 4: RECOMENDACIONES ===
322
+ - id: "rec-01"
323
+ name: "Generación de Roadmap de Mejoras"
324
+ phase: "recommendations"
325
+ agent: "solution-architect-senior"
326
+ duration: "8 horas"
327
+
328
+ actions:
329
+ - type: "synthesize"
330
+ description: "Consolidar findings de todas las auditorías"
331
+
332
+ - type: "prioritize"
333
+ description: "Priorizar recomendaciones por ROI"
334
+ criteria:
335
+ - "Impacto en negocio (High/Medium/Low)"
336
+ - "Esfuerzo de implementación (horas)"
337
+ - "Riesgo de no hacer (High/Medium/Low)"
338
+
339
+ - type: "plan"
340
+ description: "Crear roadmap de mejoras por fases"
341
+ phases:
342
+ - "Quick Wins (1-2 semanas)"
343
+ - "Medium-term (1-3 meses)"
344
+ - "Long-term (3-6 meses)"
345
+
346
+ deliverables:
347
+ - "Executive Summary Report (5-10 páginas)"
348
+ - "Roadmap visual de mejoras (Gantt/Timeline)"
349
+ - "Budget estimation de remediación"
350
+
351
+ - id: "rec-02"
352
+ name: "Presentación de Findings a Stakeholders"
353
+ phase: "recommendations"
354
+ agent: "solution-architect-senior"
355
+ duration: "2 horas"
356
+
357
+ actions:
358
+ - type: "prepare"
359
+ description: "Crear presentación ejecutiva"
360
+ slides:
361
+ - "Executive Summary"
362
+ - "Current State Assessment"
363
+ - "Key Findings (Top 10 issues)"
364
+ - "Recommendations & Roadmap"
365
+ - "Budget & Timeline"
366
+ - "Next Steps"
367
+
368
+ - type: "present"
369
+ description: "Sesión de presentación con Q&A"
370
+ attendees:
371
+ - "CTO/VP Engineering"
372
+ - "Product Owner"
373
+ - "Tech Leads"
374
+ - "Stakeholders clave"
375
+
376
+ - type: "align"
377
+ description: "Alinear prioridades con stakeholders"
378
+
379
+ deliverables:
380
+ - "PowerPoint/PDF presentation"
381
+ - "Video recording de la presentación"
382
+ - "Acta de acuerdos y próximos pasos"
383
+
384
+ deliverables:
385
+ primary:
386
+ - name: "Technical Audit Report"
387
+ description: "Reporte ejecutivo completo (30-50 páginas)"
388
+ sections:
389
+ - "Executive Summary"
390
+ - "Code Quality Analysis"
391
+ - "Architecture Review"
392
+ - "Security Audit"
393
+ - "Technical Debt Assessment"
394
+ - "Performance Analysis"
395
+ - "Testing Strategy Review"
396
+ - "Recommendations & Roadmap"
397
+ format: "PDF + Markdown"
398
+
399
+ - name: "Remediation Roadmap"
400
+ description: "Plan de acción priorizado con timelines"
401
+ format: "Gantt Chart + Excel"
402
+
403
+ - name: "Budget Estimation"
404
+ description: "Estimación de costos de remediación"
405
+ format: "Spreadsheet"
406
+
407
+ supporting:
408
+ - "Code analysis reports (SonarQube, ESLint)"
409
+ - "Dependency audit (npm audit, Snyk)"
410
+ - "Security scan results (OWASP ZAP)"
411
+ - "Performance test results (JMeter)"
412
+ - "C4 architecture diagrams"
413
+ - "Test coverage reports"
414
+
415
+ metrics:
416
+ quality:
417
+ - name: "Technical Debt Ratio"
418
+ target: "< 5%"
419
+ critical_threshold: "> 20%"
420
+
421
+ - name: "Code Coverage"
422
+ target: "> 80%"
423
+ critical_threshold: "< 50%"
424
+
425
+ - name: "Critical Security Issues"
426
+ target: "0"
427
+ critical_threshold: "> 5"
428
+
429
+ - name: "High-Priority Code Smells"
430
+ target: "< 10"
431
+ critical_threshold: "> 50"
432
+
433
+ performance:
434
+ - name: "P95 Response Time"
435
+ target: "< 500ms"
436
+ critical_threshold: "> 2s"
437
+
438
+ - name: "Error Rate"
439
+ target: "< 0.1%"
440
+ critical_threshold: "> 1%"
441
+
442
+ best_practices:
443
+ - "Ejecutar análisis en rama separada (no en main/develop)"
444
+ - "Involucrar al equipo actual en el proceso (no solo auditar desde fuera)"
445
+ - "Priorizar findings por impacto en negocio, no solo por severidad técnica"
446
+ - "Crear plan de remediación realista (no intentar arreglar todo a la vez)"
447
+ - "Automatizar auditorías para ejecución periódica (trimestral/semestral)"
448
+ - "Documentar decisiones arquitectónicas previas antes de recomendar cambios"
449
+
450
+ templates:
451
+ - "technical-audit-report.md"
452
+ - "code-review-checklist.md"
453
+ - "security-audit-checklist.md"
454
+ - "remediation-roadmap.xlsx"
455
+ - "architecture-c4-template.md"
456
+
457
+ tools:
458
+ code_analysis:
459
+ - "SonarQube"
460
+ - "ESLint"
461
+ - "PMD"
462
+ - "SpotBugs"
463
+ - "Checkstyle"
464
+
465
+ security:
466
+ - "OWASP ZAP"
467
+ - "Snyk"
468
+ - "Burp Suite"
469
+ - "OWASP Dependency-Check"
470
+
471
+ performance:
472
+ - "JMeter"
473
+ - "Gatling"
474
+ - "K6"
475
+ - "Lighthouse"
476
+
477
+ documentation:
478
+ - "Structurizr (C4 diagrams)"
479
+ - "Mermaid"
480
+ - "PlantUML"
481
+
482
+ risks:
483
+ - risk: "Resistencia del equipo actual a findings negativos"
484
+ mitigation: "Enfocar en mejoras, no en culpas. Sesiones colaborativas."
485
+
486
+ - risk: "Auditoría demasiado superficial"
487
+ mitigation: "Dedicar tiempo suficiente (mínimo 1 semana). No apurar."
488
+
489
+ - risk: "Recomendaciones no accionables"
490
+ mitigation: "Priorizar por ROI. Crear plan incremental realista."
491
+
492
+ - risk: "Falta de acceso a código/infraestructura"
493
+ mitigation: "Coordinar accesos antes de iniciar. Firmar NDAs si es necesario."
494
+
495
+ success_criteria:
496
+ - "Roadmap de mejoras aprobado por stakeholders"
497
+ - "Top 10 issues críticos identificados y priorizados"
498
+ - "Plan de remediación con budget y timeline acordados"
499
+ - "Equipo de desarrollo alineado con recomendaciones"
500
+ - "Baseline de métricas establecido para seguimiento"