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,438 @@
1
+ workflow:
2
+ name: "Support Flow - Soporte y Mantenimiento Post-Lanzamiento"
3
+ id: "support-flow"
4
+ version: "1.0.0"
5
+ description: "Workflow de soporte técnico, bug fixing y mantenimiento evolutivo"
6
+
7
+ metadata:
8
+ duration: "Continuo (post-lanzamiento)"
9
+ complexity: "medium"
10
+ team_size: "1-3 personas (rotation)"
11
+
12
+ phases:
13
+ - id: "incident-response"
14
+ name: "Incident Response"
15
+
16
+ - id: "bug-fixing"
17
+ name: "Bug Fixing"
18
+
19
+ - id: "maintenance"
20
+ name: "Maintenance & Updates"
21
+
22
+ - id: "monitoring"
23
+ name: "Monitoring & Optimization"
24
+
25
+ agents:
26
+ primary:
27
+ - "support-engineer"
28
+ - "senior-backend-developer"
29
+ - "devops-cloud-engineer"
30
+
31
+ supporting:
32
+ - "qa-test-automation-engineer"
33
+ - "database-specialist"
34
+ - "security-specialist"
35
+
36
+ steps:
37
+ # === INCIDENT RESPONSE ===
38
+ - id: "support-01"
39
+ name: "Incident Detection & Triage"
40
+ phase: "incident-response"
41
+ agent: "support-engineer"
42
+ duration: "5-15 minutos"
43
+
44
+ detection_channels:
45
+ - "Monitoring alerts (Datadog, New Relic)"
46
+ - "User reports (support tickets)"
47
+ - "Error tracking (Sentry, Rollbar)"
48
+ - "Social media mentions"
49
+
50
+ actions:
51
+ - type: "detect"
52
+ description: "Detectar y confirmar el incidente"
53
+
54
+ - type: "assess"
55
+ description: "Evaluar severidad del incidente"
56
+ severity_levels:
57
+ P0_critical:
58
+ description: "Sistema caído, pérdida de datos, security breach"
59
+ sla: "Respuesta inmediata (< 15 min)"
60
+ escalation: "Pager duty, todos on-call"
61
+
62
+ P1_high:
63
+ description: "Feature crítica no funciona, afecta a muchos usuarios"
64
+ sla: "Respuesta en < 1 hora"
65
+ escalation: "On-call engineer"
66
+
67
+ P2_medium:
68
+ description: "Feature secundaria no funciona, workaround disponible"
69
+ sla: "Respuesta en < 4 horas"
70
+ escalation: "Siguiente business day"
71
+
72
+ P3_low:
73
+ description: "Bugs menores, mejoras"
74
+ sla: "Respuesta en < 24 horas"
75
+ escalation: "Backlog para próximo sprint"
76
+
77
+ - type: "communicate"
78
+ description: "Notificar a stakeholders según severidad"
79
+
80
+ deliverables:
81
+ - "Incident ticket creado"
82
+ - "Severidad asignada"
83
+ - "Stakeholders notificados"
84
+
85
+ - id: "support-02"
86
+ name: "Incident Investigation"
87
+ phase: "incident-response"
88
+ agent: "senior-backend-developer"
89
+ duration: "30 min - 4 horas"
90
+
91
+ actions:
92
+ - type: "investigate"
93
+ description: "Investigar causa raíz"
94
+ tools:
95
+ - "Application logs (CloudWatch, ELK)"
96
+ - "Error tracking (Sentry)"
97
+ - "Database queries"
98
+ - "APM tools (New Relic, Datadog)"
99
+
100
+ - type: "reproduce"
101
+ description: "Reproducir el issue en dev/staging"
102
+
103
+ - type: "diagnose"
104
+ description: "Identificar causa raíz"
105
+
106
+ deliverables:
107
+ - "Root cause identified"
108
+ - "Reproduction steps"
109
+
110
+ - id: "support-03"
111
+ name: "Incident Resolution"
112
+ phase: "incident-response"
113
+ agent: "senior-backend-developer"
114
+ duration: "Variable según severidad"
115
+
116
+ actions:
117
+ - type: "fix"
118
+ description: "Implementar fix"
119
+ approach:
120
+ - "Hotfix branch desde main/production"
121
+ - "Minimal change principle (solo fix el issue)"
122
+ - "Emergency code review (1 approver)"
123
+
124
+ - type: "test"
125
+ description: "Testing rápido pero riguroso"
126
+ focus: "Feature afectada + regression crítico"
127
+
128
+ - type: "deploy"
129
+ description: "Hotfix deployment a producción"
130
+ method: "Fast-track deployment (skip some stages si P0)"
131
+
132
+ - type: "verify"
133
+ description: "Verificar que el issue está resuelto"
134
+
135
+ deliverables:
136
+ - "Hotfix desplegado"
137
+ - "Issue resuelto"
138
+
139
+ - id: "support-04"
140
+ name: "Post-Incident Review"
141
+ phase: "incident-response"
142
+ agent: "tech-lead-full-stack"
143
+ duration: "1-2 horas"
144
+ when: "Después de incidentes P0/P1"
145
+
146
+ actions:
147
+ - type: "document"
148
+ description: "Documentar post-mortem"
149
+ sections:
150
+ - "Timeline of events"
151
+ - "Root cause analysis"
152
+ - "Impact assessment"
153
+ - "Actions taken"
154
+ - "Lessons learned"
155
+ - "Action items (preventive measures)"
156
+
157
+ - type: "improve"
158
+ description: "Implementar mejoras para prevenir recurrencia"
159
+ examples:
160
+ - "Agregar monitoring/alerting"
161
+ - "Agregar tests para edge case"
162
+ - "Refactorizar código problemático"
163
+
164
+ deliverables:
165
+ - "Post-mortem document"
166
+ - "Action items para prevención"
167
+
168
+ # === BUG FIXING ===
169
+ - id: "support-05"
170
+ name: "Bug Triage & Prioritization"
171
+ phase: "bug-fixing"
172
+ agent: "product-owner-business-analyst"
173
+ duration: "30 minutos"
174
+ cadence: "Diario o bi-weekly"
175
+
176
+ actions:
177
+ - type: "review"
178
+ description: "Revisar bugs reportados"
179
+
180
+ - type: "prioritize"
181
+ description: "Priorizar bugs por impacto"
182
+ matrix:
183
+ - "Severity (P0-P3)"
184
+ - "Frequency (afecta a cuántos usuarios)"
185
+ - "Workaround available (sí/no)"
186
+
187
+ - type: "assign"
188
+ description: "Asignar a sprint o backlog"
189
+ rules:
190
+ - "P0/P1: Hotfix inmediato"
191
+ - "P2: Próximo sprint"
192
+ - "P3: Backlog (si tiene sentido)"
193
+
194
+ deliverables:
195
+ - "Bugs priorizados"
196
+ - "Bugs asignados a sprint"
197
+
198
+ - id: "support-06"
199
+ name: "Bug Fix Development"
200
+ phase: "bug-fixing"
201
+ agent: "senior-backend-developer"
202
+ duration: "Variable"
203
+
204
+ actions:
205
+ - type: "reproduce"
206
+ description: "Reproducir bug localmente"
207
+
208
+ - type: "fix"
209
+ description: "Implementar fix"
210
+ best_practice: "Escribir test que reproduce el bug primero (TDD)"
211
+
212
+ - type: "test"
213
+ description: "Verificar fix + regression"
214
+
215
+ - type: "pr"
216
+ description: "Code review normal (no hotfix)"
217
+
218
+ deliverables:
219
+ - "Bug fix PR"
220
+ - "Test que valida el fix"
221
+
222
+ # === MAINTENANCE ===
223
+ - id: "support-07"
224
+ name: "Dependency Updates"
225
+ phase: "maintenance"
226
+ agent: "devops-cloud-engineer"
227
+ duration: "2-4 horas"
228
+ cadence: "Mensual"
229
+
230
+ actions:
231
+ - type: "scan"
232
+ description: "Escanear dependencias obsoletas/vulnerables"
233
+ tools:
234
+ - "npm audit"
235
+ - "Snyk"
236
+ - "Dependabot"
237
+
238
+ - type: "update"
239
+ description: "Actualizar dependencias"
240
+ approach:
241
+ - "Patch versions: auto-update (bajo riesgo)"
242
+ - "Minor versions: revisar changelog, update con testing"
243
+ - "Major versions: spike técnico, puede requerir refactor"
244
+
245
+ - type: "test"
246
+ description: "Regression testing completo"
247
+
248
+ deliverables:
249
+ - "Dependencies actualizadas"
250
+ - "Security vulnerabilities resueltas"
251
+
252
+ - id: "support-08"
253
+ name: "Performance Optimization"
254
+ phase: "maintenance"
255
+ agent: "performance-engineer"
256
+ duration: "1-2 días"
257
+ cadence: "Trimestral o cuando hay degradación"
258
+
259
+ actions:
260
+ - type: "analyze"
261
+ description: "Analizar performance metrics"
262
+ look_for:
263
+ - "Slow database queries (N+1 problems)"
264
+ - "Memory leaks"
265
+ - "CPU-intensive operations"
266
+ - "Large payload responses"
267
+
268
+ - type: "optimize"
269
+ description: "Implementar optimizaciones"
270
+ examples:
271
+ - "Add database indexes"
272
+ - "Implement caching"
273
+ - "Optimize queries"
274
+ - "Code refactoring"
275
+
276
+ - type: "measure"
277
+ description: "Medir mejoras"
278
+ compare: "Antes vs Después"
279
+
280
+ deliverables:
281
+ - "Performance optimization PR"
282
+ - "Performance metrics comparison"
283
+
284
+ - id: "support-09"
285
+ name: "Security Patches"
286
+ phase: "maintenance"
287
+ agent: "security-specialist"
288
+ duration: "Variable"
289
+ when: "CVE crítico detectado"
290
+
291
+ actions:
292
+ - type: "assess"
293
+ description: "Evaluar impacto del CVE"
294
+ check: "¿Nuestra app está afectada?"
295
+
296
+ - type: "patch"
297
+ description: "Aplicar security patch"
298
+ priority: "Alta (puede requerir hotfix deployment)"
299
+
300
+ - type: "verify"
301
+ description: "Verificar que vulnerabilidad está mitigada"
302
+
303
+ deliverables:
304
+ - "Security patch aplicado"
305
+
306
+ # === MONITORING ===
307
+ - id: "support-10"
308
+ name: "Health Monitoring & Alerting"
309
+ phase: "monitoring"
310
+ agent: "devops-cloud-engineer"
311
+ duration: "Continuo"
312
+
313
+ key_metrics:
314
+ availability:
315
+ - "Uptime (%)"
316
+ - "Error rate (%)"
317
+
318
+ performance:
319
+ - "P50, P95, P99 latency"
320
+ - "Throughput (requests/sec)"
321
+
322
+ resources:
323
+ - "CPU usage (%)"
324
+ - "Memory usage (%)"
325
+ - "Disk usage (%)"
326
+
327
+ business:
328
+ - "Active users"
329
+ - "Transaction volume"
330
+ - "Conversion rate"
331
+
332
+ alerts:
333
+ critical:
334
+ - "Error rate > 5%"
335
+ - "P95 latency > 5s"
336
+ - "Uptime < 99%"
337
+ - "CPU > 90% sustained"
338
+
339
+ warning:
340
+ - "Error rate > 1%"
341
+ - "P95 latency > 2s"
342
+ - "Memory > 80%"
343
+
344
+ actions:
345
+ - type: "monitor"
346
+ description: "Monitoreo 24/7 automatizado"
347
+
348
+ - type: "alert"
349
+ description: "Alertas automáticas cuando thresholds se exceden"
350
+
351
+ - type: "respond"
352
+ description: "On-call engineer responde a alertas"
353
+
354
+ deliverables:
355
+ - "Incident reports & post-mortems"
356
+ - "Bug fixes desplegados"
357
+ - "Dependencies actualizadas"
358
+ - "Performance optimizations"
359
+ - "Security patches aplicados"
360
+ - "Monitoring dashboards"
361
+
362
+ metrics:
363
+ - name: "Mean Time to Detection (MTTD)"
364
+ description: "Tiempo promedio para detectar un incident"
365
+ target: "< 5 minutos"
366
+
367
+ - name: "Mean Time to Resolution (MTTR)"
368
+ description: "Tiempo promedio para resolver un incident"
369
+ target: "< 4 horas (P1), < 1 hora (P0)"
370
+
371
+ - name: "SLA Compliance"
372
+ description: "% de incidents resueltos dentro del SLA"
373
+ target: "> 95%"
374
+
375
+ - name: "Bug Recurrence Rate"
376
+ description: "% de bugs que reaparecen después de fix"
377
+ target: "< 5%"
378
+
379
+ - name: "System Uptime"
380
+ target: "> 99.9%"
381
+
382
+ best_practices:
383
+ - "On-call rotation (evitar burnout)"
384
+ - "Runbooks documentados para incidentes comunes"
385
+ - "Post-mortems blameless (focus en el proceso, no en personas)"
386
+ - "Proactive monitoring (detectar antes que usuarios reporten)"
387
+ - "Dependency updates regulares (no esperar a CVEs)"
388
+ - "Performance budgets (establecer targets y alertar cuando se exceden)"
389
+
390
+ tools:
391
+ monitoring:
392
+ - "Datadog"
393
+ - "New Relic"
394
+ - "Prometheus + Grafana"
395
+
396
+ error_tracking:
397
+ - "Sentry"
398
+ - "Rollbar"
399
+ - "Bugsnag"
400
+
401
+ logging:
402
+ - "ELK Stack"
403
+ - "Splunk"
404
+ - "CloudWatch Logs"
405
+
406
+ on_call:
407
+ - "PagerDuty"
408
+ - "Opsgenie"
409
+ - "VictorOps"
410
+
411
+ ticketing:
412
+ - "Jira Service Management"
413
+ - "Zendesk"
414
+ - "Freshdesk"
415
+
416
+ sla_commitments:
417
+ p0_critical:
418
+ response_time: "< 15 minutos"
419
+ resolution_time: "< 4 horas"
420
+
421
+ p1_high:
422
+ response_time: "< 1 hora"
423
+ resolution_time: "< 24 horas"
424
+
425
+ p2_medium:
426
+ response_time: "< 4 horas"
427
+ resolution_time: "< 1 semana"
428
+
429
+ p3_low:
430
+ response_time: "< 24 horas"
431
+ resolution_time: "Best effort (backlog)"
432
+
433
+ success_criteria:
434
+ - "Uptime > 99.9%"
435
+ - "MTTR < 4 horas (P1)"
436
+ - "SLA compliance > 95%"
437
+ - "Usuario satisfaction score > 4/5"
438
+ - "No critical security incidents"