@saulwade/swl-ses 1.4.0 → 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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saulwade/swl-ses",
3
- "version": "1.4.0",
4
- "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot con 59 agentes, 155 habilidades, 43 comandos, 64 reglas y 41 hooks. Soporta 11 lenguajes y 5 runtimes: Claude Code, Copilot, OpenCode, Codex y Gemini CLI. 100% en espanol (Mexico). Incluye gateway bidireccional con relay Telegram a Claude Code.",
3
+ "version": "1.4.1",
4
+ "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot con 60 agentes, 158 habilidades, 44 comandos, 65 reglas y 41 hooks. Soporta 11 lenguajes y 5 runtimes: Claude Code, Copilot, OpenCode, Codex y Gemini CLI. 100% en espanol (Mexico). Incluye gateway bidireccional con relay Telegram a Claude Code y auditoria profunda Nemesis con 8 tools ejecutables.",
5
5
  "bin": {
6
6
  "swl-ses": "bin/swl-ses.js",
7
7
  "swl-telegram-bot": "bin/swl-telegram-bot.js",
package/plugin.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "swl-ses",
3
- "version": "1.4.0",
4
- "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot. 59 agentes, 155 habilidades, 43 comandos, 64 reglas y 41 hooks. 62 librerias. 11 lenguajes. Soporta Claude Code, Copilot, OpenCode, Codex y Gemini CLI.",
3
+ "version": "1.4.1",
4
+ "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot. 60 agentes, 158 habilidades, 44 comandos, 65 reglas y 41 hooks. 62 librerias. 11 lenguajes. Soporta Claude Code, Copilot, OpenCode, Codex y Gemini CLI.",
5
5
  "author": "Saul Wade Leon",
6
6
  "license": "MIT",
7
7
  "repository": "https://github.com/saul-wade/swl-ses",
@@ -0,0 +1,330 @@
1
+ // Adaptado de temp/ultraship-main/tools/audit-history.mjs bajo MIT License
2
+ // Fuente: Houseofmvps/ultraship (https://github.com/Houseofmvps/ultraship)
3
+ 'use strict';
4
+
5
+ const { readFileSync, writeFileSync, appendFileSync, existsSync, mkdirSync } = require('fs');
6
+ const { join, resolve, dirname } = require('path');
7
+ const { outputJSON, outputError } = require('./lib/output');
8
+
9
+ /** Número máximo de entradas a conservar por categoría. */
10
+ const MAX_ENTRIES_PER_CATEGORY = 100;
11
+
12
+ /** Ruta por defecto del historial de auditorías. */
13
+ const DEFAULT_HISTORY_PATH = join(process.cwd(), '.planning', 'audit', 'history.jsonl');
14
+
15
+ /**
16
+ * Lee todas las entradas del historial JSONL.
17
+ * @param {string} historyPath
18
+ * @returns {object[]}
19
+ */
20
+ function readHistory(historyPath) {
21
+ if (!existsSync(historyPath)) return [];
22
+ try {
23
+ return readFileSync(historyPath, 'utf8')
24
+ .split('\n')
25
+ .filter(Boolean)
26
+ .map(line => JSON.parse(line));
27
+ } catch {
28
+ return [];
29
+ }
30
+ }
31
+
32
+ /**
33
+ * Reescribe el archivo JSONL completo con las entradas proporcionadas.
34
+ * @param {string} historyPath
35
+ * @param {object[]} entries
36
+ */
37
+ function writeHistory(historyPath, entries) {
38
+ const dir = dirname(historyPath);
39
+ mkdirSync(dir, { recursive: true, mode: 0o700 });
40
+ writeFileSync(historyPath, entries.map(e => JSON.stringify(e)).join('\n') + (entries.length > 0 ? '\n' : ''), 'utf8');
41
+ }
42
+
43
+ /**
44
+ * Agrega una nueva entrada al historial JSONL, respetando el límite de 100 por categoría.
45
+ * Si se supera el límite, reescribe el archivo con las entradas más recientes de esa categoría.
46
+ *
47
+ * @param {string} historyPath
48
+ * @param {object} entry - Objeto que DEBE incluir campos `category` y `timestamp`.
49
+ */
50
+ function appendHistory(historyPath, entry) {
51
+ const dir = dirname(historyPath);
52
+ mkdirSync(dir, { recursive: true, mode: 0o700 });
53
+
54
+ const existing = readHistory(historyPath);
55
+ const category = entry.category || 'general';
56
+
57
+ // Filtrar entradas de la misma categoría
58
+ const sameCategory = existing.filter(e => (e.category || 'general') === category);
59
+
60
+ if (sameCategory.length >= MAX_ENTRIES_PER_CATEGORY) {
61
+ // Hay que podar: mantener las (MAX-1) más recientes de esta categoría + agregar la nueva
62
+ const otherCategories = existing.filter(e => (e.category || 'general') !== category);
63
+ const trimmed = sameCategory.slice(-(MAX_ENTRIES_PER_CATEGORY - 1));
64
+ writeHistory(historyPath, [...otherCategories, ...trimmed, entry]);
65
+ } else {
66
+ // Hay espacio: solo hacer append
67
+ appendFileSync(historyPath, JSON.stringify(entry) + '\n', 'utf8');
68
+ }
69
+ }
70
+
71
+ /**
72
+ * Obtiene la última entrada de una categoría específica.
73
+ * @param {object[]} entries
74
+ * @param {string} category
75
+ * @returns {object|null}
76
+ */
77
+ function getLastEntryForCategory(entries, category) {
78
+ const categoryEntries = entries.filter(e => (e.category || 'general') === category);
79
+ if (categoryEntries.length === 0) return null;
80
+ return categoryEntries[categoryEntries.length - 1];
81
+ }
82
+
83
+ /**
84
+ * Calcula la tendencia comparando el score actual con el anterior.
85
+ * @param {number} current
86
+ * @param {number} previous
87
+ * @returns {'improving'|'declining'|'stable'}
88
+ */
89
+ function calculateTrend(current, previous) {
90
+ if (current > previous + 0.5) return 'improving';
91
+ if (current < previous - 0.5) return 'declining';
92
+ return 'stable';
93
+ }
94
+
95
+ /**
96
+ * Formatea un número como diferencia con signo.
97
+ * @param {number} diff
98
+ * @returns {string}
99
+ */
100
+ function formatDiff(diff) {
101
+ if (diff > 0) return `+${diff.toFixed(1)}`;
102
+ if (diff < 0) return diff.toFixed(1);
103
+ return '0.0';
104
+ }
105
+
106
+ /**
107
+ * Guarda una nueva entrada de auditoría en el historial.
108
+ * @param {object} options
109
+ * @param {string} options.historyPath
110
+ * @param {string} options.category - Categoría de la auditoría (ej: 'security', 'performance').
111
+ * @param {number} options.score - Puntuación de 0 a 100.
112
+ * @param {object} [options.metadata] - Datos adicionales opcionales.
113
+ * @returns {object} Entrada guardada + tendencia detectada.
114
+ */
115
+ function saveEntry(options) {
116
+ const { historyPath, category, score, metadata = {} } = options;
117
+
118
+ const existing = readHistory(historyPath);
119
+ const previous = getLastEntryForCategory(existing, category);
120
+
121
+ const entry = {
122
+ timestamp: new Date().toISOString(),
123
+ category,
124
+ score,
125
+ metadata,
126
+ };
127
+
128
+ appendHistory(historyPath, entry);
129
+
130
+ const trend = previous !== null
131
+ ? calculateTrend(score, previous.score)
132
+ : 'first_run';
133
+
134
+ return {
135
+ entry,
136
+ trend,
137
+ previous_score: previous ? previous.score : null,
138
+ diff: previous ? score - previous.score : null,
139
+ };
140
+ }
141
+
142
+ /**
143
+ * Muestra el historial de una categoría con tendencias.
144
+ * @param {string} historyPath
145
+ * @param {string} [category] - Si se omite, muestra todas las categorías.
146
+ * @param {number} [limit] - Número máximo de entradas a mostrar.
147
+ * @returns {object}
148
+ */
149
+ function showHistory(historyPath, category, limit) {
150
+ const all = readHistory(historyPath);
151
+ const filtered = category
152
+ ? all.filter(e => (e.category || 'general') === category)
153
+ : all;
154
+
155
+ const entries = limit ? filtered.slice(-limit) : filtered;
156
+
157
+ // Agrupar por categoría para estadísticas
158
+ const byCategory = {};
159
+ for (const entry of all) {
160
+ const cat = entry.category || 'general';
161
+ if (!byCategory[cat]) byCategory[cat] = [];
162
+ byCategory[cat].push(entry.score);
163
+ }
164
+
165
+ const summaries = Object.entries(byCategory).map(([cat, scores]) => {
166
+ const avg = scores.reduce((s, v) => s + v, 0) / scores.length;
167
+ const last = scores[scores.length - 1];
168
+ const prev = scores.length >= 2 ? scores[scores.length - 2] : null;
169
+ return {
170
+ category: cat,
171
+ entries: scores.length,
172
+ avg_score: Math.round(avg * 10) / 10,
173
+ last_score: last,
174
+ trend: prev !== null ? calculateTrend(last, prev) : 'first_run',
175
+ };
176
+ });
177
+
178
+ return {
179
+ total_entries: filtered.length,
180
+ shown: entries.length,
181
+ category_filter: category || null,
182
+ summaries,
183
+ entries,
184
+ };
185
+ }
186
+
187
+ /**
188
+ * Calcula el diff entre la última y penúltima entrada de una categoría.
189
+ * @param {string} historyPath
190
+ * @param {string} category
191
+ * @returns {object}
192
+ */
193
+ function diffHistory(historyPath, category) {
194
+ const all = readHistory(historyPath);
195
+ const categoryEntries = category
196
+ ? all.filter(e => (e.category || 'general') === category)
197
+ : all;
198
+
199
+ if (categoryEntries.length === 0) {
200
+ return { success: false, message: `Sin entradas en el historial para categoría: ${category || 'todas'}` };
201
+ }
202
+
203
+ if (categoryEntries.length === 1) {
204
+ return {
205
+ success: true,
206
+ message: 'Solo existe una entrada — no hay diff disponible',
207
+ current: categoryEntries[0],
208
+ previous: null,
209
+ diff: null,
210
+ trend: 'first_run',
211
+ };
212
+ }
213
+
214
+ const current = categoryEntries[categoryEntries.length - 1];
215
+ const previous = categoryEntries[categoryEntries.length - 2];
216
+ const diff = current.score - previous.score;
217
+ const trend = calculateTrend(current.score, previous.score);
218
+
219
+ // Comparar metadata keys si existen
220
+ const metaDiff = [];
221
+ const currMeta = current.metadata || {};
222
+ const prevMeta = previous.metadata || {};
223
+
224
+ const allKeys = new Set([...Object.keys(currMeta), ...Object.keys(prevMeta)]);
225
+ for (const key of allKeys) {
226
+ const curr = currMeta[key];
227
+ const prev = prevMeta[key];
228
+ if (curr !== prev) {
229
+ metaDiff.push({ key, current: curr, previous: prev });
230
+ }
231
+ }
232
+
233
+ return {
234
+ success: true,
235
+ category: category || 'todas',
236
+ current,
237
+ previous,
238
+ diff: parseFloat(formatDiff(diff)),
239
+ diff_formatted: formatDiff(diff),
240
+ trend,
241
+ metadata_changes: metaDiff,
242
+ };
243
+ }
244
+
245
+ function main() {
246
+ const args = process.argv.slice(2);
247
+ const command = args[0];
248
+ const historyPath = (() => {
249
+ const hp = args.find(a => a.startsWith('--history='));
250
+ return hp ? resolve(hp.split('=')[1]) : DEFAULT_HISTORY_PATH;
251
+ })();
252
+
253
+ if (command === 'save') {
254
+ // save --category=X --score=N [--meta-key=value ...]
255
+ const categoryArg = args.find(a => a.startsWith('--category='));
256
+ const scoreArg = args.find(a => a.startsWith('--score='));
257
+
258
+ if (!categoryArg || !scoreArg) {
259
+ outputError('Uso: audit-history.js save --category=X --score=N [--history=ruta] [--meta-KEY=VALOR ...]');
260
+ process.exit(0);
261
+ }
262
+
263
+ const category = categoryArg.split('=')[1];
264
+ const score = parseFloat(scoreArg.split('=')[1]);
265
+
266
+ if (isNaN(score)) {
267
+ outputError(`Puntuación inválida: ${scoreArg.split('=')[1]}`);
268
+ process.exit(0);
269
+ }
270
+
271
+ // Extraer metadata extra (--meta-KEY=VALOR)
272
+ const metadata = {};
273
+ for (const arg of args) {
274
+ if (arg.startsWith('--meta-')) {
275
+ const rest = arg.slice(7); // quitar "--meta-"
276
+ const eqIndex = rest.indexOf('=');
277
+ if (eqIndex > 0) {
278
+ const key = rest.slice(0, eqIndex);
279
+ const value = rest.slice(eqIndex + 1);
280
+ metadata[key] = value;
281
+ }
282
+ }
283
+ }
284
+
285
+ const result = saveEntry({ historyPath, category, score, metadata });
286
+ outputJSON({
287
+ success: true,
288
+ saved: result.entry,
289
+ trend: result.trend,
290
+ previous_score: result.previous_score,
291
+ diff: result.diff,
292
+ });
293
+
294
+ } else if (command === 'show') {
295
+ const categoryArg = args.find(a => a.startsWith('--category='));
296
+ const limitArg = args.find(a => a.startsWith('--limit='));
297
+ const category = categoryArg ? categoryArg.split('=')[1] : undefined;
298
+ const limit = limitArg ? parseInt(limitArg.split('=')[1], 10) : 20;
299
+
300
+ const result = showHistory(historyPath, category, limit);
301
+ outputJSON({ success: true, ...result });
302
+
303
+ } else if (command === 'diff') {
304
+ const categoryArg = args.find(a => a.startsWith('--category='));
305
+ const category = categoryArg ? categoryArg.split('=')[1] : undefined;
306
+
307
+ const result = diffHistory(historyPath, category);
308
+ outputJSON(result);
309
+
310
+ } else {
311
+ outputError(`Comando desconocido: "${command || '(ninguno)'}". Comandos válidos: save, show, diff`);
312
+ process.exit(0);
313
+ }
314
+ }
315
+
316
+ if (require.main === module) {
317
+ main();
318
+ }
319
+
320
+ module.exports = {
321
+ readHistory,
322
+ writeHistory,
323
+ appendHistory,
324
+ saveEntry,
325
+ showHistory,
326
+ diffHistory,
327
+ calculateTrend,
328
+ getLastEntryForCategory,
329
+ MAX_ENTRIES_PER_CATEGORY,
330
+ };
@@ -0,0 +1,290 @@
1
+ // Adaptado de temp/ultraship-main/tools/bundle-tracker.mjs bajo MIT License
2
+ // Fuente: Houseofmvps/ultraship (https://github.com/Houseofmvps/ultraship)
3
+ 'use strict';
4
+
5
+ const { readFileSync, appendFileSync, existsSync, readdirSync, statSync, mkdirSync } = require('fs');
6
+ const { join, relative, extname, resolve } = require('path');
7
+ const { outputJSON, outputError } = require('./lib/output');
8
+
9
+ /**
10
+ * Formatea bytes a unidad legible.
11
+ * @param {number} bytes
12
+ * @returns {string}
13
+ */
14
+ function formatSize(bytes) {
15
+ if (bytes < 1024) return `${bytes}B`;
16
+ if (bytes < 1024 * 1024) return `${Math.round(bytes / 1024 * 10) / 10}KB`;
17
+ return `${Math.round(bytes / (1024 * 1024) * 10) / 10}MB`;
18
+ }
19
+
20
+ /**
21
+ * Detecta el directorio de build de un proyecto.
22
+ * @param {string} dir
23
+ * @returns {{ dir: string, path: string } | null}
24
+ */
25
+ function findBuildOutput(dir) {
26
+ const candidates = ['dist', 'build', '.next', 'out', '.output', '.vercel/output'];
27
+ for (const d of candidates) {
28
+ const p = join(dir, d);
29
+ try {
30
+ if (existsSync(p) && statSync(p).isDirectory()) return { dir: d, path: p };
31
+ } catch { /* skip */ }
32
+ }
33
+ return null;
34
+ }
35
+
36
+ /**
37
+ * Recorre recursivamente un directorio y devuelve archivos con las extensiones indicadas.
38
+ * @param {string} dir
39
+ * @param {string[]} extensions
40
+ * @returns {{ path: string, size: number }[]}
41
+ */
42
+ function walkFiles(dir, extensions) {
43
+ const extSet = new Set(extensions.map(e => e.toLowerCase()));
44
+ const files = [];
45
+
46
+ function walk(d) {
47
+ try {
48
+ for (const entry of readdirSync(d)) {
49
+ if (entry.startsWith('.')) continue;
50
+ const p = join(d, entry);
51
+ try {
52
+ const s = statSync(p);
53
+ if (s.isDirectory()) walk(p);
54
+ else if (extSet.has(extname(entry).toLowerCase())) {
55
+ files.push({ path: p, size: s.size });
56
+ }
57
+ } catch { /* skip */ }
58
+ }
59
+ } catch { /* skip */ }
60
+ }
61
+
62
+ walk(dir);
63
+ return files;
64
+ }
65
+
66
+ /** Dependencias pesadas conocidas con estimación de tamaño y alternativas. */
67
+ const HEAVY_DEPS = {
68
+ 'moment': { size: '300KB+', alternative: 'dayjs (2KB)' },
69
+ 'lodash': { size: '70KB+', alternative: 'lodash-es o imports individuales' },
70
+ 'jquery': { size: '90KB+', alternative: 'APIs DOM nativas' },
71
+ 'axios': { size: '30KB+', alternative: 'fetch nativo' },
72
+ 'underscore': { size: '30KB+', alternative: 'métodos nativos de Array' },
73
+ 'core-js': { size: '150KB+', alternative: 'polyfills específicos únicamente' },
74
+ 'date-fns': { size: '75KB+ (completo)', alternative: 'importar solo funciones necesarias' },
75
+ 'validator': { size: '50KB+', alternative: 'zod o comprobaciones individuales' },
76
+ 'bluebird': { size: '80KB+', alternative: 'Promises nativas' },
77
+ 'request': { size: '50KB+', alternative: 'fetch nativo o undici' },
78
+ };
79
+
80
+ /**
81
+ * Analiza las dependencias del package.json en un directorio.
82
+ * @param {string} dir
83
+ * @returns {{ production_deps: number, dev_deps: number, heavy_deps: object[] } | null}
84
+ */
85
+ function analyzeDependencies(dir) {
86
+ const pkgPath = join(dir, 'package.json');
87
+ if (!existsSync(pkgPath)) return null;
88
+
89
+ let pkg;
90
+ try {
91
+ pkg = JSON.parse(readFileSync(pkgPath, 'utf8'));
92
+ } catch {
93
+ return null;
94
+ }
95
+
96
+ const deps = Object.keys(pkg.dependencies || {});
97
+ const devDeps = Object.keys(pkg.devDependencies || {});
98
+
99
+ const heavyFound = [];
100
+ for (const dep of deps) {
101
+ if (HEAVY_DEPS[dep]) {
102
+ heavyFound.push({
103
+ dependency: dep,
104
+ estimated_size: HEAVY_DEPS[dep].size,
105
+ alternative: HEAVY_DEPS[dep].alternative,
106
+ severity: 'medium',
107
+ });
108
+ }
109
+ }
110
+
111
+ return {
112
+ production_deps: deps.length,
113
+ dev_deps: devDeps.length,
114
+ heavy_deps: heavyFound,
115
+ };
116
+ }
117
+
118
+ /**
119
+ * Lee la última entrada del historial JSONL.
120
+ * @param {string} historyPath
121
+ * @returns {object | null}
122
+ */
123
+ function readLastHistoryEntry(historyPath) {
124
+ if (!existsSync(historyPath)) return null;
125
+ try {
126
+ const lines = readFileSync(historyPath, 'utf8')
127
+ .split('\n')
128
+ .filter(Boolean);
129
+ if (lines.length === 0) return null;
130
+ return JSON.parse(lines[lines.length - 1]);
131
+ } catch {
132
+ return null;
133
+ }
134
+ }
135
+
136
+ /**
137
+ * Agrega una entrada al historial JSONL.
138
+ * @param {string} historyPath
139
+ * @param {object} entry
140
+ */
141
+ function appendHistoryEntry(historyPath, entry) {
142
+ const dir = require('path').dirname(historyPath);
143
+ mkdirSync(dir, { recursive: true, mode: 0o700 });
144
+ appendFileSync(historyPath, JSON.stringify(entry) + '\n', 'utf8');
145
+ }
146
+
147
+ function main() {
148
+ const args = process.argv.slice(2);
149
+ const dir = resolve(args.find(a => !a.startsWith('--')) || process.cwd());
150
+ const shouldSave = args.includes('--save');
151
+
152
+ if (!existsSync(dir)) {
153
+ outputError(`Directorio no encontrado: ${dir}`);
154
+ process.exit(0);
155
+ }
156
+
157
+ // Historial JSONL dentro del proyecto analizado
158
+ const historyPath = join(dir, '.planning', 'bundles', 'history.jsonl');
159
+
160
+ const findings = [];
161
+
162
+ // ── Análisis de bundle ─────────────────────────────────────────────────────
163
+ const buildOutput = findBuildOutput(dir);
164
+ let bundleAnalysis = null;
165
+
166
+ if (buildOutput) {
167
+ const jsFiles = walkFiles(buildOutput.path, ['.js', '.mjs', '.cjs']);
168
+ const cssFiles = walkFiles(buildOutput.path, ['.css']);
169
+ const imageFiles = walkFiles(buildOutput.path, ['.png', '.jpg', '.jpeg', '.gif', '.svg', '.webp', '.avif']);
170
+ const allFiles = walkFiles(buildOutput.path, [
171
+ '.js', '.mjs', '.cjs', '.css', '.html', '.htm',
172
+ '.json', '.map', '.png', '.jpg', '.jpeg', '.gif',
173
+ '.svg', '.webp', '.avif',
174
+ ]);
175
+
176
+ const totalJsSize = jsFiles.reduce((s, f) => s + f.size, 0);
177
+ const totalCssSize = cssFiles.reduce((s, f) => s + f.size, 0);
178
+ const totalImageSize = imageFiles.reduce((s, f) => s + f.size, 0);
179
+ const totalSize = allFiles.reduce((s, f) => s + f.size, 0);
180
+
181
+ const sourceMaps = allFiles.filter(f => f.path.endsWith('.map'));
182
+ const sourceMapSize = sourceMaps.reduce((s, f) => s + f.size, 0);
183
+
184
+ const largestJs = jsFiles
185
+ .sort((a, b) => b.size - a.size)
186
+ .slice(0, 10)
187
+ .map(f => ({ file: relative(dir, f.path), size: formatSize(f.size), bytes: f.size }));
188
+
189
+ bundleAnalysis = {
190
+ build_dir: buildOutput.dir,
191
+ total_size: formatSize(totalSize),
192
+ total_bytes: totalSize,
193
+ js: { files: jsFiles.length, size: formatSize(totalJsSize), bytes: totalJsSize },
194
+ css: { files: cssFiles.length, size: formatSize(totalCssSize), bytes: totalCssSize },
195
+ images: { files: imageFiles.length, size: formatSize(totalImageSize), bytes: totalImageSize },
196
+ source_maps: { files: sourceMaps.length, size: formatSize(sourceMapSize), bytes: sourceMapSize },
197
+ largest_js_files: largestJs,
198
+ };
199
+
200
+ // Advertencias de tamaño
201
+ if (totalJsSize > 500 * 1024) {
202
+ findings.push({ severity: 'high', message: `Bundle JS total es ${formatSize(totalJsSize)} — objetivo: menos de 500 KB para buen rendimiento` });
203
+ } else if (totalJsSize > 250 * 1024) {
204
+ findings.push({ severity: 'medium', message: `Bundle JS total es ${formatSize(totalJsSize)} — considera code splitting para bundles mayores de 250 KB` });
205
+ }
206
+
207
+ for (const f of largestJs) {
208
+ if (f.bytes > 200 * 1024) {
209
+ findings.push({ severity: 'high', message: `${f.file} pesa ${f.size} — dividir en fragmentos más pequeños con dynamic imports` });
210
+ }
211
+ }
212
+
213
+ if (sourceMaps.length > 0) {
214
+ findings.push({ severity: 'low', message: `${sourceMaps.length} archivos de source map (${formatSize(sourceMapSize)}) en el build — considera excluirlos del despliegue` });
215
+ }
216
+
217
+ const largeImages = imageFiles.filter(f => f.size > 200 * 1024);
218
+ if (largeImages.length > 0) {
219
+ findings.push({ severity: 'medium', message: `${largeImages.length} imágenes mayores de 200 KB en el build — optimizar con conversión WebP/AVIF` });
220
+ }
221
+ } else {
222
+ findings.push({ severity: 'info', message: 'No se encontró directorio de build (dist/, build/, .next/, out/) — ejecuta el comando de build primero' });
223
+ }
224
+
225
+ // ── Análisis de dependencias ───────────────────────────────────────────────
226
+ const depAnalysis = analyzeDependencies(dir);
227
+ if (depAnalysis && depAnalysis.heavy_deps.length > 0) {
228
+ for (const dep of depAnalysis.heavy_deps) {
229
+ findings.push({
230
+ severity: dep.severity,
231
+ message: `Dependencia pesada: ${dep.dependency} (~${dep.estimated_size}) — considera ${dep.alternative}`,
232
+ });
233
+ }
234
+ }
235
+
236
+ // ── Comparación con historial ──────────────────────────────────────────────
237
+ let comparison = null;
238
+
239
+ if (shouldSave) {
240
+ const prev = readLastHistoryEntry(historyPath);
241
+
242
+ if (prev && prev.bundle && bundleAnalysis) {
243
+ const diff = bundleAnalysis.total_bytes - prev.bundle.total_bytes;
244
+ comparison = {
245
+ previous_size: prev.bundle.total_size,
246
+ current_size: bundleAnalysis.total_size,
247
+ diff_bytes: diff,
248
+ diff_formatted: (diff >= 0 ? '+' : '') + formatSize(Math.abs(diff)),
249
+ grew: diff > 0,
250
+ previous_date: prev.timestamp,
251
+ };
252
+
253
+ if (diff > 50 * 1024) {
254
+ findings.push({ severity: 'high', message: `Bundle creció ${formatSize(diff)} desde la última revisión — investiga nuevas dependencias o tree-shaking ausente` });
255
+ } else if (diff > 10 * 1024) {
256
+ findings.push({ severity: 'medium', message: `Bundle creció ${formatSize(diff)} desde la última revisión` });
257
+ }
258
+ }
259
+
260
+ // Persistir entrada en JSONL
261
+ const entry = {
262
+ timestamp: new Date().toISOString(),
263
+ bundle: bundleAnalysis,
264
+ dependencies: depAnalysis,
265
+ findings_count: findings.length,
266
+ };
267
+ try {
268
+ appendHistoryEntry(historyPath, entry);
269
+ } catch (err) {
270
+ outputError('Error al guardar historial de bundle', { message: err.message });
271
+ }
272
+ }
273
+
274
+ outputJSON({
275
+ success: true,
276
+ packages_scanned: 1,
277
+ bundle: bundleAnalysis,
278
+ dependencies: depAnalysis,
279
+ comparison,
280
+ findings,
281
+ report_saved: shouldSave,
282
+ history_path: shouldSave ? historyPath : null,
283
+ });
284
+ }
285
+
286
+ if (require.main === module) {
287
+ main();
288
+ }
289
+
290
+ module.exports = { findBuildOutput, walkFiles, analyzeDependencies, formatSize, HEAVY_DEPS };