@saulwade/swl-ses 1.3.8 → 1.4.1

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 (148) hide show
  1. package/CLAUDE.md +15 -6
  2. package/README.md +15 -14
  3. package/agentes/nemesis-auditor-swl.md +161 -0
  4. package/bin/swl-mcp-server.js +187 -187
  5. package/bin/swl-webhook-server.js +198 -0
  6. package/comandos/swl/.evolved.json +22 -22
  7. package/comandos/swl/adoptar-proyecto.md +21 -1
  8. package/comandos/swl/claudemd.md +14 -1
  9. package/comandos/swl/contribuir.md +233 -233
  10. package/comandos/swl/exportar-vault.md +108 -0
  11. package/comandos/swl/nemesis.md +122 -0
  12. package/comandos/swl/nuevo-proyecto.md +24 -2
  13. package/comandos/swl/salud.md +34 -0
  14. package/comandos/swl/verificar.md +45 -0
  15. package/gateway/adapters/base.js +109 -0
  16. package/gateway/adapters/discord.js +167 -0
  17. package/gateway/adapters/email.js +221 -0
  18. package/gateway/adapters/slack.js +192 -0
  19. package/gateway/adapters/telegram.js +183 -0
  20. package/gateway/adapters/webhook.js +113 -0
  21. package/gateway/adapters/whatsapp.js +214 -0
  22. package/gateway/agent-executor.js +322 -0
  23. package/gateway/command-relay.js +271 -0
  24. package/gateway/cron/jobs.js +263 -0
  25. package/gateway/cron/scheduler.js +322 -0
  26. package/gateway/cron/store.js +335 -0
  27. package/gateway/index.js +320 -0
  28. package/gateway/lib/event-channel.js +191 -0
  29. package/gateway/session.js +131 -0
  30. package/gateway/webhook-server.js +324 -0
  31. package/habilidades/backend-production-resilience/SKILL.md +288 -288
  32. package/habilidades/benchmark-memoria/SKILL.md +186 -186
  33. package/habilidades/build-errors-nextjs/SKILL.md +55 -1
  34. package/habilidades/diagrama-arquitectura/assets/template.html +276 -276
  35. package/habilidades/doubt-driven-review/SKILL.md +171 -171
  36. package/habilidades/doubt-driven-review/recursos/EXAMPLES.md +130 -130
  37. package/habilidades/eval-framework/SKILL.md +212 -212
  38. package/habilidades/extractor-de-aprendizajes/SKILL.md +20 -10
  39. package/habilidades/feynman-auditor-swl/SKILL.md +123 -0
  40. package/habilidades/feynman-auditor-swl/recursos/preguntas-language-agnostic.md +108 -0
  41. package/habilidades/harness-claude-code/SKILL.md +299 -299
  42. package/habilidades/infra-github-actions/SKILL.md +166 -166
  43. package/habilidades/legacy-code-rescue/SKILL.md +267 -267
  44. package/habilidades/manejo-errores/.evolved.json +8 -8
  45. package/habilidades/meta-skills-estandar/recursos/convencion-examples.md +93 -93
  46. package/habilidades/meta-skills-estandar/recursos/skills-as-agents.md +163 -163
  47. package/habilidades/nextjs-testing/SKILL.md +89 -5
  48. package/habilidades/node-experto/SKILL.md +37 -1
  49. package/habilidades/patrones-python/SKILL.md +229 -229
  50. package/habilidades/patrones-python/recursos/patrones-avanzados.md +469 -469
  51. package/habilidades/planear-fase/SKILL.md +319 -319
  52. package/habilidades/react-experto/SKILL.md +45 -4
  53. package/habilidades/release-semver/.evolved.json +8 -8
  54. package/habilidades/state-inconsistency-auditor-swl/SKILL.md +166 -0
  55. package/habilidades/state-inconsistency-auditor-swl/recursos/coupled-state-patterns.md +147 -0
  56. package/habilidades/tdd-workflow/SKILL.md +36 -4
  57. package/habilidades/testing-python/SKILL.md +340 -340
  58. package/habilidades/web-fetcher-routing/SKILL.md +75 -0
  59. package/hooks/claudemd-bloat-detector.js +161 -161
  60. package/hooks/inyeccion-contexto.js +8 -3
  61. package/hooks/lib/agent-routing.js +107 -107
  62. package/hooks/lib/auto-consolidator.js +335 -335
  63. package/hooks/lib/error-classifier.js +308 -308
  64. package/hooks/lib/merkle-audit.js +96 -96
  65. package/hooks/lib/provenance-tracker.js +191 -191
  66. package/hooks/lib/rate-limit-ip.js +177 -0
  67. package/hooks/lib/rate-limit-tracker.js +253 -253
  68. package/hooks/lib/resource-quota.js +122 -122
  69. package/hooks/lib/retry-jitter.js +165 -165
  70. package/hooks/lib/security-net.js +201 -0
  71. package/hooks/lib/skill-auditor.js +588 -588
  72. package/hooks/lib/sync-status.js +228 -228
  73. package/hooks/lib/taint-tracker.js +107 -107
  74. package/hooks/lib/text-similarity.js +241 -241
  75. package/hooks/lib/toon-compressor.js +245 -245
  76. package/hooks/lib/webhook-dedup.js +184 -0
  77. package/hooks/lib/webhook-verify.js +123 -0
  78. package/hooks/proteccion-rutas.js +120 -15
  79. package/hooks/registro-turnos.js +209 -209
  80. package/hooks/sugerir-regenerar-inventario.js +170 -170
  81. package/hooks/validar-formato-post-subagente.js +140 -140
  82. package/hooks/validar-memoria-hook.js +218 -218
  83. package/instintos/prompt-appendices.yaml +57 -57
  84. package/manifiestos/agent-output-schemas.json +57 -57
  85. package/manifiestos/modulos.json +31 -0
  86. package/manifiestos/skills-lock.json +1114 -1093
  87. package/package.json +6 -4
  88. package/plantillas/auditor-veto-template.md +105 -105
  89. package/plantillas/github-workflows/README.md +47 -47
  90. package/plantillas/github-workflows/release-please.yml +44 -44
  91. package/plantillas/github-workflows/swl-ci.yml +107 -107
  92. package/plantillas/github-workflows/swl-security.yml +51 -51
  93. package/plugin.json +2 -2
  94. package/reglas/analisis-previo-tareas-grandes.md +172 -172
  95. package/reglas/arreglar-al-detectar.md +147 -147
  96. package/reglas/fragmentos-compartidos.md +152 -152
  97. package/reglas/harness-claude-code.md +213 -213
  98. package/reglas/usar-context7.md +226 -226
  99. package/reglas/usar-sistema-swl.md +251 -0
  100. package/schemas/diary-entry.schema.json +80 -80
  101. package/scripts/audit-tools/audit-history.js +330 -0
  102. package/scripts/audit-tools/bundle-tracker.js +290 -0
  103. package/scripts/audit-tools/canary-monitor.js +352 -0
  104. package/scripts/audit-tools/code-profiler.js +605 -0
  105. package/scripts/audit-tools/dep-doctor.js +320 -0
  106. package/scripts/audit-tools/env-validator.js +206 -0
  107. package/scripts/audit-tools/lib/fs-walk.js +48 -0
  108. package/scripts/audit-tools/lib/output.js +23 -0
  109. package/scripts/audit-tools/migration-checker.js +392 -0
  110. package/scripts/audit-tools/pentest-scanner.js +1436 -0
  111. package/scripts/benchmark-memoria.js +167 -167
  112. package/scripts/comandos/skills.js +251 -2
  113. package/scripts/configurar-branch-protection.js +418 -418
  114. package/scripts/detectar-aprendizajes-duplicados.js +151 -151
  115. package/scripts/field-report.js +199 -199
  116. package/scripts/generar-checklists-consolidados.js +273 -273
  117. package/scripts/generar-inventario.js +420 -420
  118. package/scripts/generar-matriz-lenguajes.js +271 -271
  119. package/scripts/lib/artefactos-python.js +43 -43
  120. package/scripts/lib/benchmark-metrics.js +160 -160
  121. package/scripts/lib/budget-enforcer.js +252 -252
  122. package/scripts/lib/configurar-ci.js +380 -380
  123. package/scripts/lib/contadores-inventario.js +217 -217
  124. package/scripts/lib/detectar-stack-detallado.js +307 -307
  125. package/scripts/lib/diary-entry.js +234 -234
  126. package/scripts/lib/eval-metrics-store.js +218 -218
  127. package/scripts/lib/eval-quality.js +171 -171
  128. package/scripts/lib/eval-schemas.js +144 -144
  129. package/scripts/lib/eval-self-correct.js +106 -106
  130. package/scripts/lib/eval-validator.js +185 -185
  131. package/scripts/lib/jaccard-similarity.js +98 -98
  132. package/scripts/lib/longmemeval-runner.js +125 -125
  133. package/scripts/lib/npm-version.js +261 -261
  134. package/scripts/lib/paquetes-conocidos.js +50 -50
  135. package/scripts/lib/prompt-builder.js +264 -264
  136. package/scripts/lib/rrf-fusion.js +175 -175
  137. package/scripts/lib/scoring-instintos.js +277 -277
  138. package/scripts/lib/semantic-search.js +252 -252
  139. package/scripts/limpiar-artefactos-python.js +131 -131
  140. package/scripts/mcp-server/README.md +128 -128
  141. package/scripts/mcp-server/handlers.js +206 -206
  142. package/scripts/migrar-csv-a-array.js +168 -168
  143. package/scripts/migrar-fase-dominio.js +201 -201
  144. package/scripts/publicar.js +511 -511
  145. package/scripts/run-eval.js +141 -141
  146. package/scripts/validar-manifest.js +195 -195
  147. package/scripts/validar-userland-vacio.js +110 -110
  148. package/scripts/verificar-release.js +110 -0
@@ -1,245 +1,245 @@
1
- 'use strict';
2
-
3
- /**
4
- * TOON Compressor — Compresión de schemas y documentos estructurados.
5
- *
6
- * Patrón adoptado de CC Workflow Studio (generate-toon-schema.ts).
7
- * Reduce el tamaño de JSON schemas y documentos estructurados ~20-25%
8
- * eliminando redundancia sin perder información semántica.
9
- *
10
- * Técnicas aplicadas:
11
- * 1. Eliminar whitespace y formateo innecesario
12
- * 2. Abreviar claves repetitivas con diccionario
13
- * 3. Colapsar descripciones a una línea
14
- * 4. Eliminar campos opcionales con valor default
15
- * 5. Usar notación compacta para tipos simples
16
- *
17
- * Zero dependencias externas.
18
- *
19
- * Uso:
20
- * const { comprimirSchema, descomprimirSchema, comprimirTexto } = require('./lib/toon-compressor');
21
- * const compacto = comprimirSchema(schemaJSON);
22
- * console.log(`Reducción: ${compacto.reduccionPorcentaje}%`);
23
- *
24
- * @module hooks/lib/toon-compressor
25
- */
26
-
27
- // ---------------------------------------------------------------------------
28
- // Diccionario de abreviaciones para claves JSON Schema
29
- // ---------------------------------------------------------------------------
30
-
31
- /**
32
- * Mapeo de claves largas a abreviaciones cortas.
33
- * Solo para claves que aparecen ≥3 veces en un schema típico.
34
- */
35
- const ABREVIACIONES = {
36
- description: 'desc',
37
- properties: 'props',
38
- required: 'req',
39
- additionalProperties: 'addl',
40
- type: 't',
41
- items: 'it',
42
- default: 'def',
43
- enum: 'en',
44
- maxLength: 'maxL',
45
- minLength: 'minL',
46
- minimum: 'min',
47
- maximum: 'max',
48
- pattern: 'pat',
49
- oneOf: '1of',
50
- anyOf: 'aof',
51
- allOf: 'allof',
52
- };
53
-
54
- /** Mapeo inverso para descompresión. */
55
- const ABREVIACIONES_INV = Object.fromEntries(
56
- Object.entries(ABREVIACIONES).map(([k, v]) => [v, k])
57
- );
58
-
59
- // ---------------------------------------------------------------------------
60
- // Funciones core
61
- // ---------------------------------------------------------------------------
62
-
63
- /**
64
- * Comprime un objeto JSON Schema reemplazando claves por abreviaciones.
65
- *
66
- * @param {object} obj - Objeto a comprimir (se clona internamente)
67
- * @returns {object} Objeto con claves abreviadas
68
- */
69
- function _abreviarClaves(obj) {
70
- if (Array.isArray(obj)) {
71
- return obj.map(_abreviarClaves);
72
- }
73
- if (obj !== null && typeof obj === 'object') {
74
- const resultado = {};
75
- for (const [clave, valor] of Object.entries(obj)) {
76
- const claveCorta = ABREVIACIONES[clave] || clave;
77
- resultado[claveCorta] = _abreviarClaves(valor);
78
- }
79
- return resultado;
80
- }
81
- return obj;
82
- }
83
-
84
- /**
85
- * Descomprime un objeto con claves abreviadas a sus nombres originales.
86
- *
87
- * @param {object} obj - Objeto con claves abreviadas
88
- * @returns {object} Objeto con claves originales
89
- */
90
- function _expandirClaves(obj) {
91
- if (Array.isArray(obj)) {
92
- return obj.map(_expandirClaves);
93
- }
94
- if (obj !== null && typeof obj === 'object') {
95
- const resultado = {};
96
- for (const [clave, valor] of Object.entries(obj)) {
97
- const claveLarga = ABREVIACIONES_INV[clave] || clave;
98
- resultado[claveLarga] = _expandirClaves(valor);
99
- }
100
- return resultado;
101
- }
102
- return obj;
103
- }
104
-
105
- /**
106
- * Elimina campos opcionales con valor default conocido.
107
- *
108
- * @param {object} obj - Schema JSON
109
- * @returns {object} Schema sin defaults redundantes
110
- */
111
- function _eliminarDefaults(obj) {
112
- if (Array.isArray(obj)) {
113
- return obj.map(_eliminarDefaults);
114
- }
115
- if (obj !== null && typeof obj === 'object') {
116
- const resultado = {};
117
- for (const [clave, valor] of Object.entries(obj)) {
118
- // Eliminar additionalProperties: true (es el default)
119
- if (clave === 'additionalProperties' && valor === true) continue;
120
- // Eliminar required: [] (vacío = sin requeridos)
121
- if (clave === 'required' && Array.isArray(valor) && valor.length === 0) continue;
122
- // Eliminar description vacía
123
- if (clave === 'description' && valor === '') continue;
124
- resultado[clave] = _eliminarDefaults(valor);
125
- }
126
- return resultado;
127
- }
128
- return obj;
129
- }
130
-
131
- /**
132
- * Colapsa descripciones multi-línea a una sola línea.
133
- *
134
- * @param {object} obj
135
- * @returns {object}
136
- */
137
- function _colapsarDescripciones(obj) {
138
- if (Array.isArray(obj)) {
139
- return obj.map(_colapsarDescripciones);
140
- }
141
- if (obj !== null && typeof obj === 'object') {
142
- const resultado = {};
143
- for (const [clave, valor] of Object.entries(obj)) {
144
- if (clave === 'description' && typeof valor === 'string') {
145
- resultado[clave] = valor.replace(/\s+/g, ' ').trim();
146
- } else {
147
- resultado[clave] = _colapsarDescripciones(valor);
148
- }
149
- }
150
- return resultado;
151
- }
152
- return obj;
153
- }
154
-
155
- // ---------------------------------------------------------------------------
156
- // API pública
157
- // ---------------------------------------------------------------------------
158
-
159
- /**
160
- * Comprime un JSON Schema aplicando todas las técnicas de reducción.
161
- *
162
- * @param {object|string} schema - JSON Schema (objeto o string JSON)
163
- * @returns {{ comprimido: string, original: number, reducido: number, reduccionPorcentaje: number }}
164
- */
165
- function comprimirSchema(schema) {
166
- const obj = typeof schema === 'string' ? JSON.parse(schema) : schema;
167
- const original = JSON.stringify(obj);
168
-
169
- let procesado = _eliminarDefaults(obj);
170
- procesado = _colapsarDescripciones(procesado);
171
- procesado = _abreviarClaves(procesado);
172
-
173
- const comprimido = JSON.stringify(procesado);
174
-
175
- const tamOriginal = original.length;
176
- const tamReducido = comprimido.length;
177
- const reduccion = ((tamOriginal - tamReducido) / tamOriginal) * 100;
178
-
179
- return {
180
- comprimido,
181
- original: tamOriginal,
182
- reducido: tamReducido,
183
- reduccionPorcentaje: Math.round(reduccion * 10) / 10,
184
- };
185
- }
186
-
187
- /**
188
- * Descomprime un JSON Schema con claves abreviadas.
189
- *
190
- * @param {string|object} comprimido - Schema comprimido
191
- * @returns {object} Schema original con claves expandidas
192
- */
193
- function descomprimirSchema(comprimido) {
194
- const obj = typeof comprimido === 'string' ? JSON.parse(comprimido) : comprimido;
195
- return _expandirClaves(obj);
196
- }
197
-
198
- /**
199
- * Comprime texto Markdown eliminando redundancia para reducir tokens.
200
- *
201
- * Técnicas:
202
- * - Colapsar múltiples líneas vacías a una
203
- * - Eliminar trailing whitespace
204
- * - Comprimir tablas (eliminar padding)
205
- * - Eliminar comentarios HTML
206
- *
207
- * @param {string} texto - Texto Markdown
208
- * @returns {{ comprimido: string, original: number, reducido: number, reduccionPorcentaje: number }}
209
- */
210
- function comprimirTexto(texto) {
211
- const original = texto.length;
212
-
213
- let resultado = texto;
214
- // Colapsar 3+ líneas vacías a 2
215
- resultado = resultado.replace(/\n{3,}/g, '\n\n');
216
- // Eliminar trailing whitespace
217
- resultado = resultado.replace(/[ \t]+$/gm, '');
218
- // Eliminar comentarios HTML
219
- resultado = resultado.replace(/<!--[\s\S]*?-->/g, '');
220
- // Comprimir padding en tablas (múltiples espacios → uno)
221
- resultado = resultado.replace(/\|[ \t]{2,}/g, '| ');
222
- resultado = resultado.replace(/[ \t]{2,}\|/g, ' |');
223
-
224
- const reducido = resultado.length;
225
- const reduccion = ((original - reducido) / original) * 100;
226
-
227
- return {
228
- comprimido: resultado,
229
- original,
230
- reducido,
231
- reduccionPorcentaje: Math.round(reduccion * 10) / 10,
232
- };
233
- }
234
-
235
- // ---------------------------------------------------------------------------
236
- // Exports
237
- // ---------------------------------------------------------------------------
238
-
239
- module.exports = {
240
- comprimirSchema,
241
- descomprimirSchema,
242
- comprimirTexto,
243
- // Exponer diccionario para tests
244
- ABREVIACIONES,
245
- };
1
+ 'use strict';
2
+
3
+ /**
4
+ * TOON Compressor — Compresión de schemas y documentos estructurados.
5
+ *
6
+ * Patrón adoptado de CC Workflow Studio (generate-toon-schema.ts).
7
+ * Reduce el tamaño de JSON schemas y documentos estructurados ~20-25%
8
+ * eliminando redundancia sin perder información semántica.
9
+ *
10
+ * Técnicas aplicadas:
11
+ * 1. Eliminar whitespace y formateo innecesario
12
+ * 2. Abreviar claves repetitivas con diccionario
13
+ * 3. Colapsar descripciones a una línea
14
+ * 4. Eliminar campos opcionales con valor default
15
+ * 5. Usar notación compacta para tipos simples
16
+ *
17
+ * Zero dependencias externas.
18
+ *
19
+ * Uso:
20
+ * const { comprimirSchema, descomprimirSchema, comprimirTexto } = require('./lib/toon-compressor');
21
+ * const compacto = comprimirSchema(schemaJSON);
22
+ * console.log(`Reducción: ${compacto.reduccionPorcentaje}%`);
23
+ *
24
+ * @module hooks/lib/toon-compressor
25
+ */
26
+
27
+ // ---------------------------------------------------------------------------
28
+ // Diccionario de abreviaciones para claves JSON Schema
29
+ // ---------------------------------------------------------------------------
30
+
31
+ /**
32
+ * Mapeo de claves largas a abreviaciones cortas.
33
+ * Solo para claves que aparecen ≥3 veces en un schema típico.
34
+ */
35
+ const ABREVIACIONES = {
36
+ description: 'desc',
37
+ properties: 'props',
38
+ required: 'req',
39
+ additionalProperties: 'addl',
40
+ type: 't',
41
+ items: 'it',
42
+ default: 'def',
43
+ enum: 'en',
44
+ maxLength: 'maxL',
45
+ minLength: 'minL',
46
+ minimum: 'min',
47
+ maximum: 'max',
48
+ pattern: 'pat',
49
+ oneOf: '1of',
50
+ anyOf: 'aof',
51
+ allOf: 'allof',
52
+ };
53
+
54
+ /** Mapeo inverso para descompresión. */
55
+ const ABREVIACIONES_INV = Object.fromEntries(
56
+ Object.entries(ABREVIACIONES).map(([k, v]) => [v, k])
57
+ );
58
+
59
+ // ---------------------------------------------------------------------------
60
+ // Funciones core
61
+ // ---------------------------------------------------------------------------
62
+
63
+ /**
64
+ * Comprime un objeto JSON Schema reemplazando claves por abreviaciones.
65
+ *
66
+ * @param {object} obj - Objeto a comprimir (se clona internamente)
67
+ * @returns {object} Objeto con claves abreviadas
68
+ */
69
+ function _abreviarClaves(obj) {
70
+ if (Array.isArray(obj)) {
71
+ return obj.map(_abreviarClaves);
72
+ }
73
+ if (obj !== null && typeof obj === 'object') {
74
+ const resultado = {};
75
+ for (const [clave, valor] of Object.entries(obj)) {
76
+ const claveCorta = ABREVIACIONES[clave] || clave;
77
+ resultado[claveCorta] = _abreviarClaves(valor);
78
+ }
79
+ return resultado;
80
+ }
81
+ return obj;
82
+ }
83
+
84
+ /**
85
+ * Descomprime un objeto con claves abreviadas a sus nombres originales.
86
+ *
87
+ * @param {object} obj - Objeto con claves abreviadas
88
+ * @returns {object} Objeto con claves originales
89
+ */
90
+ function _expandirClaves(obj) {
91
+ if (Array.isArray(obj)) {
92
+ return obj.map(_expandirClaves);
93
+ }
94
+ if (obj !== null && typeof obj === 'object') {
95
+ const resultado = {};
96
+ for (const [clave, valor] of Object.entries(obj)) {
97
+ const claveLarga = ABREVIACIONES_INV[clave] || clave;
98
+ resultado[claveLarga] = _expandirClaves(valor);
99
+ }
100
+ return resultado;
101
+ }
102
+ return obj;
103
+ }
104
+
105
+ /**
106
+ * Elimina campos opcionales con valor default conocido.
107
+ *
108
+ * @param {object} obj - Schema JSON
109
+ * @returns {object} Schema sin defaults redundantes
110
+ */
111
+ function _eliminarDefaults(obj) {
112
+ if (Array.isArray(obj)) {
113
+ return obj.map(_eliminarDefaults);
114
+ }
115
+ if (obj !== null && typeof obj === 'object') {
116
+ const resultado = {};
117
+ for (const [clave, valor] of Object.entries(obj)) {
118
+ // Eliminar additionalProperties: true (es el default)
119
+ if (clave === 'additionalProperties' && valor === true) continue;
120
+ // Eliminar required: [] (vacío = sin requeridos)
121
+ if (clave === 'required' && Array.isArray(valor) && valor.length === 0) continue;
122
+ // Eliminar description vacía
123
+ if (clave === 'description' && valor === '') continue;
124
+ resultado[clave] = _eliminarDefaults(valor);
125
+ }
126
+ return resultado;
127
+ }
128
+ return obj;
129
+ }
130
+
131
+ /**
132
+ * Colapsa descripciones multi-línea a una sola línea.
133
+ *
134
+ * @param {object} obj
135
+ * @returns {object}
136
+ */
137
+ function _colapsarDescripciones(obj) {
138
+ if (Array.isArray(obj)) {
139
+ return obj.map(_colapsarDescripciones);
140
+ }
141
+ if (obj !== null && typeof obj === 'object') {
142
+ const resultado = {};
143
+ for (const [clave, valor] of Object.entries(obj)) {
144
+ if (clave === 'description' && typeof valor === 'string') {
145
+ resultado[clave] = valor.replace(/\s+/g, ' ').trim();
146
+ } else {
147
+ resultado[clave] = _colapsarDescripciones(valor);
148
+ }
149
+ }
150
+ return resultado;
151
+ }
152
+ return obj;
153
+ }
154
+
155
+ // ---------------------------------------------------------------------------
156
+ // API pública
157
+ // ---------------------------------------------------------------------------
158
+
159
+ /**
160
+ * Comprime un JSON Schema aplicando todas las técnicas de reducción.
161
+ *
162
+ * @param {object|string} schema - JSON Schema (objeto o string JSON)
163
+ * @returns {{ comprimido: string, original: number, reducido: number, reduccionPorcentaje: number }}
164
+ */
165
+ function comprimirSchema(schema) {
166
+ const obj = typeof schema === 'string' ? JSON.parse(schema) : schema;
167
+ const original = JSON.stringify(obj);
168
+
169
+ let procesado = _eliminarDefaults(obj);
170
+ procesado = _colapsarDescripciones(procesado);
171
+ procesado = _abreviarClaves(procesado);
172
+
173
+ const comprimido = JSON.stringify(procesado);
174
+
175
+ const tamOriginal = original.length;
176
+ const tamReducido = comprimido.length;
177
+ const reduccion = ((tamOriginal - tamReducido) / tamOriginal) * 100;
178
+
179
+ return {
180
+ comprimido,
181
+ original: tamOriginal,
182
+ reducido: tamReducido,
183
+ reduccionPorcentaje: Math.round(reduccion * 10) / 10,
184
+ };
185
+ }
186
+
187
+ /**
188
+ * Descomprime un JSON Schema con claves abreviadas.
189
+ *
190
+ * @param {string|object} comprimido - Schema comprimido
191
+ * @returns {object} Schema original con claves expandidas
192
+ */
193
+ function descomprimirSchema(comprimido) {
194
+ const obj = typeof comprimido === 'string' ? JSON.parse(comprimido) : comprimido;
195
+ return _expandirClaves(obj);
196
+ }
197
+
198
+ /**
199
+ * Comprime texto Markdown eliminando redundancia para reducir tokens.
200
+ *
201
+ * Técnicas:
202
+ * - Colapsar múltiples líneas vacías a una
203
+ * - Eliminar trailing whitespace
204
+ * - Comprimir tablas (eliminar padding)
205
+ * - Eliminar comentarios HTML
206
+ *
207
+ * @param {string} texto - Texto Markdown
208
+ * @returns {{ comprimido: string, original: number, reducido: number, reduccionPorcentaje: number }}
209
+ */
210
+ function comprimirTexto(texto) {
211
+ const original = texto.length;
212
+
213
+ let resultado = texto;
214
+ // Colapsar 3+ líneas vacías a 2
215
+ resultado = resultado.replace(/\n{3,}/g, '\n\n');
216
+ // Eliminar trailing whitespace
217
+ resultado = resultado.replace(/[ \t]+$/gm, '');
218
+ // Eliminar comentarios HTML
219
+ resultado = resultado.replace(/<!--[\s\S]*?-->/g, '');
220
+ // Comprimir padding en tablas (múltiples espacios → uno)
221
+ resultado = resultado.replace(/\|[ \t]{2,}/g, '| ');
222
+ resultado = resultado.replace(/[ \t]{2,}\|/g, ' |');
223
+
224
+ const reducido = resultado.length;
225
+ const reduccion = ((original - reducido) / original) * 100;
226
+
227
+ return {
228
+ comprimido: resultado,
229
+ original,
230
+ reducido,
231
+ reduccionPorcentaje: Math.round(reduccion * 10) / 10,
232
+ };
233
+ }
234
+
235
+ // ---------------------------------------------------------------------------
236
+ // Exports
237
+ // ---------------------------------------------------------------------------
238
+
239
+ module.exports = {
240
+ comprimirSchema,
241
+ descomprimirSchema,
242
+ comprimirTexto,
243
+ // Exponer diccionario para tests
244
+ ABREVIACIONES,
245
+ };
@@ -0,0 +1,184 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * webhook-dedup.js — Ledger JSONL append-only para idempotencia de webhooks.
5
+ *
6
+ * GitHub y otros proveedores reentregan el mismo webhook si el receptor no
7
+ * responde 2xx rápido. Para evitar reprocesar el mismo evento varias veces,
8
+ * mantenemos un ledger de `event-id` aceptados con timestamp.
9
+ *
10
+ * Estrategia:
11
+ * - Ledger en JSONL append-only (zero-deps; sin SQLite).
12
+ * - Cache en memoria (Set) construido al primer acceso desde el archivo.
13
+ * - Ventana de retención configurable (default 7 días) — entradas más
14
+ * viejas se ignoran al construir cache y se mueven a archive con
15
+ * `rotar()`.
16
+ * - Líneas corruptas (JSON inválido) se descartan silenciosamente al
17
+ * leer; no rompen el sistema.
18
+ *
19
+ * Origen: patrón derivado de `webhook_events` table de
20
+ * `temp/claude-code-telegram-main/` (SQLite) adaptado a JSONL siguiendo la
21
+ * convención SWL (CLAUDE.md: "JSONL para alta frecuencia").
22
+ *
23
+ * Zero-deps.
24
+ *
25
+ * @module hooks/lib/webhook-dedup
26
+ */
27
+
28
+ const fs = require('fs');
29
+ const path = require('path');
30
+
31
+ const VENTANA_DEDUP_MS_DEFAULT = 7 * 24 * 60 * 60 * 1000; // 7 días
32
+
33
+ class WebhookDedup {
34
+ /**
35
+ * @param {object} opciones
36
+ * @param {string} opciones.rutaLedger Ruta absoluta o relativa al CWD del ledger JSONL.
37
+ * @param {number} [opciones.ventanaMs=7d] Ventana de retención en ms.
38
+ */
39
+ constructor({ rutaLedger, ventanaMs = VENTANA_DEDUP_MS_DEFAULT } = {}) {
40
+ if (!rutaLedger || typeof rutaLedger !== 'string') {
41
+ throw new Error('webhook-dedup: rutaLedger es requerida');
42
+ }
43
+ if (!Number.isFinite(ventanaMs) || ventanaMs <= 0) {
44
+ throw new Error('webhook-dedup: ventanaMs debe ser número positivo');
45
+ }
46
+ this.rutaLedger = rutaLedger;
47
+ this.ventanaMs = ventanaMs;
48
+ this._cache = null; // Set<eventId>, lazy load
49
+ }
50
+
51
+ /**
52
+ * ¿El eventId ya fue procesado dentro de la ventana?
53
+ * @param {string} eventId
54
+ * @param {number} [ahora=Date.now()]
55
+ * @returns {boolean}
56
+ */
57
+ yaVisto(eventId, ahora) {
58
+ if (typeof ahora !== 'number') ahora = Date.now();
59
+ if (!eventId || typeof eventId !== 'string') return false;
60
+ this._asegurarCache(ahora);
61
+ return this._cache.has(eventId);
62
+ }
63
+
64
+ /**
65
+ * Registra un nuevo evento. Si ya estaba, retorna false sin escribir.
66
+ * @param {string} eventId
67
+ * @param {string} provider Nombre del proveedor (github, generic, etc.).
68
+ * @param {number} [ahora=Date.now()]
69
+ * @returns {boolean} true si se registró; false si ya estaba.
70
+ */
71
+ registrar(eventId, provider, ahora) {
72
+ if (typeof ahora !== 'number') ahora = Date.now();
73
+ if (!eventId || typeof eventId !== 'string') return false;
74
+ if (!provider || typeof provider !== 'string') return false;
75
+ if (this.yaVisto(eventId, ahora)) return false;
76
+
77
+ const entrada = {
78
+ event_id: eventId,
79
+ provider,
80
+ ts: new Date(ahora).toISOString(),
81
+ };
82
+ fs.mkdirSync(path.dirname(this.rutaLedger), { recursive: true });
83
+ fs.appendFileSync(this.rutaLedger, JSON.stringify(entrada) + '\n', 'utf8');
84
+ this._cache.add(eventId);
85
+ return true;
86
+ }
87
+
88
+ /**
89
+ * Mueve entradas más viejas que la ventana al directorio archive.
90
+ * Reescribe el ledger sólo con entradas dentro de ventana.
91
+ *
92
+ * Idempotente: llamar dos veces seguidas no duplica el archivo de archive
93
+ * (la segunda llamada no encuentra entradas viejas).
94
+ *
95
+ * @param {number} [ahora=Date.now()]
96
+ * @returns {{rotadas: number, conservadas: number}}
97
+ */
98
+ rotar(ahora) {
99
+ if (typeof ahora !== 'number') ahora = Date.now();
100
+ if (!fs.existsSync(this.rutaLedger)) {
101
+ return { rotadas: 0, conservadas: 0 };
102
+ }
103
+
104
+ const contenido = fs.readFileSync(this.rutaLedger, 'utf8');
105
+ const lineas = contenido.split('\n');
106
+ const limite = ahora - this.ventanaMs;
107
+
108
+ const archivar = [];
109
+ const conservar = [];
110
+
111
+ for (const linea of lineas) {
112
+ const trimmed = linea.trim();
113
+ if (!trimmed) continue;
114
+ try {
115
+ const entrada = JSON.parse(trimmed);
116
+ const ts = Date.parse(entrada.ts);
117
+ if (!Number.isFinite(ts)) continue; // ts inválido, descartar
118
+ if (ts < limite) {
119
+ archivar.push(trimmed);
120
+ } else {
121
+ conservar.push(trimmed);
122
+ }
123
+ } catch (_) {
124
+ // línea corrupta, descartar
125
+ }
126
+ }
127
+
128
+ if (archivar.length > 0) {
129
+ const fechaArchivo = new Date(ahora).toISOString().slice(0, 10);
130
+ const dirArchive = path.join(path.dirname(this.rutaLedger), 'webhook-events-archive');
131
+ const archivoArchive = path.join(dirArchive, `events-${fechaArchivo}.jsonl`);
132
+ fs.mkdirSync(dirArchive, { recursive: true });
133
+ fs.appendFileSync(archivoArchive, archivar.join('\n') + '\n', 'utf8');
134
+ }
135
+
136
+ const nuevoContenido = conservar.length > 0 ? conservar.join('\n') + '\n' : '';
137
+ fs.writeFileSync(this.rutaLedger, nuevoContenido, 'utf8');
138
+ this._cache = null; // invalidar cache
139
+
140
+ return { rotadas: archivar.length, conservadas: conservar.length };
141
+ }
142
+
143
+ /**
144
+ * Tamaño actual del cache (para tests).
145
+ * @returns {number}
146
+ */
147
+ tamanoCache() {
148
+ return this._cache ? this._cache.size : 0;
149
+ }
150
+
151
+ /**
152
+ * Carga el cache desde el archivo si aún no está cargado.
153
+ * Entradas fuera de ventana se ignoran.
154
+ * @param {number} ahora
155
+ */
156
+ _asegurarCache(ahora) {
157
+ if (this._cache !== null) return;
158
+ this._cache = new Set();
159
+ if (!fs.existsSync(this.rutaLedger)) return;
160
+
161
+ const contenido = fs.readFileSync(this.rutaLedger, 'utf8');
162
+ const limite = ahora - this.ventanaMs;
163
+
164
+ for (const linea of contenido.split('\n')) {
165
+ const trimmed = linea.trim();
166
+ if (!trimmed) continue;
167
+ try {
168
+ const entrada = JSON.parse(trimmed);
169
+ const ts = Date.parse(entrada.ts);
170
+ if (!Number.isFinite(ts)) continue;
171
+ if (ts >= limite) {
172
+ this._cache.add(entrada.event_id);
173
+ }
174
+ } catch (_) {
175
+ // línea corrupta, ignorar
176
+ }
177
+ }
178
+ }
179
+ }
180
+
181
+ module.exports = {
182
+ WebhookDedup,
183
+ VENTANA_DEDUP_MS_DEFAULT,
184
+ };