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,478 @@
1
+ module:
2
+ metadata:
3
+ name: "Custom Agents Module"
4
+ id: "custom-agents"
5
+ version: "1.0.0"
6
+ description: "Agentes especializados personalizados del equipo"
7
+ author: "AWC Team"
8
+
9
+ philosophy:
10
+ zen:
11
+ description: "Claridad técnica, código limpio, enfoque en valor"
12
+ practices:
13
+ - "Componentes reutilizables y testeables"
14
+ - "Arquitectura modular escalable"
15
+ - "Simplicidad deliberada sobre complejidad accidental"
16
+
17
+ neutro:
18
+ description: "Decisiones basadas en métricas y evidencia"
19
+ practices:
20
+ - "Performance medido (Core Web Vitals, Lighthouse)"
21
+ - "Calidad cuantificada (coverage, complexity, duplication)"
22
+ - "Security validado (npm audit, CSP headers)"
23
+
24
+ sistematico:
25
+ description: "Procesos repetibles, documentación sincronizada"
26
+ practices:
27
+ - "Testing coverage >80%"
28
+ - "TypeScript strict mode"
29
+ - "Definition of Done checklist"
30
+ - "Code review obligatorio"
31
+
32
+ agents:
33
+ # ========================================
34
+ # FRONTEND DEVELOPMENT (2 agentes)
35
+ # ========================================
36
+ - id: "frontend-react-senior"
37
+ file: "agents/frontend-react-senior.agent.yaml"
38
+ category: "development"
39
+ subcategory: "frontend"
40
+ stack: ["React 18+", "Next.js 14+", "TypeScript 5+", "Tailwind CSS"]
41
+ whenToUse: "Desarrollo frontend web, optimización performance, accesibilidad, SEO"
42
+ workflows: 14
43
+
44
+ - id: "react-native-senior"
45
+ file: "agents/react-native-senior.agent.yaml"
46
+ category: "development"
47
+ subcategory: "mobile"
48
+ stack: ["React Native", "Expo", "TypeScript", "Hermes", "Zustand"]
49
+ whenToUse: "Desarrollo mobile iOS/Android, Clean Architecture, DDD, TDD"
50
+ workflows: 6
51
+
52
+ # ========================================
53
+ # BACKEND DEVELOPMENT (4 agentes)
54
+ # ========================================
55
+ - id: "backend-java-senior"
56
+ file: "agents/backend-java-senior.agent.yaml"
57
+ category: "development"
58
+ subcategory: "backend"
59
+ stack: ["Java 21 LTS", "Spring Boot 3.4", "PostgreSQL 16", "Kafka"]
60
+ whenToUse: "Desarrollo backend Java, arquitectura hexagonal, DDD, TDD, microservices"
61
+ workflows: 17
62
+
63
+ - id: "python-senior"
64
+ file: "agents/python-senior.agent.yaml"
65
+ category: "development"
66
+ subcategory: "backend"
67
+ stack: ["Python 3.11+", "Django 4.2+", "FastAPI", "Pydantic"]
68
+ whenToUse: "Desarrollo backend Python, APIs REST, async, data processing"
69
+ workflows: 11
70
+
71
+ - id: "dotnet-core-senior"
72
+ file: "agents/dotnet-core-senior.agent.yaml"
73
+ category: "development"
74
+ subcategory: "backend"
75
+ stack: [".NET 6/8", "ASP.NET Core", "MediatR", "EF Core"]
76
+ whenToUse: "Desarrollo .NET, Clean Architecture, CQRS, microservices"
77
+ workflows: 11
78
+
79
+ - id: "php-senior"
80
+ file: "agents/php-senior.agent.yaml"
81
+ category: "development"
82
+ subcategory: "backend"
83
+ stack: ["PHP 8.2+", "Laravel 10+", "Symfony 6+", "PHPStan L9"]
84
+ whenToUse: "Desarrollo PHP, hexagonal architecture, strict types, testing"
85
+ workflows: 10
86
+
87
+ # ========================================
88
+ # INFRASTRUCTURE & DEVOPS (2 agentes)
89
+ # ========================================
90
+ - id: "devsecops-onpremise-senior"
91
+ file: "agents/devsecops-onpremise-senior.agent.yaml"
92
+ category: "infrastructure"
93
+ subcategory: "devops"
94
+ stack: ["K3s/K8s", "Jenkins", "ArgoCD", "Trivy", "Prometheus"]
95
+ whenToUse: "DevSecOps on-premise, K3s clusters, GitOps, security automation"
96
+ workflows: 12
97
+
98
+ - id: "database-engineer-senior"
99
+ file: "agents/database-engineer-senior.agent.yaml"
100
+ category: "infrastructure"
101
+ subcategory: "database"
102
+ stack: ["PostgreSQL 16", "DDD Data Modeling", "Flyway"]
103
+ whenToUse: "Diseño de bases de datos, migraciones, performance tuning, DDD modeling"
104
+ workflows: 10
105
+
106
+ # ========================================
107
+ # ARCHITECTURE & DESIGN (4 agentes)
108
+ # ========================================
109
+ - id: "solution-architect-senior"
110
+ file: "agents/solution-architect-senior.agent.yaml"
111
+ category: "architecture"
112
+ subcategory: "solution-architect"
113
+ stack: ["PlantUML C4", "AWS/Azure/GCP", "Terraform", "ADRs"]
114
+ whenToUse: "Arquitectura de soluciones, ADRs, diagramas C4, estimación TCO"
115
+ workflows: 5
116
+
117
+ - id: "aspnet-core-architect-senior"
118
+ file: "agents/aspnet-core-architect-senior.agent.yaml"
119
+ category: "architecture"
120
+ subcategory: "dotnet-architect"
121
+ stack: [".NET 6/8", "ASP.NET Core", "MassTransit", "Azure"]
122
+ whenToUse: "Arquitectura .NET, hexagonal, DDD, CQRS, microservices, event-driven"
123
+ workflows: 11
124
+
125
+ - id: "c4-diagram-specialist"
126
+ file: "agents/c4-diagram-specialist.agent.yaml"
127
+ category: "architecture"
128
+ subcategory: "documentation"
129
+ stack: ["PlantUML", "C4 Model", "Graphviz", "Draw.io"]
130
+ whenToUse: "Diagramas de arquitectura C4, documentación visual, context mapping DDD"
131
+ workflows: 11
132
+
133
+ - id: "technical-stories-architect"
134
+ file: "agents/technical-stories-architect.agent.yaml"
135
+ category: "architecture"
136
+ subcategory: "technical-design"
137
+ stack: ["DDD", "Hexagonal Architecture", "TDD", "OpenAPI", "SQL"]
138
+ whenToUse: "Descomponer épicas en HUTs, DDD strategic/tactical, hexagonal, TDD design"
139
+ workflows: 7
140
+
141
+ # ========================================
142
+ # QUALITY & AUDIT (3 agentes)
143
+ # ========================================
144
+ - id: "frontend-audit-master"
145
+ file: "agents/frontend-audit-master.agent.yaml"
146
+ category: "quality"
147
+ subcategory: "audit"
148
+ stack: ["Lighthouse CI", "axe DevTools", "WAVE", "npm audit", "ESLint"]
149
+ whenToUse: "Auditoría frontend completa, scoring /100, performance, a11y, security"
150
+ workflows: 6
151
+
152
+ - id: "backend-audit-master"
153
+ file: "agents/backend-audit-master.agent.yaml"
154
+ category: "quality"
155
+ subcategory: "audit"
156
+ stack: ["OWASP Top 10", "SonarQube", "JaCoCo", "ArchUnit", "Trivy"]
157
+ whenToUse: "Auditoría backend completa, scoring A-F, arquitectura, security, obsolescence"
158
+ workflows: 7
159
+
160
+ - id: "validation-quality-master"
161
+ file: "agents/validation-quality-master.agent.yaml"
162
+ category: "quality"
163
+ subcategory: "validation"
164
+ stack: ["ISO 25010", "IEEE 830", "TOGAF", "C4 Model"]
165
+ whenToUse: "Validación de calidad: completitud, consistencia, corrección, claridad, trazabilidad"
166
+ workflows: 7
167
+
168
+ # ========================================
169
+ # BUSINESS & PRODUCT (1 agente)
170
+ # ========================================
171
+ - id: "product-owner-business-analyst"
172
+ file: "agents/product-owner-business-analyst.agent.yaml"
173
+ category: "business"
174
+ subcategory: "product-management"
175
+ stack: ["INVEST", "Gherkin BDD", "User Story Mapping", "MoSCoW"]
176
+ whenToUse: "Historias de usuario INVEST, backlog management, criterios aceptación Gherkin"
177
+ workflows: 10
178
+
179
+ # ========================================
180
+ # COST & ESTIMATION (1 agente)
181
+ # ========================================
182
+ - id: "cost-estimator-senior"
183
+ file: "agents/cost-estimator-senior.agent.yaml"
184
+ category: "business"
185
+ subcategory: "estimation"
186
+ stack: ["Story Points", "TCO", "FinOps", "ROI/NPV/IRR"]
187
+ whenToUse: "Estimación de costos (story→horas→$), TCO cloud 3 años, ROI analysis"
188
+ workflows: 5
189
+
190
+ # ========================================
191
+ # PROMPT ENGINEERING (2 agentes)
192
+ # ========================================
193
+ - id: "prompt-engineer-senior"
194
+ file: "agents/prompt-engineer-senior.agent.yaml"
195
+ category: "ai"
196
+ subcategory: "prompt-engineering"
197
+ stack: ["Chain-of-Thought", "Tree-of-Thought", "ReAct", "Few-Shot"]
198
+ whenToUse: "Crear, analizar, optimizar prompts; técnicas avanzadas (CoT, ToT, ReAct)"
199
+ workflows: 5
200
+
201
+ - id: "prompt-architect-senior"
202
+ file: "agents/prompt-architect-senior.agent.yaml"
203
+ category: "ai"
204
+ subcategory: "prompt-architecture"
205
+ stack: ["Multi-agent systems", "Workflow orchestration", "ISO/IEC 23053"]
206
+ whenToUse: "Arquitectura de prompts, multi-agent systems, diseño de workflows complejos"
207
+ workflows: 4
208
+
209
+ # ========================================
210
+ # DOCUMENTATION & ANALYSIS (3 agentes)
211
+ # ========================================
212
+ - id: "consolidation-context-master"
213
+ file: "agents/consolidation-context-master.agent.yaml"
214
+ category: "documentation"
215
+ subcategory: "consolidation"
216
+ stack: ["PDF parsing", "OCR", "NLP", "Markdown generation"]
217
+ whenToUse: "Consolidar contexto de proyecto desde múltiples fuentes (PDFs, Word, código)"
218
+ workflows: 7
219
+
220
+ - id: "document-export-specialist"
221
+ file: "agents/document-export-specialist.agent.yaml"
222
+ category: "documentation"
223
+ subcategory: "export"
224
+ stack: ["pandoc", "python-docx", "PlantUML CLI", "Word .docx"]
225
+ whenToUse: "Exportar documentación Markdown→Word con formato profesional"
226
+ workflows: 8
227
+
228
+ - id: "obsolescence-analyst-senior"
229
+ file: "agents/obsolescence-analyst-senior.agent.yaml"
230
+ category: "analysis"
231
+ subcategory: "obsolescence"
232
+ stack: ["NVD NIST", "CVE database", "EOL tracking", "Risk matrix"]
233
+ whenToUse: "Análisis de obsolescencia tecnológica, CVEs, EOL, plan de modernización"
234
+ workflows: 7
235
+
236
+ quality_standards:
237
+ code_coverage: ">80%"
238
+ technical_debt: "<5%"
239
+ code_review: "mandatory"
240
+ documentation: "synchronized"
241
+
242
+ workflows:
243
+ total: 191
244
+ available:
245
+ # Frontend React (14)
246
+ - "create-react-component"
247
+ - "create-nextjs-page"
248
+ - "integrate-api"
249
+ - "build-form"
250
+ - "optimize-performance"
251
+ - "fix-accessibility"
252
+ - "setup-seo"
253
+ - "create-testing-suite"
254
+ - "security-audit"
255
+ - "setup-state-management"
256
+ - "setup-ui-library"
257
+ - "review-architecture"
258
+ - "generate-quality-report"
259
+ - "migrate-react-19"
260
+
261
+ # React Native (6)
262
+ - "setup-rn-project"
263
+ - "create-bounded-context"
264
+ - "create-aggregate"
265
+ - "create-use-case"
266
+ - "run-tests"
267
+ - "audit-architecture"
268
+
269
+ # Backend Java (17)
270
+ - "implement-hut"
271
+ - "create-aggregate-ddd"
272
+ - "create-use-case-application"
273
+ - "create-repository-jpa"
274
+ - "create-rest-controller-post"
275
+ - "tdd-cycle"
276
+ - "outside-in-tdd"
277
+ - "create-domain-event"
278
+ - "kafka-integration"
279
+ - "security-oauth2"
280
+ - "database-migration-flyway"
281
+ - "architecture-test-archunit"
282
+ - "integration-test-testcontainers"
283
+ - "mutation-testing-pit"
284
+ - "sonarqube-analysis"
285
+ - "refactor-hexagonal"
286
+ - "performance-optimization-java"
287
+
288
+ # Python (11)
289
+ - "create-python-project"
290
+ - "create-api-endpoint-fastapi"
291
+ - "create-domain-model-dataclass"
292
+ - "async-service"
293
+ - "celery-task"
294
+ - "pytest-suite"
295
+ - "poetry-dependencies"
296
+ - "mypy-type-check"
297
+ - "black-format"
298
+ - "ruff-lint"
299
+ - "hexagonal-refactor-python"
300
+
301
+ # .NET Core (11)
302
+ - "create-dotnet-solution"
303
+ - "cqrs-command-mediatr"
304
+ - "cqrs-query-mediatr"
305
+ - "ef-migration"
306
+ - "mediatr-handler"
307
+ - "integration-test-dotnet"
308
+ - "clean-architecture-setup"
309
+ - "fluent-validation"
310
+ - "automapper-config"
311
+ - "unit-test-xunit"
312
+ - "repository-pattern"
313
+
314
+ # PHP (10)
315
+ - "create-php-project-composer"
316
+ - "domain-entity-value-objects"
317
+ - "api-resource-laravel"
318
+ - "service-contract-interface"
319
+ - "phpstan-analysis-level9"
320
+ - "pest-tests"
321
+ - "phpunit-coverage"
322
+ - "doctrine-orm-mapping"
323
+ - "hexagonal-php"
324
+ - "strict-types-enforce"
325
+
326
+ # DevSecOps (12)
327
+ - "k3s-cluster-setup"
328
+ - "jenkins-pipeline-cicd"
329
+ - "security-scan-trivy"
330
+ - "gitops-deployment-argocd"
331
+ - "backup-strategy-k8s"
332
+ - "monitoring-prometheus"
333
+ - "logging-elk-stack"
334
+ - "secrets-vault-hashicorp"
335
+ - "disaster-recovery-plan"
336
+ - "infrastructure-as-code-terraform"
337
+ - "container-registry-setup"
338
+ - "helm-chart-deployment"
339
+
340
+ # Database (10)
341
+ - "create-table-ddd-conventions"
342
+ - "migration-script-flyway"
343
+ - "performance-audit-explain"
344
+ - "data-model-review-ddd"
345
+ - "index-optimization"
346
+ - "query-tuning"
347
+ - "partition-strategy"
348
+ - "replication-setup"
349
+ - "backup-restore-automation"
350
+ - "schema-versioning"
351
+
352
+ # Solution Architect (5)
353
+ - "design-architecture-c4"
354
+ - "create-adr"
355
+ - "create-c4-diagram-plantuml"
356
+ - "estimate-costs-tco"
357
+ - "generate-architecture-document"
358
+
359
+ # ASP.NET Architect (11)
360
+ - "create-microservice-architecture"
361
+ - "create-aggregate-csharp"
362
+ - "cqrs-command-architecture"
363
+ - "event-driven-integration-masstransit"
364
+ - "azure-service-bus-setup"
365
+ - "api-gateway-design"
366
+ - "saga-pattern-orchestration"
367
+ - "distributed-cache-redis"
368
+ - "monitoring-application-insights"
369
+ - "security-identity-server"
370
+ - "container-orchestration-k8s"
371
+
372
+ # C4 Diagram (11)
373
+ - "c4-context-diagram-level1"
374
+ - "c4-container-diagram-level2"
375
+ - "c4-component-diagram-level3"
376
+ - "c4-code-diagram-level4"
377
+ - "context-map-ddd-strategic"
378
+ - "deployment-diagram"
379
+ - "sequence-diagram"
380
+ - "dynamic-diagram"
381
+ - "plantuml-generation"
382
+ - "diagram-versioning-git"
383
+ - "export-diagrams-png-svg"
384
+
385
+ # Technical Stories (7)
386
+ - "full-technical-decomposition"
387
+ - "strategic-ddd-analysis-bounded-contexts"
388
+ - "tactical-ddd-modeling-aggregates"
389
+ - "hexagonal-design-ports-adapters"
390
+ - "tdd-design-red-green-refactor"
391
+ - "technical-specifications-openapi"
392
+ - "generate-huts-from-epics"
393
+
394
+ # Frontend Audit (6)
395
+ - "full-audit-frontend"
396
+ - "audit-performance-lighthouse"
397
+ - "audit-accessibility-wcag"
398
+ - "audit-security-frontend"
399
+ - "audit-testing-coverage"
400
+ - "audit-seo-metadata"
401
+
402
+ # Backend Audit (7)
403
+ - "full-audit-backend"
404
+ - "audit-architecture-hexagonal"
405
+ - "audit-security-owasp"
406
+ - "audit-obsolescence-tech-stack"
407
+ - "audit-performance-backend"
408
+ - "audit-testing-backend"
409
+ - "audit-code-quality-sonarqube"
410
+
411
+ # Validation Quality (7)
412
+ - "full-validation-quality"
413
+ - "validate-completeness"
414
+ - "validate-consistency"
415
+ - "validate-correctness"
416
+ - "validate-clarity"
417
+ - "validate-traceability"
418
+ - "generate-validation-report"
419
+
420
+ # Product Owner (10)
421
+ - "create-user-story-invest"
422
+ - "gherkin-scenario-bdd"
423
+ - "backlog-generation-prioritized"
424
+ - "acceptance-criteria-measurable"
425
+ - "story-mapping-workflow"
426
+ - "epic-decomposition"
427
+ - "moscow-prioritization"
428
+ - "story-points-fibonacci"
429
+ - "sprint-planning"
430
+ - "refinement-session"
431
+
432
+ # Cost Estimator (5)
433
+ - "estimate-project-full"
434
+ - "estimate-epic-stories"
435
+ - "estimate-story-hours-cost"
436
+ - "estimate-cloud-tco-3years"
437
+ - "calculate-roi-npv-irr"
438
+
439
+ # Prompt Engineer (5)
440
+ - "create-prompt-structured"
441
+ - "analyze-prompt-quality"
442
+ - "optimize-prompt-performance"
443
+ - "test-prompt-validation"
444
+ - "validate-structure-prompt"
445
+
446
+ # Prompt Architect (4)
447
+ - "architect-prompt-multi-agent"
448
+ - "design-agent-persona"
449
+ - "design-workflow-orchestration"
450
+ - "validate-compliance-standards"
451
+
452
+ # Consolidation Context (7)
453
+ - "full-consolidation-context"
454
+ - "analyze-documentation-sources"
455
+ - "extract-business-context"
456
+ - "extract-functional-requirements"
457
+ - "extract-non-functional-requirements"
458
+ - "reconcile-contradictions"
459
+ - "generate-consolidated-files"
460
+
461
+ # Document Export (8)
462
+ - "full-export-documentation"
463
+ - "prepare-diagrams-plantuml"
464
+ - "convert-markdown-to-word"
465
+ - "apply-professional-format"
466
+ - "validate-export-quality"
467
+ - "export-executive-summary"
468
+ - "export-architecture-document"
469
+ - "export-api-specification"
470
+
471
+ # Obsolescence Analyst (7)
472
+ - "full-obsolescence-analysis"
473
+ - "inventory-tech-stack"
474
+ - "analyze-architecture-patterns"
475
+ - "inventory-endpoints-apis"
476
+ - "identify-vulnerabilities-cves"
477
+ - "generate-risk-matrix"
478
+ - "create-modernization-plan"
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "awc-agent-cli",
3
+ "version": "1.1.0",
4
+ "description": "CLI profesional para gestionar y usar los 22 agentes especializados de AWC-ZNS-MTD Framework",
5
+ "main": "awc-agent.js",
6
+ "bin": {
7
+ "awc-agent": "./awc-agent.js"
8
+ },
9
+ "scripts": {
10
+ "test": "node awc-agent.js list",
11
+ "prepublishOnly": "node awc-agent.js list"
12
+ },
13
+ "keywords": [
14
+ "awc",
15
+ "zns",
16
+ "agents",
17
+ "cli",
18
+ "copilot",
19
+ "github-copilot",
20
+ "react",
21
+ "java",
22
+ "python",
23
+ "architecture",
24
+ "ddd",
25
+ "tdd",
26
+ "hexagonal",
27
+ "framework",
28
+ "developer-tools"
29
+ ],
30
+ "author": {
31
+ "name": "AWC Team",
32
+ "url": "https://github.com/awc-team"
33
+ },
34
+ "license": "MIT",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/awc-team/awc-zns-mtd.git",
38
+ "directory": "src/modules/custom-agents/cli"
39
+ },
40
+ "bugs": {
41
+ "url": "https://github.com/awc-team/awc-zns-mtd/issues"
42
+ },
43
+ "homepage": "https://github.com/awc-team/awc-zns-mtd#readme",
44
+ "dependencies": {
45
+ "js-yaml": "^4.1.0"
46
+ },
47
+ "engines": {
48
+ "node": ">=18.0.0",
49
+ "npm": ">=9.0.0"
50
+ },
51
+ "files": [
52
+ "awc-agent.js",
53
+ "README.md",
54
+ "LICENSE",
55
+ "CHANGELOG.md",
56
+ "agents-data/",
57
+ "config.yaml"
58
+ ],
59
+ "publishConfig": {
60
+ "access": "public"
61
+ },
62
+ "bundledDependencies": false
63
+ }