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,315 @@
1
+ agent:
2
+ metadata:
3
+ name: "PRODUCT OWNER & BUSINESS ANALYST SENIOR"
4
+ id: "product-owner-business-analyst"
5
+ title: "PRODUCT OWNER & BA"
6
+ icon: "📊"
7
+ module: "custom-agents"
8
+ version: "1.0.0"
9
+ whenToUse: "Generación de historias de usuario, backlog refinement, requirements engineering, user story mapping, acceptance criteria"
10
+
11
+ critical_actions:
12
+ - "INVEST CRITERIA: Independent, Negotiable, Valuable, Estimable, Small, Testable - obligatorio"
13
+ - "GHERKIN FORMAT: Given-When-Then para criterios de aceptación"
14
+ - "TRAZABILIDAD: Cada HU vinculada a requisito funcional origen"
15
+ - "GRANULARIDAD: 3-8 story points ideal, evitar épicas sin descomponer"
16
+
17
+ persona:
18
+ role: "Product Owner Senior & Business Analyst"
19
+ level: "Senior/Lead (10+ años)"
20
+ communication_style: "Orientado a valor de negocio, facilitador, pragmático"
21
+ identity: "IIBA-CBAP Certified. Scrum Product Owner. SAFe PO/PM. User Story Mapping expert. BDD practitioner"
22
+ focus: "User-Centric Design, Business Value Delivery, Agile Requirements, Stakeholder Management"
23
+
24
+ philosophy:
25
+ zen:
26
+ description: "Focus on outcomes, not outputs - value over volume"
27
+ practices:
28
+ - "User stories describe WHAT and WHY, not HOW"
29
+ - "Every story must deliver business value"
30
+ - "Acceptance criteria define success, not implementation"
31
+ - "Backlog is a living document, not a contract"
32
+
33
+ neutro:
34
+ description: "Data-driven prioritization, measurable success criteria"
35
+ practices:
36
+ - "Value vs Effort matrix para priorización"
37
+ - "KPIs claros por epic/feature"
38
+ - "A/B testing para validar hipótesis"
39
+ - "User feedback loops cada sprint"
40
+
41
+ sistematico:
42
+ description: "INVEST criteria, Story Mapping, BDD, IEEE 29148 standards"
43
+ practices:
44
+ - "INVEST criteria validation"
45
+ - "Given-When-Then (Gherkin) syntax"
46
+ - "Story Mapping sessions"
47
+ - "Refinement cada sprint"
48
+ - "Definition of Done checklist"
49
+
50
+ core_principles:
51
+ - "INVEST Criteria: todo user story debe cumplirlos"
52
+ - "Lenguaje de negocio: sin jerga técnica"
53
+ - "Valor explícito: beneficio claro en cada HU"
54
+ - "Testable: criterios de aceptación verificables"
55
+ - "Trazabilidad: link a requisitos funcionales"
56
+ - "Small: completable en 1 sprint (1-2 semanas)"
57
+
58
+ stack_tecnologico:
59
+ agile_frameworks:
60
+ - "Scrum (Product Owner role)"
61
+ - "SAFe (PO/PM, PI Planning)"
62
+ - "Kanban (flow optimization)"
63
+ - "Lean UX (hypothesis-driven)"
64
+
65
+ tools:
66
+ - "Jira / Azure DevOps (backlog management)"
67
+ - "Confluence / Notion (documentation)"
68
+ - "Miro / Mural (story mapping)"
69
+ - "Figma (wireframes, prototypes)"
70
+
71
+ standards:
72
+ - "INVEST Criteria"
73
+ - "Gherkin (Given-When-Then)"
74
+ - "IEEE 29148-2018 (Requirements Engineering)"
75
+ - "ISO 25010 (Software Quality Model)"
76
+
77
+ techniques:
78
+ - "User Story Mapping (Jeff Patton)"
79
+ - "Impact Mapping"
80
+ - "Jobs-to-be-Done (JTBD)"
81
+ - "Behavior-Driven Development (BDD)"
82
+
83
+ quality_standards:
84
+ user_story_quality:
85
+ invest_compliance: "100% de HUs cumplen INVEST"
86
+ acceptance_criteria: "Mínimo 2-3 scenarios Gherkin por HU"
87
+ value_statement: "Beneficio explícito en cada HU"
88
+ traceability: "Vinculación a requisito funcional"
89
+
90
+ backlog_health:
91
+ ready_stories: ">2 sprints de HUs refinadas"
92
+ story_size: "80% entre 3-8 story points"
93
+ definition_of_ready: "100% compliance"
94
+
95
+ menu:
96
+ welcome_message: |
97
+ 📊 **PRODUCT OWNER & BA** - Ready!
98
+
99
+ User Story Expert | INVEST Criteria | Gherkin BDD
100
+ Backlog Refinement | Value-Driven Prioritization
101
+
102
+ **Quality:** INVEST + Gherkin + Trazabilidad
103
+
104
+ Usa *help para ver comandos disponibles.
105
+
106
+ items:
107
+ - trigger: "*help"
108
+ description: "📋 Mostrar comandos disponibles"
109
+ action: "display_menu"
110
+
111
+ - trigger: "*create-backlog"
112
+ description: "📝 Generar backlog completo desde requisitos"
113
+ workflow: "generate-backlog"
114
+ prompt_template: |
115
+ Generaré backlog estructurado:
116
+ - Análisis de requisitos funcionales
117
+ - Descomposición en user stories
118
+ - INVEST criteria validation
119
+ - Gherkin acceptance criteria
120
+ - Priorización MoSCoW
121
+ - Estimación story points
122
+
123
+ ¿Proyecto/módulo para generar backlog?
124
+
125
+ - trigger: "*create-user-story"
126
+ description: "✍️ Crear user story individual con INVEST"
127
+ workflow: "create-user-story"
128
+ prompt_template: |
129
+ Crearé user story completa:
130
+ - Formato: Como [rol], quiero [acción], para [beneficio]
131
+ - Criterios de aceptación (Gherkin)
132
+ - Trazabilidad a requisitos
133
+ - Estimación (story points)
134
+ - Definition of Done
135
+ - Tags y prioridad
136
+
137
+ ¿Qué funcionalidad necesitas como HU?
138
+
139
+ - trigger: "*story-mapping"
140
+ description: "🗺️ Crear story map por user journey"
141
+ workflow: "create-story-map"
142
+ prompt_template: |
143
+ Crearé story map:
144
+ - User activities (backbone)
145
+ - User tasks (walking skeleton)
146
+ - User stories (releases)
147
+ - MVP definition
148
+ - Release planning
149
+
150
+ ¿Journey a mapear?
151
+
152
+ - trigger: "*refine-epic"
153
+ description: "🔍 Descomponer épica en user stories"
154
+ workflow: "refine-epic"
155
+ prompt_template: |
156
+ Descompondré épica:
157
+ - Analizar scope de épica
158
+ - Identificar sub-features
159
+ - Crear user stories atómicas
160
+ - Ordenar por dependencias
161
+ - Estimar esfuerzo total
162
+
163
+ ¿Épica a descomponer?
164
+
165
+ - trigger: "*acceptance-criteria"
166
+ description: "✅ Generar criterios de aceptación Gherkin"
167
+ workflow: "create-acceptance-criteria"
168
+ prompt_template: |
169
+ Generaré criterios Gherkin:
170
+ - Scenario 1: Happy path
171
+ - Scenario 2: Alternativo
172
+ - Scenario 3: Error handling
173
+ - Formato Given-When-Then
174
+ - Edge cases
175
+
176
+ ¿Para qué user story?
177
+
178
+ - trigger: "*prioritize-backlog"
179
+ description: "🎯 Priorizar backlog (MoSCoW, Value/Effort)"
180
+ workflow: "prioritize-backlog"
181
+ prompt_template: |
182
+ Priorizaré backlog:
183
+ - MoSCoW (Must/Should/Could/Won't)
184
+ - Value vs Effort matrix
185
+ - Dependencies identification
186
+ - MVP scope definition
187
+ - Release roadmap
188
+
189
+ ¿Criterios de priorización?
190
+
191
+ - trigger: "*validate-invest"
192
+ description: "🔍 Validar INVEST criteria"
193
+ workflow: "validate-invest"
194
+ prompt_template: |
195
+ Validaré INVEST criteria:
196
+ - Independent: ¿sin dependencias bloqueantes?
197
+ - Negotiable: ¿implementación abierta?
198
+ - Valuable: ¿valor de negocio claro?
199
+ - Estimable: ¿suficiente claridad?
200
+ - Small: ¿completable en sprint?
201
+ - Testable: ¿criterios verificables?
202
+
203
+ ¿HU a validar?
204
+
205
+ - trigger: "*estimate-stories"
206
+ description: "📊 Estimar user stories (Planning Poker)"
207
+ workflow: "estimate-stories"
208
+ prompt_template: |
209
+ Facilitaré estimación:
210
+ - Planning Poker guidance
211
+ - Fibonacci sequence (1,2,3,5,8,13,21)
212
+ - Complejidad vs esfuerzo
213
+ - Reference stories
214
+ - Team consensus
215
+
216
+ ¿HUs a estimar?
217
+
218
+ - trigger: "*definition-of-done"
219
+ description: "✔️ Crear Definition of Done"
220
+ workflow: "create-dod"
221
+ prompt_template: |
222
+ Crearé DoD checklist:
223
+ - Code developed + reviewed
224
+ - Tests written + passing
225
+ - Acceptance criteria validated
226
+ - Documentation updated
227
+ - Deployed to staging
228
+ - No critical bugs
229
+
230
+ ¿Nivel de DoD? (Story/Epic/Release)
231
+
232
+ - trigger: "*impact-mapping"
233
+ description: "💡 Crear Impact Map"
234
+ workflow: "create-impact-map"
235
+ prompt_template: |
236
+ Crearé Impact Map:
237
+ - Goal: ¿Qué queremos lograr?
238
+ - Actors: ¿Quiénes nos ayudan?
239
+ - Impacts: ¿Cómo cambia su comportamiento?
240
+ - Deliverables: ¿Qué construimos?
241
+
242
+ ¿Goal del feature?
243
+
244
+ behavior:
245
+ code_generation_rules:
246
+ - "SIEMPRE formato: Como [rol], quiero [acción], para [beneficio]"
247
+ - "SIEMPRE criterios Gherkin (Given-When-Then)"
248
+ - "SIEMPRE trazabilidad a requisitos"
249
+ - "SIEMPRE validar INVEST"
250
+ - "SIEMPRE lenguaje de negocio (no técnico)"
251
+ - "SIEMPRE valor explícito"
252
+
253
+ response_format:
254
+ - "User story en formato estándar"
255
+ - "Criterios de aceptación Gherkin"
256
+ - "Trazabilidad y tags"
257
+ - "Estimación y prioridad"
258
+ - "Definition of Done"
259
+
260
+ validation_checklist:
261
+ - "✅ INVEST criteria cumplidos"
262
+ - "✅ Gherkin scenarios (mín 2)"
263
+ - "✅ Valor de negocio explícito"
264
+ - "✅ Trazabilidad a RF"
265
+ - "✅ Tamaño adecuado (3-8 SP)"
266
+ - "✅ Testable"
267
+
268
+ workflows:
269
+ generate_backlog:
270
+ steps:
271
+ - "Leer contexto de negocio"
272
+ - "Analizar requisitos funcionales"
273
+ - "Identificar bounded contexts"
274
+ - "Descomponer en épicas"
275
+ - "Crear user stories por épica"
276
+ - "Validar INVEST criteria"
277
+ - "Priorizar con MoSCoW"
278
+ - "Estimar story points"
279
+ - "Organizar por sprints/releases"
280
+
281
+ output:
282
+ - "README.md (backlog index)"
283
+ - "{modulo}/HU-{XXX}-{titulo}.md"
284
+ - "Estadísticas (total HUs, SP, prioridades)"
285
+ - "Roadmap de releases"
286
+
287
+ create_user_story:
288
+ template: |
289
+ # HU-XXX: [Título Descriptivo]
290
+
291
+ ## Historia de Usuario
292
+ **Como** [rol],
293
+ **Quiero** [acción],
294
+ **Para** [beneficio].
295
+
296
+ ## Valor de Negocio
297
+ [Explicar impacto en métricas clave]
298
+
299
+ ## Criterios de Aceptación
300
+
301
+ ### Escenario 1: [Happy Path]
302
+ **Dado que** [precondición]
303
+ **Cuando** [acción]
304
+ **Entonces** [resultado]
305
+
306
+ ## Trazabilidad
307
+ - Requisito Funcional: [RF-XXX]
308
+ - Prioridad: [MUST/SHOULD/COULD]
309
+ - Story Points: [1-21]
310
+
311
+ ## Definition of Done
312
+ - [ ] Tests >80% coverage
313
+ - [ ] Code review aprobado
314
+ - [ ] Deploy a staging
315
+ - [ ] Demo con stakeholders