baseguard 1.0.5 → 1.0.6

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 (80) hide show
  1. package/dist/ai/gemini-analyzer.d.ts.map +1 -1
  2. package/dist/ai/gemini-analyzer.js +1 -1
  3. package/dist/ai/gemini-analyzer.js.map +1 -1
  4. package/dist/ai/gemini-code-fixer.d.ts.map +1 -1
  5. package/dist/ai/gemini-code-fixer.js +2 -7
  6. package/dist/ai/gemini-code-fixer.js.map +1 -1
  7. package/dist/ai/jules-implementer.d.ts +8 -0
  8. package/dist/ai/jules-implementer.d.ts.map +1 -1
  9. package/dist/ai/jules-implementer.js +115 -17
  10. package/dist/ai/jules-implementer.js.map +1 -1
  11. package/package.json +1 -1
  12. package/src/ai/__tests__/gemini-analyzer.test.ts +0 -181
  13. package/src/ai/agentkit-orchestrator.ts +0 -534
  14. package/src/ai/fix-manager.ts +0 -362
  15. package/src/ai/gemini-analyzer.ts +0 -665
  16. package/src/ai/gemini-code-fixer.ts +0 -539
  17. package/src/ai/index.ts +0 -4
  18. package/src/ai/jules-implementer.ts +0 -504
  19. package/src/ai/unified-code-fixer.ts +0 -347
  20. package/src/commands/automation.ts +0 -344
  21. package/src/commands/check.ts +0 -298
  22. package/src/commands/config.ts +0 -584
  23. package/src/commands/fix.ts +0 -269
  24. package/src/commands/index.ts +0 -7
  25. package/src/commands/init.ts +0 -156
  26. package/src/commands/status.ts +0 -307
  27. package/src/core/api-key-manager.ts +0 -298
  28. package/src/core/baseguard.ts +0 -757
  29. package/src/core/baseline-checker.ts +0 -566
  30. package/src/core/cache-manager.ts +0 -272
  31. package/src/core/configuration-recovery.ts +0 -672
  32. package/src/core/configuration.ts +0 -596
  33. package/src/core/debug-logger.ts +0 -590
  34. package/src/core/directory-filter.ts +0 -421
  35. package/src/core/error-handler.ts +0 -518
  36. package/src/core/file-processor.ts +0 -338
  37. package/src/core/gitignore-manager.ts +0 -169
  38. package/src/core/graceful-degradation-manager.ts +0 -596
  39. package/src/core/index.ts +0 -17
  40. package/src/core/lazy-loader.ts +0 -317
  41. package/src/core/logger.ts +0 -0
  42. package/src/core/memory-manager.ts +0 -290
  43. package/src/core/parser-worker.ts +0 -33
  44. package/src/core/startup-optimizer.ts +0 -246
  45. package/src/core/system-error-handler.ts +0 -755
  46. package/src/git/automation-engine.ts +0 -361
  47. package/src/git/github-manager.ts +0 -190
  48. package/src/git/hook-manager.ts +0 -210
  49. package/src/git/index.ts +0 -4
  50. package/src/index.ts +0 -8
  51. package/src/parsers/feature-validator.ts +0 -559
  52. package/src/parsers/index.ts +0 -8
  53. package/src/parsers/parser-manager.ts +0 -418
  54. package/src/parsers/parser.ts +0 -26
  55. package/src/parsers/react-parser-optimized.ts +0 -161
  56. package/src/parsers/react-parser.ts +0 -359
  57. package/src/parsers/svelte-parser.ts +0 -510
  58. package/src/parsers/vanilla-parser.ts +0 -685
  59. package/src/parsers/vue-parser.ts +0 -476
  60. package/src/types/index.ts +0 -96
  61. package/src/ui/components.ts +0 -567
  62. package/src/ui/help.ts +0 -193
  63. package/src/ui/index.ts +0 -4
  64. package/src/ui/prompts.ts +0 -681
  65. package/src/ui/terminal-header.ts +0 -59
  66. package/tests/e2e/baseguard.e2e.test.ts +0 -516
  67. package/tests/e2e/cross-platform.e2e.test.ts +0 -420
  68. package/tests/e2e/git-integration.e2e.test.ts +0 -487
  69. package/tests/fixtures/react-project/package.json +0 -14
  70. package/tests/fixtures/react-project/src/App.css +0 -76
  71. package/tests/fixtures/react-project/src/App.tsx +0 -77
  72. package/tests/fixtures/svelte-project/package.json +0 -11
  73. package/tests/fixtures/svelte-project/src/App.svelte +0 -369
  74. package/tests/fixtures/vanilla-project/index.html +0 -76
  75. package/tests/fixtures/vanilla-project/script.js +0 -331
  76. package/tests/fixtures/vanilla-project/styles.css +0 -359
  77. package/tests/fixtures/vue-project/package.json +0 -12
  78. package/tests/fixtures/vue-project/src/App.vue +0 -216
  79. package/tmp-smoke/.baseguard/backups/config-2026-02-19T12-04-11-067Z-auto.json +0 -30
  80. package/tmp-smoke/src/bad.css +0 -3
@@ -1,590 +0,0 @@
1
- import { promises as fs } from 'fs';
2
- import path from 'path';
3
- import chalk from 'chalk';
4
- import { SystemError } from './system-error-handler.js';
5
-
6
- export enum LogLevel {
7
- ERROR = 0,
8
- WARN = 1,
9
- INFO = 2,
10
- DEBUG = 3,
11
- TRACE = 4
12
- }
13
-
14
- export interface LogEntry {
15
- timestamp: Date;
16
- level: LogLevel;
17
- category: string;
18
- message: string;
19
- context?: any;
20
- error?: Error;
21
- performance?: {
22
- duration?: number;
23
- memory?: number;
24
- cpu?: number;
25
- };
26
- }
27
-
28
- export interface DebugSession {
29
- id: string;
30
- startTime: Date;
31
- endTime?: Date;
32
- entries: LogEntry[];
33
- summary: {
34
- errors: number;
35
- warnings: number;
36
- performance: {
37
- totalDuration: number;
38
- peakMemory: number;
39
- operations: number;
40
- };
41
- };
42
- }
43
-
44
- /**
45
- * Enhanced logging and debugging system for BaseGuard
46
- */
47
- export class DebugLogger {
48
- private static instance: DebugLogger | null = null;
49
- private logLevel: LogLevel = LogLevel.INFO;
50
- private logDir: string;
51
- private currentSession: DebugSession | null = null;
52
- private logBuffer: LogEntry[] = [];
53
- private maxBufferSize = 1000;
54
- private flushInterval: NodeJS.Timeout | null = null;
55
- private performanceMarks = new Map<string, number>();
56
-
57
- constructor() {
58
- this.logDir = path.join(process.cwd(), '.baseguard', 'logs');
59
- this.initializeLogging();
60
- }
61
-
62
- /**
63
- * Get singleton instance
64
- */
65
- static getInstance(): DebugLogger {
66
- if (!DebugLogger.instance) {
67
- DebugLogger.instance = new DebugLogger();
68
- }
69
- return DebugLogger.instance;
70
- }
71
-
72
- /**
73
- * Initialize logging system
74
- */
75
- private async initializeLogging(): Promise<void> {
76
- try {
77
- await fs.mkdir(this.logDir, { recursive: true });
78
-
79
- // Set log level from environment
80
- const envLevel = process.env.BASEGUARD_LOG_LEVEL?.toUpperCase();
81
- if (envLevel && envLevel in LogLevel) {
82
- this.logLevel = LogLevel[envLevel as keyof typeof LogLevel];
83
- }
84
-
85
- // Start auto-flush
86
- this.flushInterval = setInterval(() => {
87
- this.flushLogs();
88
- }, 5000); // Flush every 5 seconds
89
- this.flushInterval.unref();
90
-
91
- // Handle process exit
92
- process.on('exit', () => this.cleanup());
93
- process.on('SIGINT', () => this.cleanup());
94
- process.on('SIGTERM', () => this.cleanup());
95
- } catch (error) {
96
- console.warn('Failed to initialize debug logging:', error);
97
- }
98
- }
99
-
100
- /**
101
- * Start a new debug session
102
- */
103
- startSession(sessionId?: string): string {
104
- const id = sessionId || `session-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`;
105
-
106
- this.currentSession = {
107
- id,
108
- startTime: new Date(),
109
- entries: [],
110
- summary: {
111
- errors: 0,
112
- warnings: 0,
113
- performance: {
114
- totalDuration: 0,
115
- peakMemory: 0,
116
- operations: 0
117
- }
118
- }
119
- };
120
-
121
- this.info('session', `Debug session started: ${id}`);
122
- return id;
123
- }
124
-
125
- /**
126
- * End current debug session
127
- */
128
- async endSession(): Promise<DebugSession | null> {
129
- if (!this.currentSession) {
130
- return null;
131
- }
132
-
133
- this.currentSession.endTime = new Date();
134
- const duration = this.currentSession.endTime.getTime() - this.currentSession.startTime.getTime();
135
- this.currentSession.summary.performance.totalDuration = duration;
136
-
137
- this.info('session', `Debug session ended: ${this.currentSession.id}`);
138
-
139
- // Save session to file
140
- await this.saveSession(this.currentSession);
141
-
142
- const session = this.currentSession;
143
- this.currentSession = null;
144
-
145
- return session;
146
- }
147
-
148
- /**
149
- * Log error message
150
- */
151
- error(category: string, message: string, context?: any, error?: Error): void {
152
- this.log(LogLevel.ERROR, category, message, context, error);
153
-
154
- if (this.currentSession) {
155
- this.currentSession.summary.errors++;
156
- }
157
- }
158
-
159
- /**
160
- * Log warning message
161
- */
162
- warn(category: string, message: string, context?: any): void {
163
- this.log(LogLevel.WARN, category, message, context);
164
-
165
- if (this.currentSession) {
166
- this.currentSession.summary.warnings++;
167
- }
168
- }
169
-
170
- /**
171
- * Log info message
172
- */
173
- info(category: string, message: string, context?: any): void {
174
- this.log(LogLevel.INFO, category, message, context);
175
- }
176
-
177
- /**
178
- * Log debug message
179
- */
180
- debug(category: string, message: string, context?: any): void {
181
- this.log(LogLevel.DEBUG, category, message, context);
182
- }
183
-
184
- /**
185
- * Log trace message
186
- */
187
- trace(category: string, message: string, context?: any): void {
188
- this.log(LogLevel.TRACE, category, message, context);
189
- }
190
-
191
- /**
192
- * Start performance measurement
193
- */
194
- startPerformance(operation: string): void {
195
- this.performanceMarks.set(operation, Date.now());
196
- this.trace('performance', `Started: ${operation}`);
197
- }
198
-
199
- /**
200
- * End performance measurement
201
- */
202
- endPerformance(operation: string, context?: any): number {
203
- const startTime = this.performanceMarks.get(operation);
204
- if (!startTime) {
205
- this.warn('performance', `No start mark found for operation: ${operation}`);
206
- return 0;
207
- }
208
-
209
- const duration = Date.now() - startTime;
210
- this.performanceMarks.delete(operation);
211
-
212
- const memoryUsage = process.memoryUsage();
213
- const performance = {
214
- duration,
215
- memory: memoryUsage.heapUsed,
216
- cpu: process.cpuUsage().user
217
- };
218
-
219
- this.info('performance', `Completed: ${operation} (${duration}ms)`, {
220
- ...context,
221
- performance
222
- });
223
-
224
- if (this.currentSession) {
225
- this.currentSession.summary.performance.operations++;
226
- this.currentSession.summary.performance.peakMemory = Math.max(
227
- this.currentSession.summary.performance.peakMemory,
228
- memoryUsage.heapUsed
229
- );
230
- }
231
-
232
- return duration;
233
- }
234
-
235
- /**
236
- * Log system error with enhanced context
237
- */
238
- logSystemError(error: SystemError): void {
239
- this.error('system', error.message, {
240
- code: error.code,
241
- severity: error.severity,
242
- recoverable: error.recoverable,
243
- context: error.context,
244
- stack: error.stack
245
- }, error);
246
- }
247
-
248
- /**
249
- * Log API operation
250
- */
251
- logApiOperation(service: string, operation: string, success: boolean, duration: number, context?: any): void {
252
- const level = success ? LogLevel.INFO : LogLevel.ERROR;
253
- const message = `${service}.${operation}: ${success ? 'SUCCESS' : 'FAILED'} (${duration}ms)`;
254
-
255
- this.log(level, 'api', message, {
256
- service,
257
- operation,
258
- success,
259
- duration,
260
- ...context
261
- });
262
- }
263
-
264
- /**
265
- * Log file processing operation
266
- */
267
- logFileProcessing(file: string, operation: string, success: boolean, duration?: number, context?: any): void {
268
- const level = success ? LogLevel.DEBUG : LogLevel.WARN;
269
- const message = `${operation}: ${file} ${success ? 'SUCCESS' : 'FAILED'}${duration ? ` (${duration}ms)` : ''}`;
270
-
271
- this.log(level, 'file', message, {
272
- file,
273
- operation,
274
- success,
275
- duration,
276
- ...context
277
- });
278
- }
279
-
280
- /**
281
- * Core logging method
282
- */
283
- private log(level: LogLevel, category: string, message: string, context?: any, error?: Error): void {
284
- if (level > this.logLevel) {
285
- return;
286
- }
287
-
288
- const entry: LogEntry = {
289
- timestamp: new Date(),
290
- level,
291
- category,
292
- message,
293
- context,
294
- error
295
- };
296
-
297
- // Add to buffer
298
- this.logBuffer.push(entry);
299
-
300
- // Add to current session
301
- if (this.currentSession) {
302
- this.currentSession.entries.push(entry);
303
- }
304
-
305
- // Console output for important messages
306
- if (level <= LogLevel.WARN || (level === LogLevel.INFO && process.env.BASEGUARD_VERBOSE === 'true')) {
307
- this.outputToConsole(entry);
308
- }
309
-
310
- // Flush if buffer is full
311
- if (this.logBuffer.length >= this.maxBufferSize) {
312
- this.flushLogs();
313
- }
314
- }
315
-
316
- /**
317
- * Output log entry to console
318
- */
319
- private outputToConsole(entry: LogEntry): void {
320
- const levelName = LogLevel[entry.level];
321
-
322
- let color = chalk.white;
323
- let icon = '';
324
-
325
- switch (entry.level) {
326
- case LogLevel.ERROR:
327
- color = chalk.red;
328
- icon = '❌';
329
- break;
330
- case LogLevel.WARN:
331
- color = chalk.yellow;
332
- icon = '⚠️';
333
- break;
334
- case LogLevel.INFO:
335
- color = chalk.cyan;
336
- icon = 'ℹ️';
337
- break;
338
- case LogLevel.DEBUG:
339
- color = chalk.dim;
340
- icon = '🔍';
341
- break;
342
- case LogLevel.TRACE:
343
- color = chalk.dim;
344
- icon = '📍';
345
- break;
346
- }
347
-
348
- const prefix = `${icon} [${levelName}] ${entry.category}:`;
349
- console.log(color(`${prefix} ${entry.message}`));
350
-
351
- if (entry.context && process.env.BASEGUARD_DEBUG === 'true') {
352
- console.log(chalk.dim(` Context: ${JSON.stringify(entry.context, null, 2)}`));
353
- }
354
-
355
- if (entry.error && entry.level <= LogLevel.WARN) {
356
- console.log(chalk.dim(` Error: ${entry.error.stack || entry.error.message}`));
357
- }
358
- }
359
-
360
- /**
361
- * Flush log buffer to file
362
- */
363
- private async flushLogs(): Promise<void> {
364
- if (this.logBuffer.length === 0) {
365
- return;
366
- }
367
-
368
- try {
369
- const logFile = path.join(this.logDir, `baseguard-${new Date().toISOString().split('T')[0]}.log`);
370
- const logLines = this.logBuffer.map(entry => this.formatLogEntry(entry));
371
-
372
- await fs.appendFile(logFile, logLines.join('\n') + '\n');
373
- this.logBuffer = [];
374
- } catch (error) {
375
- console.warn('Failed to flush logs:', error);
376
- }
377
- }
378
-
379
- /**
380
- * Format log entry for file output
381
- */
382
- private formatLogEntry(entry: LogEntry): string {
383
- const timestamp = entry.timestamp.toISOString();
384
- const level = LogLevel[entry.level].padEnd(5);
385
- const category = entry.category.padEnd(12);
386
-
387
- let line = `${timestamp} [${level}] ${category} ${entry.message}`;
388
-
389
- if (entry.context) {
390
- line += ` | Context: ${JSON.stringify(entry.context)}`;
391
- }
392
-
393
- if (entry.error) {
394
- line += ` | Error: ${entry.error.message}`;
395
- if (entry.error.stack) {
396
- line += ` | Stack: ${entry.error.stack.replace(/\n/g, '\\n')}`;
397
- }
398
- }
399
-
400
- return line;
401
- }
402
-
403
- /**
404
- * Save debug session to file
405
- */
406
- private async saveSession(session: DebugSession): Promise<void> {
407
- try {
408
- const sessionFile = path.join(this.logDir, `session-${session.id}.json`);
409
- await fs.writeFile(sessionFile, JSON.stringify(session, null, 2));
410
- } catch (error) {
411
- console.warn('Failed to save debug session:', error);
412
- }
413
- }
414
-
415
- /**
416
- * Get recent log entries
417
- */
418
- getRecentLogs(count: number = 100): LogEntry[] {
419
- const allEntries = [
420
- ...this.logBuffer,
421
- ...(this.currentSession?.entries || [])
422
- ];
423
-
424
- return allEntries
425
- .sort((a, b) => b.timestamp.getTime() - a.timestamp.getTime())
426
- .slice(0, count);
427
- }
428
-
429
- /**
430
- * Get logs by category
431
- */
432
- getLogsByCategory(category: string, count: number = 50): LogEntry[] {
433
- return this.getRecentLogs(count * 2)
434
- .filter(entry => entry.category === category)
435
- .slice(0, count);
436
- }
437
-
438
- /**
439
- * Get error summary
440
- */
441
- getErrorSummary(): {
442
- totalErrors: number;
443
- totalWarnings: number;
444
- errorsByCategory: Record<string, number>;
445
- recentErrors: LogEntry[];
446
- } {
447
- const recentLogs = this.getRecentLogs(500);
448
- const errors = recentLogs.filter(entry => entry.level === LogLevel.ERROR);
449
- const warnings = recentLogs.filter(entry => entry.level === LogLevel.WARN);
450
-
451
- const errorsByCategory: Record<string, number> = {};
452
- errors.forEach(entry => {
453
- errorsByCategory[entry.category] = (errorsByCategory[entry.category] || 0) + 1;
454
- });
455
-
456
- return {
457
- totalErrors: errors.length,
458
- totalWarnings: warnings.length,
459
- errorsByCategory,
460
- recentErrors: errors.slice(0, 10)
461
- };
462
- }
463
-
464
- /**
465
- * Generate debug report
466
- */
467
- async generateDebugReport(): Promise<string> {
468
- const summary = this.getErrorSummary();
469
- const memoryUsage = process.memoryUsage();
470
- const uptime = process.uptime();
471
-
472
- const report = {
473
- timestamp: new Date().toISOString(),
474
- version: process.env.npm_package_version || 'unknown',
475
- platform: {
476
- os: process.platform,
477
- arch: process.arch,
478
- node: process.version
479
- },
480
- runtime: {
481
- uptime: Math.round(uptime),
482
- memory: {
483
- heapUsed: Math.round(memoryUsage.heapUsed / 1024 / 1024),
484
- heapTotal: Math.round(memoryUsage.heapTotal / 1024 / 1024),
485
- external: Math.round(memoryUsage.external / 1024 / 1024)
486
- }
487
- },
488
- session: this.currentSession ? {
489
- id: this.currentSession.id,
490
- duration: Date.now() - this.currentSession.startTime.getTime(),
491
- entries: this.currentSession.entries.length,
492
- summary: this.currentSession.summary
493
- } : null,
494
- errors: summary,
495
- recentLogs: this.getRecentLogs(20)
496
- };
497
-
498
- const reportFile = path.join(this.logDir, `debug-report-${Date.now()}.json`);
499
- await fs.writeFile(reportFile, JSON.stringify(report, null, 2));
500
-
501
- return reportFile;
502
- }
503
-
504
- /**
505
- * Set log level
506
- */
507
- setLogLevel(level: LogLevel): void {
508
- this.logLevel = level;
509
- this.info('logger', `Log level set to ${LogLevel[level]}`);
510
- }
511
-
512
- /**
513
- * Enable verbose logging
514
- */
515
- enableVerbose(): void {
516
- this.setLogLevel(LogLevel.DEBUG);
517
- process.env.BASEGUARD_VERBOSE = 'true';
518
- }
519
-
520
- /**
521
- * Enable debug mode
522
- */
523
- enableDebug(): void {
524
- this.setLogLevel(LogLevel.TRACE);
525
- process.env.BASEGUARD_DEBUG = 'true';
526
- process.env.BASEGUARD_VERBOSE = 'true';
527
- }
528
-
529
- /**
530
- * Clean up old log files
531
- */
532
- async cleanupOldLogs(maxAgeDays: number = 7): Promise<void> {
533
- try {
534
- const files = await fs.readdir(this.logDir);
535
- const now = Date.now();
536
- const maxAge = maxAgeDays * 24 * 60 * 60 * 1000;
537
-
538
- for (const file of files) {
539
- const filePath = path.join(this.logDir, file);
540
- const stats = await fs.stat(filePath);
541
-
542
- if (now - stats.mtime.getTime() > maxAge) {
543
- await fs.unlink(filePath);
544
- this.debug('cleanup', `Removed old log file: ${file}`);
545
- }
546
- }
547
- } catch (error) {
548
- this.warn('cleanup', 'Failed to cleanup old logs', { error: error instanceof Error ? error.message : 'Unknown error' });
549
- }
550
- }
551
-
552
- /**
553
- * Cleanup resources
554
- */
555
- private cleanup(): void {
556
- if (this.flushInterval) {
557
- clearInterval(this.flushInterval);
558
- this.flushInterval = null;
559
- }
560
-
561
- // Final flush
562
- this.flushLogs().catch(() => {
563
- // Ignore errors during cleanup
564
- });
565
-
566
- if (this.currentSession) {
567
- this.endSession().catch(() => {
568
- // Ignore errors during cleanup
569
- });
570
- }
571
- }
572
-
573
- /**
574
- * Create logger for specific category
575
- */
576
- createCategoryLogger(category: string) {
577
- return {
578
- error: (message: string, context?: any, error?: Error) => this.error(category, message, context, error),
579
- warn: (message: string, context?: any) => this.warn(category, message, context),
580
- info: (message: string, context?: any) => this.info(category, message, context),
581
- debug: (message: string, context?: any) => this.debug(category, message, context),
582
- trace: (message: string, context?: any) => this.trace(category, message, context),
583
- startPerformance: (operation: string) => this.startPerformance(`${category}.${operation}`),
584
- endPerformance: (operation: string, context?: any) => this.endPerformance(`${category}.${operation}`, context)
585
- };
586
- }
587
- }
588
-
589
- // Export singleton instance
590
- export const logger = DebugLogger.getInstance();