@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,588 +1,588 @@
1
- 'use strict';
2
-
3
- /**
4
- * Skill Auditor — Analizadores de auditoría para skills SWL.
5
- *
6
- * Complementa prompt-injection-scanner.js (analizador "static") con 2 analizadores
7
- * adicionales adoptados del patrón de skillshare (7 analizadores):
8
- *
9
- * 1. dataflow — Detecta exfiltración de datos (curl/wget/fetch con variables sensibles)
10
- * 2. structure — Valida estructura de SKILL.md (frontmatter, campos obligatorios, formato)
11
- *
12
- * Zero dependencias externas.
13
- *
14
- * Uso:
15
- * const { auditarSkill, auditarDirectorio } = require('./lib/skill-auditor');
16
- * const resultado = auditarSkill('/ruta/a/habilidades/mi-skill');
17
- * if (resultado.findings.length > 0) { ... }
18
- *
19
- * @module hooks/lib/skill-auditor
20
- */
21
-
22
- const fs = require('fs');
23
- const path = require('path');
24
-
25
- // ---------------------------------------------------------------------------
26
- // Constantes
27
- // ---------------------------------------------------------------------------
28
-
29
- const SEVERIDADES = { CRITICAL: 4, HIGH: 3, MEDIUM: 2, LOW: 1, INFO: 0 };
30
-
31
- const CAMPOS_OBLIGATORIOS = ['name', 'description'];
32
-
33
- const CAMPOS_RECOMENDADOS = ['version'];
34
-
35
- // ---------------------------------------------------------------------------
36
- // Analizador: dataflow
37
- // ---------------------------------------------------------------------------
38
-
39
- /**
40
- * Patrones de exfiltración de datos.
41
- * Detecta intentos de enviar datos sensibles a URLs externas.
42
- */
43
- const PATRONES_EXFILTRACION = [
44
- // curl/wget con variables de entorno sensibles
45
- { patron: /curl\s+[^\n]*\$\{?\w*(KEY|TOKEN|SECRET|PASSWORD|CREDENTIAL|API_KEY)/i, ruleId: 'DF001', severity: 'CRITICAL', desc: 'curl con variable sensible' },
46
- { patron: /wget\s+[^\n]*\$\{?\w*(KEY|TOKEN|SECRET|PASSWORD|CREDENTIAL|API_KEY)/i, ruleId: 'DF002', severity: 'CRITICAL', desc: 'wget con variable sensible' },
47
- // fetch/request a URLs con datos
48
- { patron: /fetch\s*\(\s*['"`][^'"`]*\$\{/i, ruleId: 'DF003', severity: 'HIGH', desc: 'fetch con interpolación de variables en URL' },
49
- // Redirección de archivos sensibles a red
50
- { patron: /cat\s+[^\n]*(\.env|credentials|secrets)[^\n]*(curl|wget|nc\s)/i, ruleId: 'DF004', severity: 'CRITICAL', desc: 'lectura de archivo sensible + envío a red' },
51
- // nc (netcat) con datos
52
- { patron: /nc\s+-[^\n]*\d+\.\d+\.\d+\.\d+/i, ruleId: 'DF005', severity: 'HIGH', desc: 'netcat a IP externa' },
53
- // Base64 encode + envío (ofuscación)
54
- { patron: /base64\s*[^\n]*(curl|wget|fetch|nc)/i, ruleId: 'DF006', severity: 'HIGH', desc: 'base64 encoding antes de envío a red' },
55
- // Lectura de SSH keys
56
- { patron: /cat\s+[^\n]*\.ssh\/(id_rsa|id_ed25519|authorized_keys)/i, ruleId: 'DF007', severity: 'CRITICAL', desc: 'lectura de SSH keys' },
57
- // Envío a webhook genérico
58
- { patron: /https?:\/\/[^\s]*webhook[^\s]*/i, ruleId: 'DF008', severity: 'MEDIUM', desc: 'referencia a webhook URL' },
59
- ];
60
-
61
- /**
62
- * Ejecuta el analizador de flujo de datos (dataflow).
63
- *
64
- * @param {string} contenido - Contenido del SKILL.md
65
- * @param {string} skillName - Nombre del skill
66
- * @returns {Array<object>} Findings
67
- */
68
- function analizarDataflow(contenido, skillName) {
69
- const findings = [];
70
- const lineas = contenido.split('\n');
71
-
72
- for (let i = 0; i < lineas.length; i++) {
73
- const linea = lineas[i];
74
- for (const { patron, ruleId, severity, desc } of PATRONES_EXFILTRACION) {
75
- if (patron.test(linea)) {
76
- findings.push({
77
- analyzer: 'dataflow',
78
- category: 'exfiltration',
79
- ruleId,
80
- severity,
81
- skill: skillName,
82
- line: i + 1,
83
- snippet: linea.trim().substring(0, 120),
84
- description: desc,
85
- });
86
- }
87
- }
88
- }
89
-
90
- return findings;
91
- }
92
-
93
- // ---------------------------------------------------------------------------
94
- // Analizador: structure
95
- // ---------------------------------------------------------------------------
96
-
97
- /**
98
- * Ejecuta el analizador de estructura de SKILL.md.
99
- *
100
- * @param {string} contenido - Contenido del SKILL.md
101
- * @param {string} skillName - Nombre del skill (del directorio)
102
- * @returns {Array<object>} Findings
103
- */
104
- function analizarStructure(contenido, skillName) {
105
- const findings = [];
106
-
107
- // Verificar que tiene frontmatter
108
- if (!contenido.startsWith('---')) {
109
- findings.push({
110
- analyzer: 'structure',
111
- category: 'structure',
112
- ruleId: 'ST001',
113
- severity: 'HIGH',
114
- skill: skillName,
115
- line: 1,
116
- snippet: contenido.substring(0, 80),
117
- description: 'SKILL.md no tiene frontmatter YAML (debe iniciar con ---)',
118
- });
119
- return findings; // Sin frontmatter no tiene sentido seguir
120
- }
121
-
122
- // Extraer frontmatter (soporta --- en primera línea y cierre ---)
123
- const fmMatch = contenido.match(/^---\r?\n([\s\S]*?)\r?\n---/);
124
- if (!fmMatch) {
125
- findings.push({
126
- analyzer: 'structure',
127
- category: 'structure',
128
- ruleId: 'ST002',
129
- severity: 'HIGH',
130
- skill: skillName,
131
- line: 1,
132
- snippet: '---',
133
- description: 'Frontmatter YAML no tiene cierre (falta segundo ---)',
134
- });
135
- return findings;
136
- }
137
-
138
- const frontmatter = fmMatch[1];
139
-
140
- // Verificar campos obligatorios
141
- for (const campo of CAMPOS_OBLIGATORIOS) {
142
- const regex = new RegExp(`^${campo}:`, 'm');
143
- if (!regex.test(frontmatter)) {
144
- findings.push({
145
- analyzer: 'structure',
146
- category: 'structure',
147
- ruleId: 'ST003',
148
- severity: 'HIGH',
149
- skill: skillName,
150
- line: 1,
151
- snippet: `Campo faltante: ${campo}`,
152
- description: `Campo obligatorio "${campo}" no encontrado en frontmatter`,
153
- });
154
- }
155
- }
156
-
157
- // Verificar campos recomendados
158
- for (const campo of CAMPOS_RECOMENDADOS) {
159
- const regex = new RegExp(`^${campo}:`, 'm');
160
- if (!regex.test(frontmatter)) {
161
- findings.push({
162
- analyzer: 'structure',
163
- category: 'structure',
164
- ruleId: 'ST004',
165
- severity: 'LOW',
166
- skill: skillName,
167
- line: 1,
168
- snippet: `Campo faltante: ${campo}`,
169
- description: `Campo recomendado "${campo}" no encontrado en frontmatter`,
170
- });
171
- }
172
- }
173
-
174
- // Verificar que name coincide con directorio
175
- const nameMatch = frontmatter.match(/^name:\s*(.+)$/m);
176
- if (nameMatch) {
177
- const declaredName = nameMatch[1].trim().replace(/['"]/g, '');
178
- if (declaredName !== skillName) {
179
- findings.push({
180
- analyzer: 'structure',
181
- category: 'structure',
182
- ruleId: 'ST005',
183
- severity: 'MEDIUM',
184
- skill: skillName,
185
- line: 1,
186
- snippet: `name: ${declaredName} vs directorio: ${skillName}`,
187
- description: `El campo "name" (${declaredName}) no coincide con el directorio (${skillName})`,
188
- });
189
- }
190
- }
191
-
192
- // Verificar que description no está vacía
193
- const descMatch = frontmatter.match(/^description:\s*>?\s*\n?\s*(.+)/m);
194
- if (descMatch) {
195
- const desc = descMatch[1].trim();
196
- if (desc.length < 20) {
197
- findings.push({
198
- analyzer: 'structure',
199
- category: 'structure',
200
- ruleId: 'ST006',
201
- severity: 'MEDIUM',
202
- skill: skillName,
203
- line: 1,
204
- snippet: `description: ${desc.substring(0, 60)}`,
205
- description: `Descripción demasiado corta (${desc.length} chars, mínimo 20)`,
206
- });
207
- }
208
- }
209
-
210
- // Verificar que el body no está vacío
211
- const bodyStart = contenido.indexOf('---', 4);
212
- if (bodyStart > 0) {
213
- const body = contenido.substring(bodyStart + 3).trim();
214
- if (body.length < 50) {
215
- findings.push({
216
- analyzer: 'structure',
217
- category: 'structure',
218
- ruleId: 'ST007',
219
- severity: 'MEDIUM',
220
- skill: skillName,
221
- line: bodyStart + 1,
222
- snippet: body.substring(0, 60),
223
- description: `Body del skill demasiado corto (${body.length} chars). Un skill útil necesita más contenido`,
224
- });
225
- }
226
- }
227
-
228
- // Verificar tamaño máximo (skills > 300 líneas violan convención)
229
- const lineCount = contenido.split('\n').length;
230
- if (lineCount > 300) {
231
- findings.push({
232
- analyzer: 'structure',
233
- category: 'structure',
234
- ruleId: 'ST008',
235
- severity: 'LOW',
236
- skill: skillName,
237
- line: 300,
238
- snippet: `${lineCount} líneas`,
239
- description: `Skill excede 300 líneas (${lineCount}). Considerar dividir en sub-recursos`,
240
- });
241
- }
242
-
243
- return findings;
244
- }
245
-
246
- // ---------------------------------------------------------------------------
247
- // Analizador: integrity
248
- // ---------------------------------------------------------------------------
249
-
250
- /**
251
- * Verifica integridad del contenido: links rotos, referencias a archivos inexistentes.
252
- *
253
- * @param {string} contenido - Contenido del SKILL.md
254
- * @param {string} skillName - Nombre del skill
255
- * @param {string} skillDir - Ruta al directorio del skill
256
- * @returns {Array<object>} Findings
257
- */
258
- function analizarIntegrity(contenido, skillName, skillDir) {
259
- const findings = [];
260
- const lineas = contenido.split('\n');
261
-
262
- for (let i = 0; i < lineas.length; i++) {
263
- const linea = lineas[i];
264
-
265
- // Detectar referencias a archivos locales que no existen
266
- const fileRefs = linea.matchAll(/(?:assets|recursos)\/([a-zA-Z0-9_.-]+)/g);
267
- for (const match of fileRefs) {
268
- const refPath = path.join(skillDir, match[0]);
269
- if (!fs.existsSync(refPath)) {
270
- findings.push({
271
- analyzer: 'integrity',
272
- category: 'integrity',
273
- ruleId: 'IN001',
274
- severity: 'MEDIUM',
275
- skill: skillName,
276
- line: i + 1,
277
- snippet: match[0],
278
- description: `Referencia a archivo local inexistente: ${match[0]}`,
279
- });
280
- }
281
- }
282
-
283
- // Detectar placeholders no reemplazados
284
- const placeholders = linea.matchAll(/\[TODO\]|\[PENDIENTE\]|\[FIXME\]|<PLACEHOLDER>|\{\{[^}]+\}\}/gi);
285
- for (const match of placeholders) {
286
- findings.push({
287
- analyzer: 'integrity',
288
- category: 'integrity',
289
- ruleId: 'IN002',
290
- severity: 'LOW',
291
- skill: skillName,
292
- line: i + 1,
293
- snippet: match[0],
294
- description: `Placeholder no reemplazado: ${match[0]}`,
295
- });
296
- }
297
- }
298
-
299
- return findings;
300
- }
301
-
302
- // ---------------------------------------------------------------------------
303
- // Analizador: metadata
304
- // ---------------------------------------------------------------------------
305
-
306
- /**
307
- * Valida metadata del frontmatter contra el schema.
308
- *
309
- * @param {string} contenido - Contenido del SKILL.md
310
- * @param {string} skillName - Nombre del skill
311
- * @returns {Array<object>} Findings
312
- */
313
- function analizarMetadata(contenido, skillName) {
314
- const findings = [];
315
-
316
- const fmMatch = contenido.match(/^---\n([\s\S]*?)\n---/);
317
- if (!fmMatch) return findings;
318
-
319
- const frontmatter = fmMatch[1];
320
-
321
- // Verificar que version sigue semver si existe
322
- const versionMatch = frontmatter.match(/^version:\s*["']?([0-9][0-9a-zA-Z._-]*)["']?/m);
323
- if (versionMatch) {
324
- const v = versionMatch[1];
325
- if (!/^\d+\.\d+\.\d+$/.test(v)) {
326
- findings.push({
327
- analyzer: 'metadata',
328
- category: 'metadata',
329
- ruleId: 'MD001',
330
- severity: 'LOW',
331
- skill: skillName,
332
- line: 1,
333
- snippet: `version: ${v}`,
334
- description: `Versión "${v}" no sigue formato semver (X.Y.Z)`,
335
- });
336
- }
337
- }
338
-
339
- // Verificar que targets contiene valores válidos si existe
340
- const targetsMatch = frontmatter.match(/^targets:\s*\[([^\]]+)\]/m);
341
- if (targetsMatch) {
342
- const VALID_TARGETS = ['claude', 'openclaude', 'copilot', 'opencode', 'codex', 'gemini'];
343
- const targets = targetsMatch[1].split(',').map(t => t.trim().replace(/['"]/g, ''));
344
- for (const t of targets) {
345
- if (!VALID_TARGETS.includes(t)) {
346
- findings.push({
347
- analyzer: 'metadata',
348
- category: 'metadata',
349
- ruleId: 'MD002',
350
- severity: 'MEDIUM',
351
- skill: skillName,
352
- line: 1,
353
- snippet: `targets: [${targets.join(', ')}]`,
354
- description: `Target "${t}" no es un runtime válido de swl-ses`,
355
- });
356
- }
357
- }
358
- }
359
-
360
- // Verificar description multilinea con > tiene contenido
361
- const descMulti = frontmatter.match(/^description:\s*>\s*$/m);
362
- if (descMulti) {
363
- const afterDesc = frontmatter.split(/^description:\s*>\s*$/m)[1];
364
- if (afterDesc) {
365
- const firstLine = afterDesc.split('\n').find(l => l.trim().length > 0);
366
- if (!firstLine || firstLine.trim().length < 10) {
367
- findings.push({
368
- analyzer: 'metadata',
369
- category: 'metadata',
370
- ruleId: 'MD003',
371
- severity: 'MEDIUM',
372
- skill: skillName,
373
- line: 1,
374
- snippet: 'description: >',
375
- description: 'Descripción multilinea vacía o demasiado corta',
376
- });
377
- }
378
- }
379
- }
380
-
381
- return findings;
382
- }
383
-
384
- // ---------------------------------------------------------------------------
385
- // Analizador: cross-skill
386
- // ---------------------------------------------------------------------------
387
-
388
- /**
389
- * Detecta dependencias entre skills y posibles problemas de acoplamiento.
390
- *
391
- * @param {string} contenido - Contenido del SKILL.md
392
- * @param {string} skillName - Nombre del skill
393
- * @param {Set<string>} allSkills - Set con todos los nombres de skills existentes
394
- * @returns {Array<object>} Findings
395
- */
396
- function analizarCrossSkill(contenido, skillName, allSkills) {
397
- const findings = [];
398
-
399
- // Detectar referencias a otros skills con Skill("nombre")
400
- const skillRefs = contenido.matchAll(/Skill\(["']([^"']+)["']\)/g);
401
- const referenced = new Set();
402
-
403
- for (const match of skillRefs) {
404
- const refName = match[1];
405
- referenced.add(refName);
406
-
407
- // Verificar que el skill referenciado existe
408
- if (allSkills && !allSkills.has(refName)) {
409
- findings.push({
410
- analyzer: 'cross-skill',
411
- category: 'cross-skill',
412
- ruleId: 'CS001',
413
- severity: 'MEDIUM',
414
- skill: skillName,
415
- line: 0,
416
- snippet: `Skill("${refName}")`,
417
- description: `Referencia a skill inexistente: "${refName}"`,
418
- });
419
- }
420
- }
421
-
422
- // Auto-referencia es normal (documentación de cómo cargar el skill) — no es finding
423
-
424
- return findings;
425
- }
426
-
427
- // ---------------------------------------------------------------------------
428
- // Analizador: tier
429
- // ---------------------------------------------------------------------------
430
-
431
- /**
432
- * Evalúa complejidad y nivel de confianza del skill.
433
- *
434
- * @param {string} contenido - Contenido del SKILL.md
435
- * @param {string} skillName - Nombre del skill
436
- * @returns {Array<object>} Findings
437
- */
438
- function analizarTier(contenido, skillName) {
439
- const findings = [];
440
-
441
- // Detectar skills que incluyen ejecución de código
442
- const codeExecPatterns = [
443
- /```(?:bash|sh|shell|python|node|ruby)\n[^`]*(?:rm\s+-rf|chmod\s+777|sudo\s+)/i,
444
- /(?:exec|eval|spawn|system)\s*\(/i,
445
- ];
446
-
447
- for (const pattern of codeExecPatterns) {
448
- if (pattern.test(contenido)) {
449
- findings.push({
450
- analyzer: 'tier',
451
- category: 'risk',
452
- ruleId: 'TR001',
453
- severity: 'MEDIUM',
454
- skill: skillName,
455
- line: 0,
456
- snippet: 'Skill contiene patrones de ejecución de código potencialmente peligrosos',
457
- description: 'Skill incluye ejemplos de ejecución de código con privilegios elevados. Revisar manualmente',
458
- });
459
- break;
460
- }
461
- }
462
-
463
- // Detectar skills con instrucciones de modificar archivos del sistema
464
- if (/\/etc\/|\/usr\/|C:\\Windows|HKEY_/i.test(contenido)) {
465
- findings.push({
466
- analyzer: 'tier',
467
- category: 'risk',
468
- ruleId: 'TR002',
469
- severity: 'HIGH',
470
- skill: skillName,
471
- line: 0,
472
- snippet: 'Referencia a rutas del sistema operativo',
473
- description: 'Skill referencia rutas del sistema (/etc/, /usr/, Windows registry). Verificar que son ejemplos, no instrucciones',
474
- });
475
- }
476
-
477
- return findings;
478
- }
479
-
480
- // ---------------------------------------------------------------------------
481
- // API pública
482
- // ---------------------------------------------------------------------------
483
-
484
- /**
485
- * Audita un skill individual ejecutando los 7 analizadores.
486
- *
487
- * @param {string} skillDir - Ruta al directorio del skill
488
- * @param {object} [opciones]
489
- * @param {Set<string>} [opciones.allSkills] - Set de todos los skills existentes (para cross-skill)
490
- * @returns {{ skill: string, findings: Array, riskScore: number, riskLabel: string }}
491
- */
492
- function auditarSkill(skillDir, opciones) {
493
- const skillName = path.basename(skillDir);
494
- const skillMdPath = path.join(skillDir, 'SKILL.md');
495
-
496
- if (!fs.existsSync(skillMdPath)) {
497
- return {
498
- skill: skillName,
499
- findings: [{
500
- analyzer: 'structure',
501
- category: 'structure',
502
- ruleId: 'ST000',
503
- severity: 'CRITICAL',
504
- skill: skillName,
505
- line: 0,
506
- snippet: 'SKILL.md no encontrado',
507
- description: `El directorio ${skillName} no contiene SKILL.md`,
508
- }],
509
- riskScore: 100,
510
- riskLabel: 'critical',
511
- };
512
- }
513
-
514
- const contenido = fs.readFileSync(skillMdPath, 'utf8');
515
-
516
- // Ejecutar los 7 analizadores (patrón skillshare)
517
- // 1. static → cubierto por prompt-injection-scanner.js (externo)
518
- // 2-7 → ejecutados aquí
519
- const findings = [
520
- ...analizarDataflow(contenido, skillName), // 2. dataflow
521
- ...analizarStructure(contenido, skillName), // 3. structure
522
- ...analizarIntegrity(contenido, skillName, skillDir), // 4. integrity
523
- ...analizarMetadata(contenido, skillName), // 5. metadata
524
- ...analizarCrossSkill(contenido, skillName, opciones && opciones.allSkills), // 6. cross-skill
525
- ...analizarTier(contenido, skillName), // 7. tier
526
- ];
527
-
528
- // Calcular risk score (0-100)
529
- let score = 0;
530
- for (const f of findings) {
531
- score += (SEVERIDADES[f.severity] || 0) * 10;
532
- }
533
- score = Math.min(score, 100);
534
-
535
- const riskLabel = score >= 70 ? 'critical'
536
- : score >= 40 ? 'high'
537
- : score >= 20 ? 'medium'
538
- : score > 0 ? 'low'
539
- : 'clean';
540
-
541
- return { skill: skillName, findings, riskScore: score, riskLabel };
542
- }
543
-
544
- /**
545
- * Audita todos los skills en un directorio.
546
- *
547
- * @param {string} habsDir - Ruta al directorio de habilidades
548
- * @returns {{ total: number, clean: number, withFindings: number, results: Array }}
549
- */
550
- function auditarDirectorio(habsDir) {
551
- const results = [];
552
- let clean = 0;
553
- let withFindings = 0;
554
-
555
- const entries = fs.readdirSync(habsDir, { withFileTypes: true });
556
- const allSkills = new Set(entries.filter(e => e.isDirectory()).map(e => e.name));
557
-
558
- for (const entry of entries) {
559
- if (!entry.isDirectory()) continue;
560
- const resultado = auditarSkill(path.join(habsDir, entry.name), { allSkills });
561
- results.push(resultado);
562
- if (resultado.findings.length === 0) clean++;
563
- else withFindings++;
564
- }
565
-
566
- return {
567
- total: results.length,
568
- clean,
569
- withFindings,
570
- results,
571
- };
572
- }
573
-
574
- // ---------------------------------------------------------------------------
575
- // Exports
576
- // ---------------------------------------------------------------------------
577
-
578
- module.exports = {
579
- auditarSkill,
580
- auditarDirectorio,
581
- analizarDataflow,
582
- analizarStructure,
583
- analizarIntegrity,
584
- analizarMetadata,
585
- analizarCrossSkill,
586
- analizarTier,
587
- SEVERIDADES,
588
- };
1
+ 'use strict';
2
+
3
+ /**
4
+ * Skill Auditor — Analizadores de auditoría para skills SWL.
5
+ *
6
+ * Complementa prompt-injection-scanner.js (analizador "static") con 2 analizadores
7
+ * adicionales adoptados del patrón de skillshare (7 analizadores):
8
+ *
9
+ * 1. dataflow — Detecta exfiltración de datos (curl/wget/fetch con variables sensibles)
10
+ * 2. structure — Valida estructura de SKILL.md (frontmatter, campos obligatorios, formato)
11
+ *
12
+ * Zero dependencias externas.
13
+ *
14
+ * Uso:
15
+ * const { auditarSkill, auditarDirectorio } = require('./lib/skill-auditor');
16
+ * const resultado = auditarSkill('/ruta/a/habilidades/mi-skill');
17
+ * if (resultado.findings.length > 0) { ... }
18
+ *
19
+ * @module hooks/lib/skill-auditor
20
+ */
21
+
22
+ const fs = require('fs');
23
+ const path = require('path');
24
+
25
+ // ---------------------------------------------------------------------------
26
+ // Constantes
27
+ // ---------------------------------------------------------------------------
28
+
29
+ const SEVERIDADES = { CRITICAL: 4, HIGH: 3, MEDIUM: 2, LOW: 1, INFO: 0 };
30
+
31
+ const CAMPOS_OBLIGATORIOS = ['name', 'description'];
32
+
33
+ const CAMPOS_RECOMENDADOS = ['version'];
34
+
35
+ // ---------------------------------------------------------------------------
36
+ // Analizador: dataflow
37
+ // ---------------------------------------------------------------------------
38
+
39
+ /**
40
+ * Patrones de exfiltración de datos.
41
+ * Detecta intentos de enviar datos sensibles a URLs externas.
42
+ */
43
+ const PATRONES_EXFILTRACION = [
44
+ // curl/wget con variables de entorno sensibles
45
+ { patron: /curl\s+[^\n]*\$\{?\w*(KEY|TOKEN|SECRET|PASSWORD|CREDENTIAL|API_KEY)/i, ruleId: 'DF001', severity: 'CRITICAL', desc: 'curl con variable sensible' },
46
+ { patron: /wget\s+[^\n]*\$\{?\w*(KEY|TOKEN|SECRET|PASSWORD|CREDENTIAL|API_KEY)/i, ruleId: 'DF002', severity: 'CRITICAL', desc: 'wget con variable sensible' },
47
+ // fetch/request a URLs con datos
48
+ { patron: /fetch\s*\(\s*['"`][^'"`]*\$\{/i, ruleId: 'DF003', severity: 'HIGH', desc: 'fetch con interpolación de variables en URL' },
49
+ // Redirección de archivos sensibles a red
50
+ { patron: /cat\s+[^\n]*(\.env|credentials|secrets)[^\n]*(curl|wget|nc\s)/i, ruleId: 'DF004', severity: 'CRITICAL', desc: 'lectura de archivo sensible + envío a red' },
51
+ // nc (netcat) con datos
52
+ { patron: /nc\s+-[^\n]*\d+\.\d+\.\d+\.\d+/i, ruleId: 'DF005', severity: 'HIGH', desc: 'netcat a IP externa' },
53
+ // Base64 encode + envío (ofuscación)
54
+ { patron: /base64\s*[^\n]*(curl|wget|fetch|nc)/i, ruleId: 'DF006', severity: 'HIGH', desc: 'base64 encoding antes de envío a red' },
55
+ // Lectura de SSH keys
56
+ { patron: /cat\s+[^\n]*\.ssh\/(id_rsa|id_ed25519|authorized_keys)/i, ruleId: 'DF007', severity: 'CRITICAL', desc: 'lectura de SSH keys' },
57
+ // Envío a webhook genérico
58
+ { patron: /https?:\/\/[^\s]*webhook[^\s]*/i, ruleId: 'DF008', severity: 'MEDIUM', desc: 'referencia a webhook URL' },
59
+ ];
60
+
61
+ /**
62
+ * Ejecuta el analizador de flujo de datos (dataflow).
63
+ *
64
+ * @param {string} contenido - Contenido del SKILL.md
65
+ * @param {string} skillName - Nombre del skill
66
+ * @returns {Array<object>} Findings
67
+ */
68
+ function analizarDataflow(contenido, skillName) {
69
+ const findings = [];
70
+ const lineas = contenido.split('\n');
71
+
72
+ for (let i = 0; i < lineas.length; i++) {
73
+ const linea = lineas[i];
74
+ for (const { patron, ruleId, severity, desc } of PATRONES_EXFILTRACION) {
75
+ if (patron.test(linea)) {
76
+ findings.push({
77
+ analyzer: 'dataflow',
78
+ category: 'exfiltration',
79
+ ruleId,
80
+ severity,
81
+ skill: skillName,
82
+ line: i + 1,
83
+ snippet: linea.trim().substring(0, 120),
84
+ description: desc,
85
+ });
86
+ }
87
+ }
88
+ }
89
+
90
+ return findings;
91
+ }
92
+
93
+ // ---------------------------------------------------------------------------
94
+ // Analizador: structure
95
+ // ---------------------------------------------------------------------------
96
+
97
+ /**
98
+ * Ejecuta el analizador de estructura de SKILL.md.
99
+ *
100
+ * @param {string} contenido - Contenido del SKILL.md
101
+ * @param {string} skillName - Nombre del skill (del directorio)
102
+ * @returns {Array<object>} Findings
103
+ */
104
+ function analizarStructure(contenido, skillName) {
105
+ const findings = [];
106
+
107
+ // Verificar que tiene frontmatter
108
+ if (!contenido.startsWith('---')) {
109
+ findings.push({
110
+ analyzer: 'structure',
111
+ category: 'structure',
112
+ ruleId: 'ST001',
113
+ severity: 'HIGH',
114
+ skill: skillName,
115
+ line: 1,
116
+ snippet: contenido.substring(0, 80),
117
+ description: 'SKILL.md no tiene frontmatter YAML (debe iniciar con ---)',
118
+ });
119
+ return findings; // Sin frontmatter no tiene sentido seguir
120
+ }
121
+
122
+ // Extraer frontmatter (soporta --- en primera línea y cierre ---)
123
+ const fmMatch = contenido.match(/^---\r?\n([\s\S]*?)\r?\n---/);
124
+ if (!fmMatch) {
125
+ findings.push({
126
+ analyzer: 'structure',
127
+ category: 'structure',
128
+ ruleId: 'ST002',
129
+ severity: 'HIGH',
130
+ skill: skillName,
131
+ line: 1,
132
+ snippet: '---',
133
+ description: 'Frontmatter YAML no tiene cierre (falta segundo ---)',
134
+ });
135
+ return findings;
136
+ }
137
+
138
+ const frontmatter = fmMatch[1];
139
+
140
+ // Verificar campos obligatorios
141
+ for (const campo of CAMPOS_OBLIGATORIOS) {
142
+ const regex = new RegExp(`^${campo}:`, 'm');
143
+ if (!regex.test(frontmatter)) {
144
+ findings.push({
145
+ analyzer: 'structure',
146
+ category: 'structure',
147
+ ruleId: 'ST003',
148
+ severity: 'HIGH',
149
+ skill: skillName,
150
+ line: 1,
151
+ snippet: `Campo faltante: ${campo}`,
152
+ description: `Campo obligatorio "${campo}" no encontrado en frontmatter`,
153
+ });
154
+ }
155
+ }
156
+
157
+ // Verificar campos recomendados
158
+ for (const campo of CAMPOS_RECOMENDADOS) {
159
+ const regex = new RegExp(`^${campo}:`, 'm');
160
+ if (!regex.test(frontmatter)) {
161
+ findings.push({
162
+ analyzer: 'structure',
163
+ category: 'structure',
164
+ ruleId: 'ST004',
165
+ severity: 'LOW',
166
+ skill: skillName,
167
+ line: 1,
168
+ snippet: `Campo faltante: ${campo}`,
169
+ description: `Campo recomendado "${campo}" no encontrado en frontmatter`,
170
+ });
171
+ }
172
+ }
173
+
174
+ // Verificar que name coincide con directorio
175
+ const nameMatch = frontmatter.match(/^name:\s*(.+)$/m);
176
+ if (nameMatch) {
177
+ const declaredName = nameMatch[1].trim().replace(/['"]/g, '');
178
+ if (declaredName !== skillName) {
179
+ findings.push({
180
+ analyzer: 'structure',
181
+ category: 'structure',
182
+ ruleId: 'ST005',
183
+ severity: 'MEDIUM',
184
+ skill: skillName,
185
+ line: 1,
186
+ snippet: `name: ${declaredName} vs directorio: ${skillName}`,
187
+ description: `El campo "name" (${declaredName}) no coincide con el directorio (${skillName})`,
188
+ });
189
+ }
190
+ }
191
+
192
+ // Verificar que description no está vacía
193
+ const descMatch = frontmatter.match(/^description:\s*>?\s*\n?\s*(.+)/m);
194
+ if (descMatch) {
195
+ const desc = descMatch[1].trim();
196
+ if (desc.length < 20) {
197
+ findings.push({
198
+ analyzer: 'structure',
199
+ category: 'structure',
200
+ ruleId: 'ST006',
201
+ severity: 'MEDIUM',
202
+ skill: skillName,
203
+ line: 1,
204
+ snippet: `description: ${desc.substring(0, 60)}`,
205
+ description: `Descripción demasiado corta (${desc.length} chars, mínimo 20)`,
206
+ });
207
+ }
208
+ }
209
+
210
+ // Verificar que el body no está vacío
211
+ const bodyStart = contenido.indexOf('---', 4);
212
+ if (bodyStart > 0) {
213
+ const body = contenido.substring(bodyStart + 3).trim();
214
+ if (body.length < 50) {
215
+ findings.push({
216
+ analyzer: 'structure',
217
+ category: 'structure',
218
+ ruleId: 'ST007',
219
+ severity: 'MEDIUM',
220
+ skill: skillName,
221
+ line: bodyStart + 1,
222
+ snippet: body.substring(0, 60),
223
+ description: `Body del skill demasiado corto (${body.length} chars). Un skill útil necesita más contenido`,
224
+ });
225
+ }
226
+ }
227
+
228
+ // Verificar tamaño máximo (skills > 300 líneas violan convención)
229
+ const lineCount = contenido.split('\n').length;
230
+ if (lineCount > 300) {
231
+ findings.push({
232
+ analyzer: 'structure',
233
+ category: 'structure',
234
+ ruleId: 'ST008',
235
+ severity: 'LOW',
236
+ skill: skillName,
237
+ line: 300,
238
+ snippet: `${lineCount} líneas`,
239
+ description: `Skill excede 300 líneas (${lineCount}). Considerar dividir en sub-recursos`,
240
+ });
241
+ }
242
+
243
+ return findings;
244
+ }
245
+
246
+ // ---------------------------------------------------------------------------
247
+ // Analizador: integrity
248
+ // ---------------------------------------------------------------------------
249
+
250
+ /**
251
+ * Verifica integridad del contenido: links rotos, referencias a archivos inexistentes.
252
+ *
253
+ * @param {string} contenido - Contenido del SKILL.md
254
+ * @param {string} skillName - Nombre del skill
255
+ * @param {string} skillDir - Ruta al directorio del skill
256
+ * @returns {Array<object>} Findings
257
+ */
258
+ function analizarIntegrity(contenido, skillName, skillDir) {
259
+ const findings = [];
260
+ const lineas = contenido.split('\n');
261
+
262
+ for (let i = 0; i < lineas.length; i++) {
263
+ const linea = lineas[i];
264
+
265
+ // Detectar referencias a archivos locales que no existen
266
+ const fileRefs = linea.matchAll(/(?:assets|recursos)\/([a-zA-Z0-9_.-]+)/g);
267
+ for (const match of fileRefs) {
268
+ const refPath = path.join(skillDir, match[0]);
269
+ if (!fs.existsSync(refPath)) {
270
+ findings.push({
271
+ analyzer: 'integrity',
272
+ category: 'integrity',
273
+ ruleId: 'IN001',
274
+ severity: 'MEDIUM',
275
+ skill: skillName,
276
+ line: i + 1,
277
+ snippet: match[0],
278
+ description: `Referencia a archivo local inexistente: ${match[0]}`,
279
+ });
280
+ }
281
+ }
282
+
283
+ // Detectar placeholders no reemplazados
284
+ const placeholders = linea.matchAll(/\[TODO\]|\[PENDIENTE\]|\[FIXME\]|<PLACEHOLDER>|\{\{[^}]+\}\}/gi);
285
+ for (const match of placeholders) {
286
+ findings.push({
287
+ analyzer: 'integrity',
288
+ category: 'integrity',
289
+ ruleId: 'IN002',
290
+ severity: 'LOW',
291
+ skill: skillName,
292
+ line: i + 1,
293
+ snippet: match[0],
294
+ description: `Placeholder no reemplazado: ${match[0]}`,
295
+ });
296
+ }
297
+ }
298
+
299
+ return findings;
300
+ }
301
+
302
+ // ---------------------------------------------------------------------------
303
+ // Analizador: metadata
304
+ // ---------------------------------------------------------------------------
305
+
306
+ /**
307
+ * Valida metadata del frontmatter contra el schema.
308
+ *
309
+ * @param {string} contenido - Contenido del SKILL.md
310
+ * @param {string} skillName - Nombre del skill
311
+ * @returns {Array<object>} Findings
312
+ */
313
+ function analizarMetadata(contenido, skillName) {
314
+ const findings = [];
315
+
316
+ const fmMatch = contenido.match(/^---\n([\s\S]*?)\n---/);
317
+ if (!fmMatch) return findings;
318
+
319
+ const frontmatter = fmMatch[1];
320
+
321
+ // Verificar que version sigue semver si existe
322
+ const versionMatch = frontmatter.match(/^version:\s*["']?([0-9][0-9a-zA-Z._-]*)["']?/m);
323
+ if (versionMatch) {
324
+ const v = versionMatch[1];
325
+ if (!/^\d+\.\d+\.\d+$/.test(v)) {
326
+ findings.push({
327
+ analyzer: 'metadata',
328
+ category: 'metadata',
329
+ ruleId: 'MD001',
330
+ severity: 'LOW',
331
+ skill: skillName,
332
+ line: 1,
333
+ snippet: `version: ${v}`,
334
+ description: `Versión "${v}" no sigue formato semver (X.Y.Z)`,
335
+ });
336
+ }
337
+ }
338
+
339
+ // Verificar que targets contiene valores válidos si existe
340
+ const targetsMatch = frontmatter.match(/^targets:\s*\[([^\]]+)\]/m);
341
+ if (targetsMatch) {
342
+ const VALID_TARGETS = ['claude', 'openclaude', 'copilot', 'opencode', 'codex', 'gemini'];
343
+ const targets = targetsMatch[1].split(',').map(t => t.trim().replace(/['"]/g, ''));
344
+ for (const t of targets) {
345
+ if (!VALID_TARGETS.includes(t)) {
346
+ findings.push({
347
+ analyzer: 'metadata',
348
+ category: 'metadata',
349
+ ruleId: 'MD002',
350
+ severity: 'MEDIUM',
351
+ skill: skillName,
352
+ line: 1,
353
+ snippet: `targets: [${targets.join(', ')}]`,
354
+ description: `Target "${t}" no es un runtime válido de swl-ses`,
355
+ });
356
+ }
357
+ }
358
+ }
359
+
360
+ // Verificar description multilinea con > tiene contenido
361
+ const descMulti = frontmatter.match(/^description:\s*>\s*$/m);
362
+ if (descMulti) {
363
+ const afterDesc = frontmatter.split(/^description:\s*>\s*$/m)[1];
364
+ if (afterDesc) {
365
+ const firstLine = afterDesc.split('\n').find(l => l.trim().length > 0);
366
+ if (!firstLine || firstLine.trim().length < 10) {
367
+ findings.push({
368
+ analyzer: 'metadata',
369
+ category: 'metadata',
370
+ ruleId: 'MD003',
371
+ severity: 'MEDIUM',
372
+ skill: skillName,
373
+ line: 1,
374
+ snippet: 'description: >',
375
+ description: 'Descripción multilinea vacía o demasiado corta',
376
+ });
377
+ }
378
+ }
379
+ }
380
+
381
+ return findings;
382
+ }
383
+
384
+ // ---------------------------------------------------------------------------
385
+ // Analizador: cross-skill
386
+ // ---------------------------------------------------------------------------
387
+
388
+ /**
389
+ * Detecta dependencias entre skills y posibles problemas de acoplamiento.
390
+ *
391
+ * @param {string} contenido - Contenido del SKILL.md
392
+ * @param {string} skillName - Nombre del skill
393
+ * @param {Set<string>} allSkills - Set con todos los nombres de skills existentes
394
+ * @returns {Array<object>} Findings
395
+ */
396
+ function analizarCrossSkill(contenido, skillName, allSkills) {
397
+ const findings = [];
398
+
399
+ // Detectar referencias a otros skills con Skill("nombre")
400
+ const skillRefs = contenido.matchAll(/Skill\(["']([^"']+)["']\)/g);
401
+ const referenced = new Set();
402
+
403
+ for (const match of skillRefs) {
404
+ const refName = match[1];
405
+ referenced.add(refName);
406
+
407
+ // Verificar que el skill referenciado existe
408
+ if (allSkills && !allSkills.has(refName)) {
409
+ findings.push({
410
+ analyzer: 'cross-skill',
411
+ category: 'cross-skill',
412
+ ruleId: 'CS001',
413
+ severity: 'MEDIUM',
414
+ skill: skillName,
415
+ line: 0,
416
+ snippet: `Skill("${refName}")`,
417
+ description: `Referencia a skill inexistente: "${refName}"`,
418
+ });
419
+ }
420
+ }
421
+
422
+ // Auto-referencia es normal (documentación de cómo cargar el skill) — no es finding
423
+
424
+ return findings;
425
+ }
426
+
427
+ // ---------------------------------------------------------------------------
428
+ // Analizador: tier
429
+ // ---------------------------------------------------------------------------
430
+
431
+ /**
432
+ * Evalúa complejidad y nivel de confianza del skill.
433
+ *
434
+ * @param {string} contenido - Contenido del SKILL.md
435
+ * @param {string} skillName - Nombre del skill
436
+ * @returns {Array<object>} Findings
437
+ */
438
+ function analizarTier(contenido, skillName) {
439
+ const findings = [];
440
+
441
+ // Detectar skills que incluyen ejecución de código
442
+ const codeExecPatterns = [
443
+ /```(?:bash|sh|shell|python|node|ruby)\n[^`]*(?:rm\s+-rf|chmod\s+777|sudo\s+)/i,
444
+ /(?:exec|eval|spawn|system)\s*\(/i,
445
+ ];
446
+
447
+ for (const pattern of codeExecPatterns) {
448
+ if (pattern.test(contenido)) {
449
+ findings.push({
450
+ analyzer: 'tier',
451
+ category: 'risk',
452
+ ruleId: 'TR001',
453
+ severity: 'MEDIUM',
454
+ skill: skillName,
455
+ line: 0,
456
+ snippet: 'Skill contiene patrones de ejecución de código potencialmente peligrosos',
457
+ description: 'Skill incluye ejemplos de ejecución de código con privilegios elevados. Revisar manualmente',
458
+ });
459
+ break;
460
+ }
461
+ }
462
+
463
+ // Detectar skills con instrucciones de modificar archivos del sistema
464
+ if (/\/etc\/|\/usr\/|C:\\Windows|HKEY_/i.test(contenido)) {
465
+ findings.push({
466
+ analyzer: 'tier',
467
+ category: 'risk',
468
+ ruleId: 'TR002',
469
+ severity: 'HIGH',
470
+ skill: skillName,
471
+ line: 0,
472
+ snippet: 'Referencia a rutas del sistema operativo',
473
+ description: 'Skill referencia rutas del sistema (/etc/, /usr/, Windows registry). Verificar que son ejemplos, no instrucciones',
474
+ });
475
+ }
476
+
477
+ return findings;
478
+ }
479
+
480
+ // ---------------------------------------------------------------------------
481
+ // API pública
482
+ // ---------------------------------------------------------------------------
483
+
484
+ /**
485
+ * Audita un skill individual ejecutando los 7 analizadores.
486
+ *
487
+ * @param {string} skillDir - Ruta al directorio del skill
488
+ * @param {object} [opciones]
489
+ * @param {Set<string>} [opciones.allSkills] - Set de todos los skills existentes (para cross-skill)
490
+ * @returns {{ skill: string, findings: Array, riskScore: number, riskLabel: string }}
491
+ */
492
+ function auditarSkill(skillDir, opciones) {
493
+ const skillName = path.basename(skillDir);
494
+ const skillMdPath = path.join(skillDir, 'SKILL.md');
495
+
496
+ if (!fs.existsSync(skillMdPath)) {
497
+ return {
498
+ skill: skillName,
499
+ findings: [{
500
+ analyzer: 'structure',
501
+ category: 'structure',
502
+ ruleId: 'ST000',
503
+ severity: 'CRITICAL',
504
+ skill: skillName,
505
+ line: 0,
506
+ snippet: 'SKILL.md no encontrado',
507
+ description: `El directorio ${skillName} no contiene SKILL.md`,
508
+ }],
509
+ riskScore: 100,
510
+ riskLabel: 'critical',
511
+ };
512
+ }
513
+
514
+ const contenido = fs.readFileSync(skillMdPath, 'utf8');
515
+
516
+ // Ejecutar los 7 analizadores (patrón skillshare)
517
+ // 1. static → cubierto por prompt-injection-scanner.js (externo)
518
+ // 2-7 → ejecutados aquí
519
+ const findings = [
520
+ ...analizarDataflow(contenido, skillName), // 2. dataflow
521
+ ...analizarStructure(contenido, skillName), // 3. structure
522
+ ...analizarIntegrity(contenido, skillName, skillDir), // 4. integrity
523
+ ...analizarMetadata(contenido, skillName), // 5. metadata
524
+ ...analizarCrossSkill(contenido, skillName, opciones && opciones.allSkills), // 6. cross-skill
525
+ ...analizarTier(contenido, skillName), // 7. tier
526
+ ];
527
+
528
+ // Calcular risk score (0-100)
529
+ let score = 0;
530
+ for (const f of findings) {
531
+ score += (SEVERIDADES[f.severity] || 0) * 10;
532
+ }
533
+ score = Math.min(score, 100);
534
+
535
+ const riskLabel = score >= 70 ? 'critical'
536
+ : score >= 40 ? 'high'
537
+ : score >= 20 ? 'medium'
538
+ : score > 0 ? 'low'
539
+ : 'clean';
540
+
541
+ return { skill: skillName, findings, riskScore: score, riskLabel };
542
+ }
543
+
544
+ /**
545
+ * Audita todos los skills en un directorio.
546
+ *
547
+ * @param {string} habsDir - Ruta al directorio de habilidades
548
+ * @returns {{ total: number, clean: number, withFindings: number, results: Array }}
549
+ */
550
+ function auditarDirectorio(habsDir) {
551
+ const results = [];
552
+ let clean = 0;
553
+ let withFindings = 0;
554
+
555
+ const entries = fs.readdirSync(habsDir, { withFileTypes: true });
556
+ const allSkills = new Set(entries.filter(e => e.isDirectory()).map(e => e.name));
557
+
558
+ for (const entry of entries) {
559
+ if (!entry.isDirectory()) continue;
560
+ const resultado = auditarSkill(path.join(habsDir, entry.name), { allSkills });
561
+ results.push(resultado);
562
+ if (resultado.findings.length === 0) clean++;
563
+ else withFindings++;
564
+ }
565
+
566
+ return {
567
+ total: results.length,
568
+ clean,
569
+ withFindings,
570
+ results,
571
+ };
572
+ }
573
+
574
+ // ---------------------------------------------------------------------------
575
+ // Exports
576
+ // ---------------------------------------------------------------------------
577
+
578
+ module.exports = {
579
+ auditarSkill,
580
+ auditarDirectorio,
581
+ analizarDataflow,
582
+ analizarStructure,
583
+ analizarIntegrity,
584
+ analizarMetadata,
585
+ analizarCrossSkill,
586
+ analizarTier,
587
+ SEVERIDADES,
588
+ };