swl-ses 3.3.3 → 3.3.4

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.
package/CLAUDE.md CHANGED
@@ -1,4 +1,4 @@
1
- # CLAUDE.md — swl-software-engineering-system v3.0
1
+ # CLAUDE.md — swl-software-engineering-system v3.3
2
2
 
3
3
  Este archivo guía a Claude Code cuando trabaja en este repositorio.
4
4
 
@@ -174,7 +174,7 @@ backend-api-swl (diseño de API)
174
174
 
175
175
  Los miembros se lanzan en **paralelo real** (múltiples `Agent()` en un solo mensaje).
176
176
 
177
- ## Sistema de habilidades (61 en español + 40 en inglés)
177
+ ## Sistema de habilidades (62 en español + 40 en inglés)
178
178
 
179
179
  ### Estándar oficial de skills (regla: `skills-estandar.md`)
180
180
 
@@ -102,6 +102,7 @@
102
102
  "habilidades/aprendizaje-continuo",
103
103
  "habilidades/auto-evolucion-protocolo",
104
104
  "habilidades/checklist-calidad",
105
+ "habilidades/tdd-workflow",
105
106
  "habilidades/checkpoints-verificacion",
106
107
  "habilidades/validacion-ci-sistema",
107
108
  "habilidades/estructura-proyecto-claude",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swl-ses",
3
- "version": "3.3.3",
3
+ "version": "3.3.4",
4
4
  "description": "Sistema de ingenieria de software auto-evolutivo con 37 agentes, 62 habilidades, 17 comandos, 11 reglas y 6 hooks. Cubre el SDLC completo. 100% en espanol (Mexico).",
5
5
  "bin": {
6
6
  "swl-ses": "bin/swl-ses.js"
@@ -132,7 +132,7 @@ function registrarHooks(opciones) {
132
132
  }
133
133
 
134
134
  hooksPorEvento[evento].push({
135
- matcher: config.matcher || undefined,
135
+ matcher: config.matcher || '',
136
136
  hooks: [{
137
137
  type: 'command',
138
138
  command: generarComando(filename, hooksDir, esGlobal),
@@ -259,8 +259,8 @@ function verificarHooks(settingsPath, hookFiles) {
259
259
  }
260
260
 
261
261
  // Verificar matcher correcto
262
- const matcherEsperado = config.matcher || undefined;
263
- const matcherActual = encontrado.matcher || undefined;
262
+ const matcherEsperado = config.matcher || '';
263
+ const matcherActual = encontrado.matcher || '';
264
264
 
265
265
  if (matcherEsperado !== matcherActual) {
266
266
  incorrectos.push(`${filename}: matcher esperado="${matcherEsperado || '(ninguno)'}" actual="${matcherActual || '(ninguno)'}"`);