@saulwade/swl-ses 2.0.0 → 2.2.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 (97) hide show
  1. package/CLAUDE.md +196 -196
  2. package/README.md +579 -579
  3. package/agentes/_propose-step.md +90 -0
  4. package/agentes/implementador-swl.md +2 -0
  5. package/agentes/orquestador-swl.md +2 -0
  6. package/agentes/perfilador-usuario-swl.md +14 -1
  7. package/bin/swl-ses.js +64 -1
  8. package/comandos/swl/adoptar-proyecto.md +258 -255
  9. package/comandos/swl/aprender.md +828 -840
  10. package/comandos/swl/aprobar-plan.md +26 -37
  11. package/comandos/swl/autoresearch.md +12 -14
  12. package/comandos/swl/briefing.md +119 -0
  13. package/comandos/swl/checkpoint.md +10 -15
  14. package/comandos/swl/claudemd.md +239 -234
  15. package/comandos/swl/compactar.md +29 -2
  16. package/comandos/swl/configurar-ci.md +20 -19
  17. package/comandos/swl/cron.md +10 -12
  18. package/comandos/swl/discutir-fase.md +8 -5
  19. package/comandos/swl/ejecutar-fase.md +15 -2
  20. package/comandos/swl/evolucionar.md +6 -11
  21. package/comandos/swl/inbox.md +10 -10
  22. package/comandos/swl/modelo.md +7 -9
  23. package/comandos/swl/notificaciones.md +19 -116
  24. package/comandos/swl/nuevo-proyecto.md +205 -205
  25. package/comandos/swl/planear-fase.md +5 -3
  26. package/comandos/swl/release.md +46 -0
  27. package/comandos/swl/status.md +333 -279
  28. package/comandos/swl/verificar.md +817 -812
  29. package/habilidades/changelog-generator/scripts/parse-commits.js +6 -4
  30. package/habilidades/ejecutar-fase/SKILL.md +541 -518
  31. package/habilidades/planear-fase/SKILL.md +3 -2
  32. package/habilidades/swl-claudemd/SKILL.md +10 -6
  33. package/habilidades/tdd-workflow/SKILL.md +715 -713
  34. package/habilidades/validacion-ci-sistema/SKILL.md +17 -1
  35. package/hooks/calidad-pre-commit.js +5 -1
  36. package/hooks/check-update.js +39 -1
  37. package/hooks/lib/autonomia.js +208 -0
  38. package/hooks/lib/briefing.js +474 -0
  39. package/hooks/lib/propose-step.js +358 -0
  40. package/hooks/session-briefing.js +98 -0
  41. package/hooks/telemetria-skill-routing.js +100 -0
  42. package/instintos/autonomia.yaml +27 -0
  43. package/llms.txt +4 -4
  44. package/manifiestos/hooks-config.json +18 -0
  45. package/manifiestos/modulos.json +25 -3
  46. package/manifiestos/skills-lock.json +17 -17
  47. package/package.json +93 -93
  48. package/plugin.json +371 -371
  49. package/reglas/analizar-directorios-antes-de-escribir.md +228 -0
  50. package/reglas/consultar-vault-primero.md +195 -0
  51. package/reglas/debatir-antes-de-aceptar.md +158 -0
  52. package/reglas/git-coauthor.md +100 -0
  53. package/reglas/monitor-ci.md +309 -0
  54. package/reglas/registro-componentes-nuevos.md +38 -10
  55. package/reglas/sesiones-paralelas.md +180 -0
  56. package/reglas/usar-code-review-graph.md +155 -0
  57. package/reglas/verificar-citas-normativas.md +548 -0
  58. package/scripts/auditar-claudemd.js +38 -0
  59. package/scripts/cli/aprobar-plan.js +73 -0
  60. package/scripts/cli/briefing.js +23 -0
  61. package/scripts/cli/ciclo-evolucion.js +26 -0
  62. package/scripts/cli/configurar-ci.js +40 -0
  63. package/scripts/cli/derivar-feature-list.js +25 -0
  64. package/scripts/cli/detectar-host.js +27 -0
  65. package/scripts/cli/diary-entry.js +69 -0
  66. package/scripts/cli/execution-state.js +18 -0
  67. package/scripts/cli/gateway-notify.js +41 -0
  68. package/scripts/cli/liberar-fase.js +42 -0
  69. package/scripts/cli/loop-telemetry.js +125 -0
  70. package/scripts/cli/mark-evolved.js +56 -0
  71. package/scripts/cli/metricas-dora.js +26 -0
  72. package/scripts/cli/near-duplicate.js +55 -0
  73. package/scripts/cli/notificaciones.js +123 -0
  74. package/scripts/cli/propose-step.js +29 -0
  75. package/scripts/cli/schedule-parse.js +19 -0
  76. package/scripts/cli/sugerir-modelo.js +20 -0
  77. package/scripts/cli/verificar-plan.js +36 -0
  78. package/scripts/cli/verificar-trazabilidad.js +35 -0
  79. package/scripts/derivar-feature-list.js +1 -0
  80. package/scripts/instalador.js +52 -6
  81. package/scripts/lib/auditar-invocaciones-comandos.js +104 -0
  82. package/scripts/lib/ci-reader.js +193 -0
  83. package/scripts/lib/detectar-host-swl.js +175 -0
  84. package/scripts/lib/evidencia-release.js +322 -0
  85. package/scripts/lib/gate-hooks-requires.js +249 -0
  86. package/scripts/lib/gate-licencias.js +212 -0
  87. package/scripts/lib/git-metricas.js +257 -0
  88. package/scripts/lib/metricas-dora.js +204 -0
  89. package/scripts/lib/resolver-plan-fase.js +37 -0
  90. package/scripts/tui/ejecutores.js +1 -1
  91. package/scripts/validar-manifest.js +92 -1
  92. package/scripts/validar.js +13 -0
  93. package/scripts/verificar-evolucion.js +54 -4
  94. package/scripts/verificar-release.js +102 -0
  95. package/scripts/verificar-trazabilidad.js +12 -6
  96. package/reglas/arquitectura.evolved.json +0 -7
  97. package/reglas/seguridad.evolved.json +0 -7
package/plugin.json CHANGED
@@ -1,371 +1,371 @@
1
- {
2
- "name": "swl-ses",
3
- "version": "2.0.0",
4
- "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot. 60 agentes, 182 habilidades, 43 comandos, 69 reglas y 46 hooks. 69 librerias. 11 lenguajes. Soporta Claude Code, Copilot, OpenCode, Codex y Gemini CLI. Loop evaluator-optimizer en /swl:nemesis (ADR-0021). v1.8.0 unifica los directorios runtime de .planning/ al ingles (evolution/, auto-evolution/, user-profile/, archive/), manteniendo fases/ en espanol, con guard validar-planning-paths y allowlist canonica (ADR-0031). Hereda de v1.7.4: skill calidad-anti-patrones-universales + scripts/lib/pr-analyzer.js + 3 sub-secciones en estilo-sin-ai-isms.",
5
- "author": "Saul Wade Leon",
6
- "license": "MIT",
7
- "repository": "https://github.com/saul-wade/swl-ses",
8
- "skills": [
9
- "habilidades/accesibilidad-a11y",
10
- "habilidades/agent-browser",
11
- "habilidades/agent-deep-links",
12
- "habilidades/agentes-como-servicio",
13
- "habilidades/ai-runtime-security",
14
- "habilidades/angular-avanzado",
15
- "habilidades/angular-moderno",
16
- "habilidades/api-rest-diseno",
17
- "habilidades/aprender-de-git-diff",
18
- "habilidades/aprendizaje-continuo",
19
- "habilidades/async-python",
20
- "habilidades/auth-patrones",
21
- "habilidades/auto-evolucion-protocolo",
22
- "habilidades/autoresearch",
23
- "habilidades/azure-cloud",
24
- "habilidades/backend-async-postgres-testing",
25
- "habilidades/backend-error-design",
26
- "habilidades/backend-mcp-servidor",
27
- "habilidades/backend-production-resilience",
28
- "habilidades/benchmark-memoria",
29
- "habilidades/brainstorming",
30
- "habilidades/browser-interaction-patterns",
31
- "habilidades/browser-research-domains",
32
- "habilidades/build-errors-cpp",
33
- "habilidades/build-errors-csharp",
34
- "habilidades/build-errors-go",
35
- "habilidades/build-errors-java",
36
- "habilidades/build-errors-kotlin",
37
- "habilidades/build-errors-nextjs",
38
- "habilidades/build-errors-php",
39
- "habilidades/build-errors-python",
40
- "habilidades/build-errors-rust",
41
- "habilidades/build-errors-swift",
42
- "habilidades/build-errors-typescript",
43
- "habilidades/calidad-anti-patrones-universales",
44
- "habilidades/calidad-contract-testing",
45
- "habilidades/calidad-mutation-testing",
46
- "habilidades/changelog-generator",
47
- "habilidades/checklist-calidad",
48
- "habilidades/checklist-seguridad",
49
- "habilidades/checkpoints-verificacion",
50
- "habilidades/ci-cd-pipelines",
51
- "habilidades/cloud-aws",
52
- "habilidades/compactacion-contexto",
53
- "habilidades/contenedores-docker",
54
- "habilidades/context-builder",
55
- "habilidades/control-profundidad",
56
- "habilidades/csharp-experto",
57
- "habilidades/csharp-patrones",
58
- "habilidades/csharp-testing",
59
- "habilidades/css-moderno",
60
- "habilidades/datos-etl",
61
- "habilidades/dbml-experto",
62
- "habilidades/dependencias-auditoria",
63
- "habilidades/deprecacion-migracion",
64
- "habilidades/design-tokens",
65
- "habilidades/devsecops-pipeline-security",
66
- "habilidades/diagrama-arquitectura",
67
- "habilidades/discutir-fase",
68
- "habilidades/diseno-herramientas-agente",
69
- "habilidades/diseno-responsivo",
70
- "habilidades/django-experto",
71
- "habilidades/doc-sync",
72
- "habilidades/doubt-driven-review",
73
- "habilidades/drift-detection",
74
- "habilidades/ejecutar-fase",
75
- "habilidades/ejecutar-task-iterativo",
76
- "habilidades/estilo-sin-ai-isms",
77
- "habilidades/estructura-proyecto-claude",
78
- "habilidades/eval-framework",
79
- "habilidades/evaluacion-agentes",
80
- "habilidades/event-driven",
81
- "habilidades/extraccion-documentos",
82
- "habilidades/extractor-de-aprendizajes",
83
- "habilidades/fastapi-experto",
84
- "habilidades/feynman-auditor-swl",
85
- "habilidades/filament-admin",
86
- "habilidades/frontend-avanzado",
87
- "habilidades/gcp-cloud",
88
- "habilidades/generacion-mermaid",
89
- "habilidades/git-worktrees-paralelo",
90
- "habilidades/go-experto",
91
- "habilidades/go-patrones",
92
- "habilidades/go-testing",
93
- "habilidades/graphql-experto",
94
- "habilidades/guardrail-semantico",
95
- "habilidades/harness-claude-code",
96
- "habilidades/iam-secretos",
97
- "habilidades/infra-github-actions",
98
- "habilidades/instalar-sistema",
99
- "habilidades/java-experto",
100
- "habilidades/java-patrones",
101
- "habilidades/java-testing",
102
- "habilidades/kotlin-compose",
103
- "habilidades/kotlin-experto",
104
- "habilidades/kotlin-testing",
105
- "habilidades/kubernetes-orquestacion",
106
- "habilidades/langchain-langraph",
107
- "habilidades/legacy-code-rescue",
108
- "habilidades/likec4-experto",
109
- "habilidades/manejo-errores",
110
- "habilidades/mapear-codebase",
111
- "habilidades/memoria-busqueda",
112
- "habilidades/meta-skills-estandar",
113
- "habilidades/microservicios",
114
- "habilidades/mobile-flutter",
115
- "habilidades/mobile-react-native",
116
- "habilidades/mongodb-experto",
117
- "habilidades/monitoring-alertas",
118
- "habilidades/nemesis-evaluacion-json",
119
- "habilidades/nemesis-redistribuir",
120
- "habilidades/nestjs-experto",
121
- "habilidades/nextjs-experto",
122
- "habilidades/nextjs-patrones",
123
- "habilidades/nextjs-testing",
124
- "habilidades/node-experto",
125
- "habilidades/notificaciones-multicanal",
126
- "habilidades/nuevo-proyecto",
127
- "habilidades/orquestacion-async",
128
- "habilidades/paid-media-tracking",
129
- "habilidades/patrones-python",
130
- "habilidades/perfil-usuario",
131
- "habilidades/performance-baseline",
132
- "habilidades/php-experto",
133
- "habilidades/php-patrones",
134
- "habilidades/php-testing",
135
- "habilidades/planear-fase",
136
- "habilidades/postgresql-experto",
137
- "habilidades/prevencion-racionalizacion",
138
- "habilidades/prevencion-sobreingenieria",
139
- "habilidades/privacy-memoria",
140
- "habilidades/proceso-autoverificacion-evidencias",
141
- "habilidades/proceso-confianza-pre-implementacion",
142
- "habilidades/proceso-ddia-fundamentos",
143
- "habilidades/proceso-ddia-streaming",
144
- "habilidades/proceso-debate-adversarial",
145
- "habilidades/proceso-discovery-machote",
146
- "habilidades/proceso-dynamic-workflows",
147
- "habilidades/proceso-intent-engineering",
148
- "habilidades/proceso-modular-split",
149
- "habilidades/prompt-engineering",
150
- "habilidades/protocolo-revision-swl",
151
- "habilidades/rag-arquitectura",
152
- "habilidades/rails-experto",
153
- "habilidades/react-experto",
154
- "habilidades/react-optimizacion",
155
- "habilidades/redis-experto",
156
- "habilidades/reducir-entropia",
157
- "habilidades/release-semver",
158
- "habilidades/rust-experto",
159
- "habilidades/rust-patrones",
160
- "habilidades/rust-testing",
161
- "habilidades/seguridad-skills-ia",
162
- "habilidades/sql-optimizacion",
163
- "habilidades/sre-patrones",
164
- "habilidades/state-inconsistency-auditor-swl",
165
- "habilidades/stripe-pagos",
166
- "habilidades/structured-outputs",
167
- "habilidades/swift-experto",
168
- "habilidades/swift-patrones",
169
- "habilidades/swift-testing",
170
- "habilidades/swl-claudemd",
171
- "habilidades/swl-dashboard",
172
- "habilidades/swl-markitdown",
173
- "habilidades/swl-revisar-impacto",
174
- "habilidades/tailwind-experto",
175
- "habilidades/tdd-workflow",
176
- "habilidades/terraform-experto",
177
- "habilidades/testing-python",
178
- "habilidades/threat-model-lite",
179
- "habilidades/tracing-processor",
180
- "habilidades/tracking-measurement",
181
- "habilidades/typescript-avanzado",
182
- "habilidades/typescript-diagnosticos",
183
- "habilidades/ux-diseno",
184
- "habilidades/validacion-ci-sistema",
185
- "habilidades/verificacion-evidencia",
186
- "habilidades/verificar-trabajo",
187
- "habilidades/web-fetcher-routing",
188
- "habilidades/wiki-conocimiento",
189
- "habilidades/wireframes-flujos",
190
- "habilidades/workflow-claude-code"
191
- ],
192
- "agents": [
193
- "agentes/accesibilidad-wcag-swl.md",
194
- "agentes/arquitecto-swl.md",
195
- "agentes/auto-evolucion-swl.md",
196
- "agentes/backend-api-swl.md",
197
- "agentes/backend-csharp-swl.md",
198
- "agentes/backend-go-swl.md",
199
- "agentes/backend-java-swl.md",
200
- "agentes/backend-node-swl.md",
201
- "agentes/backend-python-swl.md",
202
- "agentes/backend-rust-swl.md",
203
- "agentes/backend-workers-swl.md",
204
- "agentes/cloud-infra-swl.md",
205
- "agentes/consolidador-swl.md",
206
- "agentes/datos-swl.md",
207
- "agentes/depurador-swl.md",
208
- "agentes/devops-ci-swl.md",
209
- "agentes/disenador-ui-swl.md",
210
- "agentes/documentador-swl.md",
211
- "agentes/frontend-angular-swl.md",
212
- "agentes/frontend-css-swl.md",
213
- "agentes/frontend-react-swl.md",
214
- "agentes/frontend-swl.md",
215
- "agentes/frontend-tailwind-swl.md",
216
- "agentes/gh-fix-ci-swl.md",
217
- "agentes/implementador-swl.md",
218
- "agentes/investigador-swl.md",
219
- "agentes/investigador-ux-swl.md",
220
- "agentes/llm-apps-swl.md",
221
- "agentes/migrador-swl.md",
222
- "agentes/mobile-android-swl.md",
223
- "agentes/mobile-cross-swl.md",
224
- "agentes/mobile-ios-swl.md",
225
- "agentes/mobile-testing-swl.md",
226
- "agentes/nemesis-auditor-swl.md",
227
- "agentes/notificador-swl.md",
228
- "agentes/observabilidad-swl.md",
229
- "agentes/orquestador-swl.md",
230
- "agentes/pagos-swl.md",
231
- "agentes/perfilador-usuario-swl.md",
232
- "agentes/planificador-swl.md",
233
- "agentes/producto-prd-swl.md",
234
- "agentes/red-team-swl.md",
235
- "agentes/release-manager-swl.md",
236
- "agentes/rendimiento-swl.md",
237
- "agentes/resolutor-build-swl.md",
238
- "agentes/revisor-angular-swl.md",
239
- "agentes/revisor-codigo-swl.md",
240
- "agentes/revisor-csharp-swl.md",
241
- "agentes/revisor-go-swl.md",
242
- "agentes/revisor-java-swl.md",
243
- "agentes/revisor-kotlin-swl.md",
244
- "agentes/revisor-nextjs-swl.md",
245
- "agentes/revisor-php-swl.md",
246
- "agentes/revisor-react-swl.md",
247
- "agentes/revisor-rust-swl.md",
248
- "agentes/revisor-seguridad-swl.md",
249
- "agentes/revisor-swift-swl.md",
250
- "agentes/revisor-typescript-swl.md",
251
- "agentes/sre-swl.md",
252
- "agentes/tdd-qa-swl.md"
253
- ],
254
- "hooks": {
255
- "PreToolUse": [
256
- {
257
- "matcher": "Write|Edit",
258
- "type": "command",
259
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/escaneo-secretos.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
260
- },
261
- {
262
- "matcher": "Write|Edit",
263
- "type": "command",
264
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/proteccion-rutas.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
265
- },
266
- {
267
- "matcher": "Bash",
268
- "type": "command",
269
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/calidad-pre-commit.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
270
- },
271
- {
272
- "type": "command",
273
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/risk-scoring.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
274
- },
275
- {
276
- "matcher": "Bash",
277
- "type": "command",
278
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/calidad-typescript.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
279
- },
280
- {
281
- "matcher": "Glob|Grep|Read",
282
- "type": "command",
283
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/grafo-contexto.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
284
- },
285
- {
286
- "matcher": "Bash",
287
- "type": "command",
288
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/auto-background.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
289
- }
290
- ],
291
- "PostToolUse": [
292
- {
293
- "type": "command",
294
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/linea-estado.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
295
- },
296
- {
297
- "type": "command",
298
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/monitor-contexto.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
299
- },
300
- {
301
- "matcher": "Bash|Write|Edit",
302
- "type": "command",
303
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/extraccion-aprendizajes.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
304
- },
305
- {
306
- "matcher": "Bash|Write|Edit",
307
- "type": "command",
308
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/degradacion-instintos.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
309
- },
310
- {
311
- "type": "command",
312
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/tracking-costos.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
313
- },
314
- {
315
- "type": "command",
316
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/inyeccion-contexto.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
317
- },
318
- {
319
- "matcher": "Write|Edit",
320
- "type": "command",
321
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/graph-update.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
322
- },
323
- {
324
- "type": "command",
325
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/auto-consolidacion.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
326
- },
327
- {
328
- "matcher": "Agent",
329
- "type": "command",
330
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/telemetria-agentes.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
331
- },
332
- {
333
- "type": "command",
334
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/audit-trail.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
335
- },
336
- {
337
- "matcher": "Agent",
338
- "type": "command",
339
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/agente-lifecycle.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
340
- }
341
- ],
342
- "UserPromptSubmit": [
343
- {
344
- "type": "command",
345
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/clasificador-mensajes.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
346
- }
347
- ],
348
- "Stop": [
349
- {
350
- "type": "command",
351
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/resumen-sesion.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
352
- },
353
- {
354
- "type": "command",
355
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/ciclo-evolucion.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
356
- }
357
- ],
358
- "SubagentStop": [
359
- {
360
- "type": "command",
361
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/ciclo-evolucion-subagente.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
362
- }
363
- ],
364
- "PreCompact": [
365
- {
366
- "type": "command",
367
- "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/preservar-estado-pre-compact.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
368
- }
369
- ]
370
- }
371
- }
1
+ {
2
+ "name": "swl-ses",
3
+ "version": "2.2.0",
4
+ "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot. 60 agentes, 182 habilidades, 44 comandos, 77 reglas y 48 hooks. 76 librerias. 11 lenguajes. Soporta Claude Code, Copilot, OpenCode, Codex y Gemini CLI. Loop evaluator-optimizer en /swl:nemesis (ADR-0021). v1.8.0 unifica los directorios runtime de .planning/ al ingles (evolution/, auto-evolution/, user-profile/, archive/), manteniendo fases/ en espanol, con guard validar-planning-paths y allowlist canonica (ADR-0031). Hereda de v1.7.4: skill calidad-anti-patrones-universales + scripts/lib/pr-analyzer.js + 3 sub-secciones en estilo-sin-ai-isms.",
5
+ "author": "Saul Wade Leon",
6
+ "license": "MIT",
7
+ "repository": "https://github.com/saul-wade/swl-ses",
8
+ "skills": [
9
+ "habilidades/accesibilidad-a11y",
10
+ "habilidades/agent-browser",
11
+ "habilidades/agent-deep-links",
12
+ "habilidades/agentes-como-servicio",
13
+ "habilidades/ai-runtime-security",
14
+ "habilidades/angular-avanzado",
15
+ "habilidades/angular-moderno",
16
+ "habilidades/api-rest-diseno",
17
+ "habilidades/aprender-de-git-diff",
18
+ "habilidades/aprendizaje-continuo",
19
+ "habilidades/async-python",
20
+ "habilidades/auth-patrones",
21
+ "habilidades/auto-evolucion-protocolo",
22
+ "habilidades/autoresearch",
23
+ "habilidades/azure-cloud",
24
+ "habilidades/backend-async-postgres-testing",
25
+ "habilidades/backend-error-design",
26
+ "habilidades/backend-mcp-servidor",
27
+ "habilidades/backend-production-resilience",
28
+ "habilidades/benchmark-memoria",
29
+ "habilidades/brainstorming",
30
+ "habilidades/browser-interaction-patterns",
31
+ "habilidades/browser-research-domains",
32
+ "habilidades/build-errors-cpp",
33
+ "habilidades/build-errors-csharp",
34
+ "habilidades/build-errors-go",
35
+ "habilidades/build-errors-java",
36
+ "habilidades/build-errors-kotlin",
37
+ "habilidades/build-errors-nextjs",
38
+ "habilidades/build-errors-php",
39
+ "habilidades/build-errors-python",
40
+ "habilidades/build-errors-rust",
41
+ "habilidades/build-errors-swift",
42
+ "habilidades/build-errors-typescript",
43
+ "habilidades/calidad-anti-patrones-universales",
44
+ "habilidades/calidad-contract-testing",
45
+ "habilidades/calidad-mutation-testing",
46
+ "habilidades/changelog-generator",
47
+ "habilidades/checklist-calidad",
48
+ "habilidades/checklist-seguridad",
49
+ "habilidades/checkpoints-verificacion",
50
+ "habilidades/ci-cd-pipelines",
51
+ "habilidades/cloud-aws",
52
+ "habilidades/compactacion-contexto",
53
+ "habilidades/contenedores-docker",
54
+ "habilidades/context-builder",
55
+ "habilidades/control-profundidad",
56
+ "habilidades/csharp-experto",
57
+ "habilidades/csharp-patrones",
58
+ "habilidades/csharp-testing",
59
+ "habilidades/css-moderno",
60
+ "habilidades/datos-etl",
61
+ "habilidades/dbml-experto",
62
+ "habilidades/dependencias-auditoria",
63
+ "habilidades/deprecacion-migracion",
64
+ "habilidades/design-tokens",
65
+ "habilidades/devsecops-pipeline-security",
66
+ "habilidades/diagrama-arquitectura",
67
+ "habilidades/discutir-fase",
68
+ "habilidades/diseno-herramientas-agente",
69
+ "habilidades/diseno-responsivo",
70
+ "habilidades/django-experto",
71
+ "habilidades/doc-sync",
72
+ "habilidades/doubt-driven-review",
73
+ "habilidades/drift-detection",
74
+ "habilidades/ejecutar-fase",
75
+ "habilidades/ejecutar-task-iterativo",
76
+ "habilidades/estilo-sin-ai-isms",
77
+ "habilidades/estructura-proyecto-claude",
78
+ "habilidades/eval-framework",
79
+ "habilidades/evaluacion-agentes",
80
+ "habilidades/event-driven",
81
+ "habilidades/extraccion-documentos",
82
+ "habilidades/extractor-de-aprendizajes",
83
+ "habilidades/fastapi-experto",
84
+ "habilidades/feynman-auditor-swl",
85
+ "habilidades/filament-admin",
86
+ "habilidades/frontend-avanzado",
87
+ "habilidades/gcp-cloud",
88
+ "habilidades/generacion-mermaid",
89
+ "habilidades/git-worktrees-paralelo",
90
+ "habilidades/go-experto",
91
+ "habilidades/go-patrones",
92
+ "habilidades/go-testing",
93
+ "habilidades/graphql-experto",
94
+ "habilidades/guardrail-semantico",
95
+ "habilidades/harness-claude-code",
96
+ "habilidades/iam-secretos",
97
+ "habilidades/infra-github-actions",
98
+ "habilidades/instalar-sistema",
99
+ "habilidades/java-experto",
100
+ "habilidades/java-patrones",
101
+ "habilidades/java-testing",
102
+ "habilidades/kotlin-compose",
103
+ "habilidades/kotlin-experto",
104
+ "habilidades/kotlin-testing",
105
+ "habilidades/kubernetes-orquestacion",
106
+ "habilidades/langchain-langraph",
107
+ "habilidades/legacy-code-rescue",
108
+ "habilidades/likec4-experto",
109
+ "habilidades/manejo-errores",
110
+ "habilidades/mapear-codebase",
111
+ "habilidades/memoria-busqueda",
112
+ "habilidades/meta-skills-estandar",
113
+ "habilidades/microservicios",
114
+ "habilidades/mobile-flutter",
115
+ "habilidades/mobile-react-native",
116
+ "habilidades/mongodb-experto",
117
+ "habilidades/monitoring-alertas",
118
+ "habilidades/nemesis-evaluacion-json",
119
+ "habilidades/nemesis-redistribuir",
120
+ "habilidades/nestjs-experto",
121
+ "habilidades/nextjs-experto",
122
+ "habilidades/nextjs-patrones",
123
+ "habilidades/nextjs-testing",
124
+ "habilidades/node-experto",
125
+ "habilidades/notificaciones-multicanal",
126
+ "habilidades/nuevo-proyecto",
127
+ "habilidades/orquestacion-async",
128
+ "habilidades/paid-media-tracking",
129
+ "habilidades/patrones-python",
130
+ "habilidades/perfil-usuario",
131
+ "habilidades/performance-baseline",
132
+ "habilidades/php-experto",
133
+ "habilidades/php-patrones",
134
+ "habilidades/php-testing",
135
+ "habilidades/planear-fase",
136
+ "habilidades/postgresql-experto",
137
+ "habilidades/prevencion-racionalizacion",
138
+ "habilidades/prevencion-sobreingenieria",
139
+ "habilidades/privacy-memoria",
140
+ "habilidades/proceso-autoverificacion-evidencias",
141
+ "habilidades/proceso-confianza-pre-implementacion",
142
+ "habilidades/proceso-ddia-fundamentos",
143
+ "habilidades/proceso-ddia-streaming",
144
+ "habilidades/proceso-debate-adversarial",
145
+ "habilidades/proceso-discovery-machote",
146
+ "habilidades/proceso-dynamic-workflows",
147
+ "habilidades/proceso-intent-engineering",
148
+ "habilidades/proceso-modular-split",
149
+ "habilidades/prompt-engineering",
150
+ "habilidades/protocolo-revision-swl",
151
+ "habilidades/rag-arquitectura",
152
+ "habilidades/rails-experto",
153
+ "habilidades/react-experto",
154
+ "habilidades/react-optimizacion",
155
+ "habilidades/redis-experto",
156
+ "habilidades/reducir-entropia",
157
+ "habilidades/release-semver",
158
+ "habilidades/rust-experto",
159
+ "habilidades/rust-patrones",
160
+ "habilidades/rust-testing",
161
+ "habilidades/seguridad-skills-ia",
162
+ "habilidades/sql-optimizacion",
163
+ "habilidades/sre-patrones",
164
+ "habilidades/state-inconsistency-auditor-swl",
165
+ "habilidades/stripe-pagos",
166
+ "habilidades/structured-outputs",
167
+ "habilidades/swift-experto",
168
+ "habilidades/swift-patrones",
169
+ "habilidades/swift-testing",
170
+ "habilidades/swl-claudemd",
171
+ "habilidades/swl-dashboard",
172
+ "habilidades/swl-markitdown",
173
+ "habilidades/swl-revisar-impacto",
174
+ "habilidades/tailwind-experto",
175
+ "habilidades/tdd-workflow",
176
+ "habilidades/terraform-experto",
177
+ "habilidades/testing-python",
178
+ "habilidades/threat-model-lite",
179
+ "habilidades/tracing-processor",
180
+ "habilidades/tracking-measurement",
181
+ "habilidades/typescript-avanzado",
182
+ "habilidades/typescript-diagnosticos",
183
+ "habilidades/ux-diseno",
184
+ "habilidades/validacion-ci-sistema",
185
+ "habilidades/verificacion-evidencia",
186
+ "habilidades/verificar-trabajo",
187
+ "habilidades/web-fetcher-routing",
188
+ "habilidades/wiki-conocimiento",
189
+ "habilidades/wireframes-flujos",
190
+ "habilidades/workflow-claude-code"
191
+ ],
192
+ "agents": [
193
+ "agentes/accesibilidad-wcag-swl.md",
194
+ "agentes/arquitecto-swl.md",
195
+ "agentes/auto-evolucion-swl.md",
196
+ "agentes/backend-api-swl.md",
197
+ "agentes/backend-csharp-swl.md",
198
+ "agentes/backend-go-swl.md",
199
+ "agentes/backend-java-swl.md",
200
+ "agentes/backend-node-swl.md",
201
+ "agentes/backend-python-swl.md",
202
+ "agentes/backend-rust-swl.md",
203
+ "agentes/backend-workers-swl.md",
204
+ "agentes/cloud-infra-swl.md",
205
+ "agentes/consolidador-swl.md",
206
+ "agentes/datos-swl.md",
207
+ "agentes/depurador-swl.md",
208
+ "agentes/devops-ci-swl.md",
209
+ "agentes/disenador-ui-swl.md",
210
+ "agentes/documentador-swl.md",
211
+ "agentes/frontend-angular-swl.md",
212
+ "agentes/frontend-css-swl.md",
213
+ "agentes/frontend-react-swl.md",
214
+ "agentes/frontend-swl.md",
215
+ "agentes/frontend-tailwind-swl.md",
216
+ "agentes/gh-fix-ci-swl.md",
217
+ "agentes/implementador-swl.md",
218
+ "agentes/investigador-swl.md",
219
+ "agentes/investigador-ux-swl.md",
220
+ "agentes/llm-apps-swl.md",
221
+ "agentes/migrador-swl.md",
222
+ "agentes/mobile-android-swl.md",
223
+ "agentes/mobile-cross-swl.md",
224
+ "agentes/mobile-ios-swl.md",
225
+ "agentes/mobile-testing-swl.md",
226
+ "agentes/nemesis-auditor-swl.md",
227
+ "agentes/notificador-swl.md",
228
+ "agentes/observabilidad-swl.md",
229
+ "agentes/orquestador-swl.md",
230
+ "agentes/pagos-swl.md",
231
+ "agentes/perfilador-usuario-swl.md",
232
+ "agentes/planificador-swl.md",
233
+ "agentes/producto-prd-swl.md",
234
+ "agentes/red-team-swl.md",
235
+ "agentes/release-manager-swl.md",
236
+ "agentes/rendimiento-swl.md",
237
+ "agentes/resolutor-build-swl.md",
238
+ "agentes/revisor-angular-swl.md",
239
+ "agentes/revisor-codigo-swl.md",
240
+ "agentes/revisor-csharp-swl.md",
241
+ "agentes/revisor-go-swl.md",
242
+ "agentes/revisor-java-swl.md",
243
+ "agentes/revisor-kotlin-swl.md",
244
+ "agentes/revisor-nextjs-swl.md",
245
+ "agentes/revisor-php-swl.md",
246
+ "agentes/revisor-react-swl.md",
247
+ "agentes/revisor-rust-swl.md",
248
+ "agentes/revisor-seguridad-swl.md",
249
+ "agentes/revisor-swift-swl.md",
250
+ "agentes/revisor-typescript-swl.md",
251
+ "agentes/sre-swl.md",
252
+ "agentes/tdd-qa-swl.md"
253
+ ],
254
+ "hooks": {
255
+ "PreToolUse": [
256
+ {
257
+ "matcher": "Write|Edit",
258
+ "type": "command",
259
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/escaneo-secretos.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
260
+ },
261
+ {
262
+ "matcher": "Write|Edit",
263
+ "type": "command",
264
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/proteccion-rutas.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
265
+ },
266
+ {
267
+ "matcher": "Bash",
268
+ "type": "command",
269
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/calidad-pre-commit.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
270
+ },
271
+ {
272
+ "type": "command",
273
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/risk-scoring.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
274
+ },
275
+ {
276
+ "matcher": "Bash",
277
+ "type": "command",
278
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/calidad-typescript.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
279
+ },
280
+ {
281
+ "matcher": "Glob|Grep|Read",
282
+ "type": "command",
283
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/grafo-contexto.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
284
+ },
285
+ {
286
+ "matcher": "Bash",
287
+ "type": "command",
288
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/auto-background.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
289
+ }
290
+ ],
291
+ "PostToolUse": [
292
+ {
293
+ "type": "command",
294
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/linea-estado.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
295
+ },
296
+ {
297
+ "type": "command",
298
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/monitor-contexto.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
299
+ },
300
+ {
301
+ "matcher": "Bash|Write|Edit",
302
+ "type": "command",
303
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/extraccion-aprendizajes.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
304
+ },
305
+ {
306
+ "matcher": "Bash|Write|Edit",
307
+ "type": "command",
308
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/degradacion-instintos.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
309
+ },
310
+ {
311
+ "type": "command",
312
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/tracking-costos.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
313
+ },
314
+ {
315
+ "type": "command",
316
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/inyeccion-contexto.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
317
+ },
318
+ {
319
+ "matcher": "Write|Edit",
320
+ "type": "command",
321
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/graph-update.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
322
+ },
323
+ {
324
+ "type": "command",
325
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/auto-consolidacion.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
326
+ },
327
+ {
328
+ "matcher": "Agent",
329
+ "type": "command",
330
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/telemetria-agentes.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
331
+ },
332
+ {
333
+ "type": "command",
334
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/audit-trail.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
335
+ },
336
+ {
337
+ "matcher": "Agent",
338
+ "type": "command",
339
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/agente-lifecycle.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
340
+ }
341
+ ],
342
+ "UserPromptSubmit": [
343
+ {
344
+ "type": "command",
345
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/clasificador-mensajes.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
346
+ }
347
+ ],
348
+ "Stop": [
349
+ {
350
+ "type": "command",
351
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/resumen-sesion.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
352
+ },
353
+ {
354
+ "type": "command",
355
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/ciclo-evolucion.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
356
+ }
357
+ ],
358
+ "SubagentStop": [
359
+ {
360
+ "type": "command",
361
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/ciclo-evolucion-subagente.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
362
+ }
363
+ ],
364
+ "PreCompact": [
365
+ {
366
+ "type": "command",
367
+ "command": "PATH=\"/c/Program Files/nodejs:/c/Program Files (x86)/nodejs:$PATH\" node -e \"try{require('./hooks/preservar-estado-pre-compact.js')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\""
368
+ }
369
+ ]
370
+ }
371
+ }