@triedotdev/mcp 1.0.52 → 1.0.53
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/dist/{agent-smith-BECRZH73.js → agent-smith-MCTLZS2P.js} +2 -2
- package/dist/{agent-smith-runner-LZRXM2Q2.js → agent-smith-runner-IPEGL4HM.js} +2 -2
- package/dist/{chunk-WCHIJDCD.js → chunk-HPNTWPZU.js} +2 -2
- package/dist/{chunk-A43476GB.js → chunk-JMW3JVYT.js} +21 -7
- package/dist/chunk-JMW3JVYT.js.map +1 -0
- package/dist/{chunk-TOE75CFZ.js → chunk-MVC27YMB.js} +6 -4
- package/dist/{chunk-TOE75CFZ.js.map → chunk-MVC27YMB.js.map} +1 -1
- package/dist/{chunk-C3AS5OXW.js → chunk-NCRZZNPC.js} +2 -2
- package/dist/{chunk-YKUCIKTU.js → chunk-XWD5SUPP.js} +280 -146
- package/dist/chunk-XWD5SUPP.js.map +1 -0
- package/dist/cli/main.js +4 -4
- package/dist/cli/yolo-daemon.js +12 -6
- package/dist/cli/yolo-daemon.js.map +1 -1
- package/dist/index.js +47 -37
- package/dist/index.js.map +1 -1
- package/dist/workers/agent-worker.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-A43476GB.js.map +0 -1
- package/dist/chunk-YKUCIKTU.js.map +0 -1
- /package/dist/{agent-smith-BECRZH73.js.map → agent-smith-MCTLZS2P.js.map} +0 -0
- /package/dist/{agent-smith-runner-LZRXM2Q2.js.map → agent-smith-runner-IPEGL4HM.js.map} +0 -0
- /package/dist/{chunk-WCHIJDCD.js.map → chunk-HPNTWPZU.js.map} +0 -0
- /package/dist/{chunk-C3AS5OXW.js.map → chunk-NCRZZNPC.js.map} +0 -0
package/dist/cli/main.js
CHANGED
|
@@ -16,8 +16,8 @@ import {
|
|
|
16
16
|
needsBootstrap,
|
|
17
17
|
perceiveCurrentChanges,
|
|
18
18
|
reasonAboutChangesHumanReadable
|
|
19
|
-
} from "../chunk-
|
|
20
|
-
import "../chunk-
|
|
19
|
+
} from "../chunk-HPNTWPZU.js";
|
|
20
|
+
import "../chunk-NCRZZNPC.js";
|
|
21
21
|
import {
|
|
22
22
|
findCrossProjectPatterns,
|
|
23
23
|
getDailyLogs,
|
|
@@ -37,9 +37,9 @@ import {
|
|
|
37
37
|
searchGlobalPatterns,
|
|
38
38
|
searchIssues,
|
|
39
39
|
updateGlobalMemoryMd
|
|
40
|
-
} from "../chunk-
|
|
40
|
+
} from "../chunk-MVC27YMB.js";
|
|
41
41
|
import "../chunk-3CS6Z2SL.js";
|
|
42
|
-
import "../chunk-
|
|
42
|
+
import "../chunk-JMW3JVYT.js";
|
|
43
43
|
import {
|
|
44
44
|
getWorkingDirectory
|
|
45
45
|
} from "../chunk-ASGSTVVF.js";
|
package/dist/cli/yolo-daemon.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
TrieScanTool
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-XWD5SUPP.js";
|
|
5
|
+
import "../chunk-NCRZZNPC.js";
|
|
6
|
+
import "../chunk-MVC27YMB.js";
|
|
7
7
|
import "../chunk-3CS6Z2SL.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-JMW3JVYT.js";
|
|
9
9
|
import {
|
|
10
10
|
getWorkingDirectory
|
|
11
11
|
} from "../chunk-ASGSTVVF.js";
|
|
@@ -254,7 +254,9 @@ function parseArgs() {
|
|
|
254
254
|
directory: getWorkingDirectory(),
|
|
255
255
|
debounceMs: 1e3,
|
|
256
256
|
jsonOutput: false,
|
|
257
|
-
runOnce: false
|
|
257
|
+
runOnce: false,
|
|
258
|
+
// Default to interactive mode for TTY terminals
|
|
259
|
+
interactive: process.stdout.isTTY === true
|
|
258
260
|
};
|
|
259
261
|
for (let i = 0; i < args.length; i++) {
|
|
260
262
|
const arg = args[i];
|
|
@@ -310,6 +312,9 @@ function parseArgs() {
|
|
|
310
312
|
case "--interactive":
|
|
311
313
|
config2.interactive = true;
|
|
312
314
|
break;
|
|
315
|
+
case "--no-interactive":
|
|
316
|
+
config2.interactive = false;
|
|
317
|
+
break;
|
|
313
318
|
case "--workers":
|
|
314
319
|
config2.workers = true;
|
|
315
320
|
break;
|
|
@@ -356,7 +361,8 @@ Options:
|
|
|
356
361
|
--max-concurrency Max parallel agents
|
|
357
362
|
--streaming Enable streaming updates
|
|
358
363
|
--no-streaming Disable streaming updates
|
|
359
|
-
--interactive Enable interactive dashboard (TTY
|
|
364
|
+
--interactive Enable interactive dashboard (default for TTY)
|
|
365
|
+
--no-interactive Disable interactive dashboard (for CI/scripts)
|
|
360
366
|
--workers Use worker threads for agents
|
|
361
367
|
--no-workers Disable worker threads
|
|
362
368
|
--timeout Agent timeout in ms
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/cli/yolo-daemon.ts"],"sourcesContent":["#!/usr/bin/env node\n/**\n * Trie Agent Watch Daemon\n * \n * Headless file watcher for local/CI environments.\n * Watches a directory and reports issues as they occur.\n * \n * Usage:\n * node dist/cli/yolo-daemon.js [options]\n * \n * Options:\n * --dir, -d Directory to watch (default: cwd)\n * --debounce, -D Debounce time in ms (default: 1000)\n * --json Output as JSON (for log aggregation)\n * --once Run once and exit (no watch)\n */\n\nimport { watch, existsSync, statSync, readFileSync } from 'fs';\nimport { readdir } from 'fs/promises';\nimport { join, extname, basename, resolve } from 'path';\nimport { TrieScanTool } from '../tools/scan.js';\nimport { getWorkingDirectory } from '../utils/workspace.js';\n\n// File extensions to watch\nconst WATCH_EXTENSIONS = new Set([\n '.ts', '.tsx', '.js', '.jsx', '.mjs',\n '.vue', '.svelte', '.astro',\n '.py', '.go', '.rs'\n]);\n\n// Directories to skip\nconst SKIP_DIRS = new Set([\n 'node_modules', '.git', 'dist', 'build', '.next', '.nuxt',\n 'coverage', '.turbo', '.cache', '__pycache__', '.venv'\n]);\n\ninterface DaemonConfig {\n directory: string;\n debounceMs: number;\n jsonOutput: boolean;\n runOnce: boolean;\n format?: 'text' | 'json';\n output?: string;\n parallel?: boolean;\n cache?: boolean;\n maxConcurrency?: number;\n streaming?: boolean;\n interactive?: boolean;\n workers?: boolean;\n timeoutMs?: number;\n files?: string[];\n /** User count for cost estimation (default: 250) */\n userCount?: number;\n}\n\ninterface DaemonStats {\n filesScanned: number;\n issuesFound: number;\n errors: number;\n startTime: number;\n}\n\nclass WatchDaemon {\n private config: DaemonConfig;\n private stats: DaemonStats;\n private scanTool = new TrieScanTool();\n private watchers: Map<string, ReturnType<typeof watch>> = new Map();\n private pendingFiles: Set<string> = new Set();\n private debounceTimer: NodeJS.Timeout | null = null;\n private isProcessing = false;\n\n constructor(config: DaemonConfig) {\n this.config = config;\n this.stats = {\n filesScanned: 0,\n issuesFound: 0,\n errors: 0,\n startTime: Date.now()\n };\n }\n\n /**\n * Start the daemon\n */\n async start(): Promise<void> {\n this.log('info', '🛡️ Starting Trie Guardian Agent', {\n directory: this.config.directory,\n debounceMs: this.config.debounceMs\n });\n console.error('\\n🛡️ Your guardian agent is watching over your codebase.\\n');\n\n // Validate directory\n if (!existsSync(this.config.directory)) {\n this.log('error', 'Directory not found', { directory: this.config.directory });\n process.exit(1);\n }\n\n // Run initial scan\n this.log('info', 'Running initial scan...');\n await this.runScan(this.config.files);\n\n // If run-once mode, exit after initial scan\n if (this.config.runOnce) {\n this.log('info', 'Run-once mode: exiting after initial scan', { ...this.stats });\n process.exit(this.stats.issuesFound > 0 ? 1 : 0);\n }\n\n // Start watching\n await this.watchDirectory(this.config.directory);\n this.log('info', 'Guardian is watching for changes...', { \n directories: this.watchers.size \n });\n\n // Handle graceful shutdown\n process.on('SIGINT', () => this.shutdown('SIGINT'));\n process.on('SIGTERM', () => this.shutdown('SIGTERM'));\n }\n\n /**\n * Run a scan on all files or specific files\n */\n private async runScan(files?: string[]): Promise<void> {\n try {\n const scanArgs: Record<string, unknown> = files\n ? { files }\n : { directory: this.config.directory };\n\n if (this.config.format) scanArgs.format = this.config.format;\n if (this.config.output) scanArgs.output = this.config.output;\n if (this.config.parallel !== undefined) scanArgs.parallel = this.config.parallel;\n if (this.config.cache !== undefined) scanArgs.cache = this.config.cache;\n if (this.config.maxConcurrency) scanArgs.maxConcurrency = this.config.maxConcurrency;\n if (this.config.streaming !== undefined) scanArgs.streaming = this.config.streaming;\n if (this.config.interactive !== undefined) scanArgs.interactive = this.config.interactive;\n if (this.config.workers !== undefined) scanArgs.workers = this.config.workers;\n if (this.config.timeoutMs) scanArgs.timeoutMs = this.config.timeoutMs;\n if (this.config.userCount) scanArgs.userCount = this.config.userCount;\n\n const result = await this.scanTool.execute(scanArgs);\n const resultText = result.content?.[0]?.text || '';\n\n // PRINT THE FULL REPORT TO STDOUT (for terminal/chat display)\n if (resultText && this.config.runOnce) {\n console.log(resultText);\n }\n\n // Parse results - try multiple patterns to extract issue count\n let issueCount = 0;\n if (this.config.format === 'json' && this.config.output && existsSync(this.config.output)) {\n try {\n const report = JSON.parse(readFileSync(this.config.output, 'utf-8'));\n issueCount = report?.results?.totalIssues ?? 0;\n } catch {\n issueCount = 0;\n }\n } else {\n // Try multiple patterns to catch issue counts\n const patterns = [\n /(\\d+)\\s+actionable\\s+issues?\\s+found/i, // \"30 actionable issues found\"\n /(\\d+)\\s+Issues?\\s+Found/i, // \"30 Issues Found\"\n /Found\\s+(\\d+)\\s+issues?/i, // \"Found 30 issues\"\n /\\[COMPLETE\\]\\s+(\\d+)\\s+issues?/i, // \"[COMPLETE] 30 issues\"\n /(\\d+)\\s+total/i, // \"30 total\" (fallback)\n ];\n \n for (const pattern of patterns) {\n const match = resultText.match(pattern);\n if (match && match[1]) {\n issueCount = parseInt(match[1], 10);\n break;\n }\n }\n }\n\n this.stats.filesScanned += files?.length || 1;\n this.stats.issuesFound += issueCount;\n\n // Don't log \"No issues found\" after a full scan that displayed a report\n // The report already shows the issue count prominently\n if (issueCount > 0) {\n // Parse severity breakdown for additional logging\n const criticalMatch = resultText.match(/(\\d+)\\s+critical/i);\n const seriousMatch = resultText.match(/(\\d+)\\s+serious|(\\d+)\\s+important/i);\n\n if (criticalMatch && criticalMatch[1] && parseInt(criticalMatch[1], 10) > 0) {\n this.log('error', 'Critical issues detected', { count: parseInt(criticalMatch[1], 10) });\n }\n if (seriousMatch && (seriousMatch[1] || seriousMatch[2])) {\n const count = parseInt(seriousMatch[1] || seriousMatch[2] || '0', 10);\n if (count > 0) {\n this.log('warn', 'Serious issues detected', { count });\n }\n }\n }\n // NOTE: Removed the \"No issues found\" log because it was confusing\n // when printed after a full scan report that already shows issue counts\n } catch (error) {\n this.stats.errors++;\n this.log('error', 'Scan failed', { \n error: error instanceof Error ? error.message : String(error) \n });\n }\n }\n\n /**\n * Watch a directory recursively\n */\n private async watchDirectory(dir: string): Promise<void> {\n if (!existsSync(dir)) return;\n\n try {\n const stat = statSync(dir);\n if (!stat.isDirectory()) return;\n\n const dirName = basename(dir);\n if (SKIP_DIRS.has(dirName) || dirName.startsWith('.')) return;\n\n // Watch this directory\n const watcher = watch(dir, { persistent: true }, (_eventType, filename) => {\n if (!filename) return;\n\n const fullPath = join(dir, filename);\n const ext = extname(filename).toLowerCase();\n\n if (!WATCH_EXTENSIONS.has(ext)) return;\n if (!existsSync(fullPath)) return;\n\n this.pendingFiles.add(fullPath);\n this.scheduleProcessing();\n });\n\n this.watchers.set(dir, watcher);\n\n // Recursively watch subdirectories\n const entries = await readdir(dir, { withFileTypes: true });\n for (const entry of entries) {\n if (entry.isDirectory()) {\n await this.watchDirectory(join(dir, entry.name));\n }\n }\n } catch (error) {\n // Skip inaccessible directories\n }\n }\n\n /**\n * Schedule processing of pending files (debounced)\n */\n private scheduleProcessing(): void {\n if (this.debounceTimer) {\n clearTimeout(this.debounceTimer);\n }\n\n this.debounceTimer = setTimeout(() => {\n this.processPendingFiles();\n }, this.config.debounceMs);\n }\n\n /**\n * Process all pending files\n */\n private async processPendingFiles(): Promise<void> {\n if (this.isProcessing || this.pendingFiles.size === 0) return;\n\n this.isProcessing = true;\n const files = Array.from(this.pendingFiles);\n this.pendingFiles.clear();\n\n this.log('info', 'Processing changed files', { \n count: files.length,\n files: files.map(f => basename(f))\n });\n\n await this.runScan(files);\n this.isProcessing = false;\n }\n\n /**\n * Log a message\n */\n private log(level: 'info' | 'warn' | 'error', message: string, data?: Record<string, unknown>): void {\n const timestamp = new Date().toISOString();\n const uptime = Math.round((Date.now() - this.stats.startTime) / 1000);\n\n if (this.config.jsonOutput) {\n console.log(JSON.stringify({\n timestamp,\n level,\n message,\n uptime,\n ...data,\n stats: this.stats\n }));\n } else {\n const levelEmoji = { info: 'ℹ️', warn: '⚠️', error: '❌' }[level];\n const dataStr = data ? ` ${JSON.stringify(data)}` : '';\n console.log(`[${timestamp}] ${levelEmoji} ${message}${dataStr}`);\n }\n }\n\n /**\n * Graceful shutdown\n */\n private shutdown(signal: string): void {\n this.log('info', 'Shutting down', { signal, stats: this.stats });\n\n // Close all watchers\n for (const watcher of this.watchers.values()) {\n watcher.close();\n }\n\n // Clear timers\n if (this.debounceTimer) {\n clearTimeout(this.debounceTimer);\n }\n\n process.exit(0);\n }\n}\n\n/**\n * Parse command line arguments\n */\nfunction parseArgs(): DaemonConfig {\n const args = process.argv.slice(2);\n const config: DaemonConfig = {\n directory: getWorkingDirectory(),\n debounceMs: 1000,\n jsonOutput: false,\n runOnce: false\n };\n\n for (let i = 0; i < args.length; i++) {\n const arg = args[i];\n const nextArg = args[i + 1];\n\n switch (arg) {\n case '--dir':\n case '-d':\n config.directory = resolve(nextArg || '.');\n i++;\n break;\n case '--debounce':\n case '-D':\n config.debounceMs = parseInt(nextArg || '1000', 10);\n i++;\n break;\n case '--json':\n config.jsonOutput = true;\n break;\n case '--format':\n if (nextArg) {\n config.format = nextArg === 'json' ? 'json' : 'text';\n i++;\n }\n break;\n case '--output':\n if (nextArg) {\n config.output = nextArg;\n i++;\n }\n break;\n case '--parallel':\n config.parallel = true;\n break;\n case '--no-parallel':\n config.parallel = false;\n break;\n case '--cache':\n config.cache = true;\n break;\n case '--no-cache':\n config.cache = false;\n break;\n case '--max-concurrency':\n config.maxConcurrency = parseInt(nextArg || '4', 10);\n i++;\n break;\n case '--streaming':\n config.streaming = true;\n break;\n case '--no-streaming':\n config.streaming = false;\n break;\n case '--interactive':\n config.interactive = true;\n break;\n case '--workers':\n config.workers = true;\n break;\n case '--no-workers':\n config.workers = false;\n break;\n case '--timeout':\n config.timeoutMs = parseInt(nextArg || '120000', 10);\n i++;\n break;\n case '--files':\n if (nextArg) {\n config.files = nextArg.split(',').map(f => f.trim()).filter(Boolean);\n i++;\n }\n break;\n case '--once':\n config.runOnce = true;\n break;\n case '--users':\n case '-u':\n config.userCount = parseInt(nextArg || '250', 10);\n i++;\n break;\n case '--help':\n case '-h':\n console.log(`\nTrie Agent Watch Daemon\nHeadless file watcher for local/CI environments.\n\nUsage:\n node dist/cli/yolo-daemon.js [options]\n\nOptions:\n --dir, -d Directory to watch (default: cwd)\n --debounce, -D Debounce time in ms (default: 1000)\n --json Output as JSON (for log aggregation)\n --format Scan output format: text|json\n --output Output file path for json format\n --parallel Enable parallel execution\n --no-parallel Disable parallel execution\n --cache Enable result caching\n --no-cache Disable result caching\n --max-concurrency Max parallel agents\n --streaming Enable streaming updates\n --no-streaming Disable streaming updates\n --interactive Enable interactive dashboard (TTY only)\n --workers Use worker threads for agents\n --no-workers Disable worker threads\n --timeout Agent timeout in ms\n --files Comma-separated file list to scan\n --once Run once and exit (no watch)\n --users, -u User count for cost estimation (default: 250)\n --help, -h Show this help\n\nExamples:\n # Watch current directory\n node dist/cli/yolo-daemon.js\n\n # CI mode: scan once and exit with error code if issues found\n node dist/cli/yolo-daemon.js --once\n`);\n process.exit(0);\n }\n }\n\n return config;\n}\n\n// Run the daemon\nconst config = parseArgs();\nconst daemon = new WatchDaemon(config);\ndaemon.start().catch(error => {\n console.error('Failed to start daemon:', error);\n process.exit(1);\n});\n"],"mappings":"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","names":["config"]}
|
|
1
|
+
{"version":3,"sources":["../../src/cli/yolo-daemon.ts"],"sourcesContent":["#!/usr/bin/env node\n/**\n * Trie Agent Watch Daemon\n * \n * Headless file watcher for local/CI environments.\n * Watches a directory and reports issues as they occur.\n * \n * Usage:\n * node dist/cli/yolo-daemon.js [options]\n * \n * Options:\n * --dir, -d Directory to watch (default: cwd)\n * --debounce, -D Debounce time in ms (default: 1000)\n * --json Output as JSON (for log aggregation)\n * --once Run once and exit (no watch)\n */\n\nimport { watch, existsSync, statSync, readFileSync } from 'fs';\nimport { readdir } from 'fs/promises';\nimport { join, extname, basename, resolve } from 'path';\nimport { TrieScanTool } from '../tools/scan.js';\nimport { getWorkingDirectory } from '../utils/workspace.js';\n\n// File extensions to watch\nconst WATCH_EXTENSIONS = new Set([\n '.ts', '.tsx', '.js', '.jsx', '.mjs',\n '.vue', '.svelte', '.astro',\n '.py', '.go', '.rs'\n]);\n\n// Directories to skip\nconst SKIP_DIRS = new Set([\n 'node_modules', '.git', 'dist', 'build', '.next', '.nuxt',\n 'coverage', '.turbo', '.cache', '__pycache__', '.venv'\n]);\n\ninterface DaemonConfig {\n directory: string;\n debounceMs: number;\n jsonOutput: boolean;\n runOnce: boolean;\n format?: 'text' | 'json';\n output?: string;\n parallel?: boolean;\n cache?: boolean;\n maxConcurrency?: number;\n streaming?: boolean;\n interactive?: boolean;\n workers?: boolean;\n timeoutMs?: number;\n files?: string[];\n /** User count for cost estimation (default: 250) */\n userCount?: number;\n}\n\ninterface DaemonStats {\n filesScanned: number;\n issuesFound: number;\n errors: number;\n startTime: number;\n}\n\nclass WatchDaemon {\n private config: DaemonConfig;\n private stats: DaemonStats;\n private scanTool = new TrieScanTool();\n private watchers: Map<string, ReturnType<typeof watch>> = new Map();\n private pendingFiles: Set<string> = new Set();\n private debounceTimer: NodeJS.Timeout | null = null;\n private isProcessing = false;\n\n constructor(config: DaemonConfig) {\n this.config = config;\n this.stats = {\n filesScanned: 0,\n issuesFound: 0,\n errors: 0,\n startTime: Date.now()\n };\n }\n\n /**\n * Start the daemon\n */\n async start(): Promise<void> {\n this.log('info', '🛡️ Starting Trie Guardian Agent', {\n directory: this.config.directory,\n debounceMs: this.config.debounceMs\n });\n console.error('\\n🛡️ Your guardian agent is watching over your codebase.\\n');\n\n // Validate directory\n if (!existsSync(this.config.directory)) {\n this.log('error', 'Directory not found', { directory: this.config.directory });\n process.exit(1);\n }\n\n // Run initial scan\n this.log('info', 'Running initial scan...');\n await this.runScan(this.config.files);\n\n // If run-once mode, exit after initial scan\n if (this.config.runOnce) {\n this.log('info', 'Run-once mode: exiting after initial scan', { ...this.stats });\n process.exit(this.stats.issuesFound > 0 ? 1 : 0);\n }\n\n // Start watching\n await this.watchDirectory(this.config.directory);\n this.log('info', 'Guardian is watching for changes...', { \n directories: this.watchers.size \n });\n\n // Handle graceful shutdown\n process.on('SIGINT', () => this.shutdown('SIGINT'));\n process.on('SIGTERM', () => this.shutdown('SIGTERM'));\n }\n\n /**\n * Run a scan on all files or specific files\n */\n private async runScan(files?: string[]): Promise<void> {\n try {\n const scanArgs: Record<string, unknown> = files\n ? { files }\n : { directory: this.config.directory };\n\n if (this.config.format) scanArgs.format = this.config.format;\n if (this.config.output) scanArgs.output = this.config.output;\n if (this.config.parallel !== undefined) scanArgs.parallel = this.config.parallel;\n if (this.config.cache !== undefined) scanArgs.cache = this.config.cache;\n if (this.config.maxConcurrency) scanArgs.maxConcurrency = this.config.maxConcurrency;\n if (this.config.streaming !== undefined) scanArgs.streaming = this.config.streaming;\n if (this.config.interactive !== undefined) scanArgs.interactive = this.config.interactive;\n if (this.config.workers !== undefined) scanArgs.workers = this.config.workers;\n if (this.config.timeoutMs) scanArgs.timeoutMs = this.config.timeoutMs;\n if (this.config.userCount) scanArgs.userCount = this.config.userCount;\n\n const result = await this.scanTool.execute(scanArgs);\n const resultText = result.content?.[0]?.text || '';\n\n // PRINT THE FULL REPORT TO STDOUT (for terminal/chat display)\n if (resultText && this.config.runOnce) {\n console.log(resultText);\n }\n\n // Parse results - try multiple patterns to extract issue count\n let issueCount = 0;\n if (this.config.format === 'json' && this.config.output && existsSync(this.config.output)) {\n try {\n const report = JSON.parse(readFileSync(this.config.output, 'utf-8'));\n issueCount = report?.results?.totalIssues ?? 0;\n } catch {\n issueCount = 0;\n }\n } else {\n // Try multiple patterns to catch issue counts\n const patterns = [\n /(\\d+)\\s+actionable\\s+issues?\\s+found/i, // \"30 actionable issues found\"\n /(\\d+)\\s+Issues?\\s+Found/i, // \"30 Issues Found\"\n /Found\\s+(\\d+)\\s+issues?/i, // \"Found 30 issues\"\n /\\[COMPLETE\\]\\s+(\\d+)\\s+issues?/i, // \"[COMPLETE] 30 issues\"\n /(\\d+)\\s+total/i, // \"30 total\" (fallback)\n ];\n \n for (const pattern of patterns) {\n const match = resultText.match(pattern);\n if (match && match[1]) {\n issueCount = parseInt(match[1], 10);\n break;\n }\n }\n }\n\n this.stats.filesScanned += files?.length || 1;\n this.stats.issuesFound += issueCount;\n\n // Don't log \"No issues found\" after a full scan that displayed a report\n // The report already shows the issue count prominently\n if (issueCount > 0) {\n // Parse severity breakdown for additional logging\n const criticalMatch = resultText.match(/(\\d+)\\s+critical/i);\n const seriousMatch = resultText.match(/(\\d+)\\s+serious|(\\d+)\\s+important/i);\n\n if (criticalMatch && criticalMatch[1] && parseInt(criticalMatch[1], 10) > 0) {\n this.log('error', 'Critical issues detected', { count: parseInt(criticalMatch[1], 10) });\n }\n if (seriousMatch && (seriousMatch[1] || seriousMatch[2])) {\n const count = parseInt(seriousMatch[1] || seriousMatch[2] || '0', 10);\n if (count > 0) {\n this.log('warn', 'Serious issues detected', { count });\n }\n }\n }\n // NOTE: Removed the \"No issues found\" log because it was confusing\n // when printed after a full scan report that already shows issue counts\n } catch (error) {\n this.stats.errors++;\n this.log('error', 'Scan failed', { \n error: error instanceof Error ? error.message : String(error) \n });\n }\n }\n\n /**\n * Watch a directory recursively\n */\n private async watchDirectory(dir: string): Promise<void> {\n if (!existsSync(dir)) return;\n\n try {\n const stat = statSync(dir);\n if (!stat.isDirectory()) return;\n\n const dirName = basename(dir);\n if (SKIP_DIRS.has(dirName) || dirName.startsWith('.')) return;\n\n // Watch this directory\n const watcher = watch(dir, { persistent: true }, (_eventType, filename) => {\n if (!filename) return;\n\n const fullPath = join(dir, filename);\n const ext = extname(filename).toLowerCase();\n\n if (!WATCH_EXTENSIONS.has(ext)) return;\n if (!existsSync(fullPath)) return;\n\n this.pendingFiles.add(fullPath);\n this.scheduleProcessing();\n });\n\n this.watchers.set(dir, watcher);\n\n // Recursively watch subdirectories\n const entries = await readdir(dir, { withFileTypes: true });\n for (const entry of entries) {\n if (entry.isDirectory()) {\n await this.watchDirectory(join(dir, entry.name));\n }\n }\n } catch (error) {\n // Skip inaccessible directories\n }\n }\n\n /**\n * Schedule processing of pending files (debounced)\n */\n private scheduleProcessing(): void {\n if (this.debounceTimer) {\n clearTimeout(this.debounceTimer);\n }\n\n this.debounceTimer = setTimeout(() => {\n this.processPendingFiles();\n }, this.config.debounceMs);\n }\n\n /**\n * Process all pending files\n */\n private async processPendingFiles(): Promise<void> {\n if (this.isProcessing || this.pendingFiles.size === 0) return;\n\n this.isProcessing = true;\n const files = Array.from(this.pendingFiles);\n this.pendingFiles.clear();\n\n this.log('info', 'Processing changed files', { \n count: files.length,\n files: files.map(f => basename(f))\n });\n\n await this.runScan(files);\n this.isProcessing = false;\n }\n\n /**\n * Log a message\n */\n private log(level: 'info' | 'warn' | 'error', message: string, data?: Record<string, unknown>): void {\n const timestamp = new Date().toISOString();\n const uptime = Math.round((Date.now() - this.stats.startTime) / 1000);\n\n if (this.config.jsonOutput) {\n console.log(JSON.stringify({\n timestamp,\n level,\n message,\n uptime,\n ...data,\n stats: this.stats\n }));\n } else {\n const levelEmoji = { info: 'ℹ️', warn: '⚠️', error: '❌' }[level];\n const dataStr = data ? ` ${JSON.stringify(data)}` : '';\n console.log(`[${timestamp}] ${levelEmoji} ${message}${dataStr}`);\n }\n }\n\n /**\n * Graceful shutdown\n */\n private shutdown(signal: string): void {\n this.log('info', 'Shutting down', { signal, stats: this.stats });\n\n // Close all watchers\n for (const watcher of this.watchers.values()) {\n watcher.close();\n }\n\n // Clear timers\n if (this.debounceTimer) {\n clearTimeout(this.debounceTimer);\n }\n\n process.exit(0);\n }\n}\n\n/**\n * Parse command line arguments\n */\nfunction parseArgs(): DaemonConfig {\n const args = process.argv.slice(2);\n const config: DaemonConfig = {\n directory: getWorkingDirectory(),\n debounceMs: 1000,\n jsonOutput: false,\n runOnce: false,\n // Default to interactive mode for TTY terminals\n interactive: process.stdout.isTTY === true\n };\n\n for (let i = 0; i < args.length; i++) {\n const arg = args[i];\n const nextArg = args[i + 1];\n\n switch (arg) {\n case '--dir':\n case '-d':\n config.directory = resolve(nextArg || '.');\n i++;\n break;\n case '--debounce':\n case '-D':\n config.debounceMs = parseInt(nextArg || '1000', 10);\n i++;\n break;\n case '--json':\n config.jsonOutput = true;\n break;\n case '--format':\n if (nextArg) {\n config.format = nextArg === 'json' ? 'json' : 'text';\n i++;\n }\n break;\n case '--output':\n if (nextArg) {\n config.output = nextArg;\n i++;\n }\n break;\n case '--parallel':\n config.parallel = true;\n break;\n case '--no-parallel':\n config.parallel = false;\n break;\n case '--cache':\n config.cache = true;\n break;\n case '--no-cache':\n config.cache = false;\n break;\n case '--max-concurrency':\n config.maxConcurrency = parseInt(nextArg || '4', 10);\n i++;\n break;\n case '--streaming':\n config.streaming = true;\n break;\n case '--no-streaming':\n config.streaming = false;\n break;\n case '--interactive':\n config.interactive = true;\n break;\n case '--no-interactive':\n config.interactive = false;\n break;\n case '--workers':\n config.workers = true;\n break;\n case '--no-workers':\n config.workers = false;\n break;\n case '--timeout':\n config.timeoutMs = parseInt(nextArg || '120000', 10);\n i++;\n break;\n case '--files':\n if (nextArg) {\n config.files = nextArg.split(',').map(f => f.trim()).filter(Boolean);\n i++;\n }\n break;\n case '--once':\n config.runOnce = true;\n break;\n case '--users':\n case '-u':\n config.userCount = parseInt(nextArg || '250', 10);\n i++;\n break;\n case '--help':\n case '-h':\n console.log(`\nTrie Agent Watch Daemon\nHeadless file watcher for local/CI environments.\n\nUsage:\n node dist/cli/yolo-daemon.js [options]\n\nOptions:\n --dir, -d Directory to watch (default: cwd)\n --debounce, -D Debounce time in ms (default: 1000)\n --json Output as JSON (for log aggregation)\n --format Scan output format: text|json\n --output Output file path for json format\n --parallel Enable parallel execution\n --no-parallel Disable parallel execution\n --cache Enable result caching\n --no-cache Disable result caching\n --max-concurrency Max parallel agents\n --streaming Enable streaming updates\n --no-streaming Disable streaming updates\n --interactive Enable interactive dashboard (default for TTY)\n --no-interactive Disable interactive dashboard (for CI/scripts)\n --workers Use worker threads for agents\n --no-workers Disable worker threads\n --timeout Agent timeout in ms\n --files Comma-separated file list to scan\n --once Run once and exit (no watch)\n --users, -u User count for cost estimation (default: 250)\n --help, -h Show this help\n\nExamples:\n # Watch current directory\n node dist/cli/yolo-daemon.js\n\n # CI mode: scan once and exit with error code if issues found\n node dist/cli/yolo-daemon.js --once\n`);\n process.exit(0);\n }\n }\n\n return config;\n}\n\n// Run the daemon\nconst config = parseArgs();\nconst daemon = new WatchDaemon(config);\ndaemon.start().catch(error => {\n console.error('Failed to start daemon:', error);\n process.exit(1);\n});\n"],"mappings":"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","names":["config"]}
|
package/dist/index.js
CHANGED
|
@@ -22,12 +22,12 @@ import {
|
|
|
22
22
|
perceiveCurrentChanges,
|
|
23
23
|
reasonAboutChangesHumanReadable,
|
|
24
24
|
saveCheckpoint
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-HPNTWPZU.js";
|
|
26
26
|
import {
|
|
27
27
|
TrieScanTool,
|
|
28
28
|
loadConfig
|
|
29
|
-
} from "./chunk-
|
|
30
|
-
import "./chunk-
|
|
29
|
+
} from "./chunk-XWD5SUPP.js";
|
|
30
|
+
import "./chunk-NCRZZNPC.js";
|
|
31
31
|
import {
|
|
32
32
|
CRITICAL_REVIEW_CHECKLIST,
|
|
33
33
|
SuperReviewerSkill,
|
|
@@ -52,9 +52,11 @@ import {
|
|
|
52
52
|
searchGlobalPatterns,
|
|
53
53
|
searchIssues,
|
|
54
54
|
updateProjectSection
|
|
55
|
-
} from "./chunk-
|
|
55
|
+
} from "./chunk-MVC27YMB.js";
|
|
56
56
|
import "./chunk-3CS6Z2SL.js";
|
|
57
|
-
import
|
|
57
|
+
import {
|
|
58
|
+
isInteractiveMode
|
|
59
|
+
} from "./chunk-JMW3JVYT.js";
|
|
58
60
|
import {
|
|
59
61
|
getWorkingDirectory
|
|
60
62
|
} from "./chunk-ASGSTVVF.js";
|
|
@@ -2585,20 +2587,24 @@ var TrieWatchTool = class {
|
|
|
2585
2587
|
this.state.filesScanned = 0;
|
|
2586
2588
|
this.state.nudgedFiles.clear();
|
|
2587
2589
|
this.state.nudges = [];
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2590
|
+
if (!isInteractiveMode()) {
|
|
2591
|
+
console.error("\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501");
|
|
2592
|
+
console.error("TRIE GUARDIAN AGENT - NOW WATCHING");
|
|
2593
|
+
console.error("\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n");
|
|
2594
|
+
console.error("Your guardian agent is now watching over your codebase.");
|
|
2595
|
+
console.error(`Watching: ${directory}`);
|
|
2596
|
+
console.error(`Debounce: ${debounceMs}ms`);
|
|
2597
|
+
console.error("");
|
|
2598
|
+
}
|
|
2595
2599
|
await this.watchDirectory(directory, debounceMs);
|
|
2596
|
-
|
|
2600
|
+
if (!isInteractiveMode()) {
|
|
2601
|
+
console.error("Running initial scan...\n");
|
|
2602
|
+
}
|
|
2597
2603
|
const initialResult = await this.scanTool.execute({ directory });
|
|
2598
2604
|
return {
|
|
2599
2605
|
content: [{
|
|
2600
2606
|
type: "text",
|
|
2601
|
-
text:
|
|
2607
|
+
text: `**GUARDIAN AGENT ACTIVATED**
|
|
2602
2608
|
|
|
2603
2609
|
Your guardian agent is now watching over your codebase. It will warn you about risky changes, remember what broke before, and nudge you when something looks dangerous.
|
|
2604
2610
|
|
|
@@ -2658,12 +2664,14 @@ ${initialResult.content?.[0]?.text || "Initial scan complete."}`
|
|
|
2658
2664
|
if (this.state.pendingFiles.size === 0) return;
|
|
2659
2665
|
const files = Array.from(this.state.pendingFiles);
|
|
2660
2666
|
this.state.pendingFiles.clear();
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2667
|
+
if (!isInteractiveMode()) {
|
|
2668
|
+
console.error(`
|
|
2669
|
+
Detected changes in ${files.length} file(s):`);
|
|
2670
|
+
for (const file of files) {
|
|
2671
|
+
console.error(` - ${basename2(file)}`);
|
|
2672
|
+
}
|
|
2673
|
+
console.error("");
|
|
2665
2674
|
}
|
|
2666
|
-
console.error("");
|
|
2667
2675
|
try {
|
|
2668
2676
|
const result = await this.scanTool.execute({ files });
|
|
2669
2677
|
const resultText = result.content?.[0]?.text || "";
|
|
@@ -2672,23 +2680,25 @@ ${initialResult.content?.[0]?.text || "Initial scan complete."}`
|
|
|
2672
2680
|
if (issueMatch?.[1] !== void 0) {
|
|
2673
2681
|
const newIssues = parseInt(issueMatch[1], 10);
|
|
2674
2682
|
this.state.totalIssuesFound += newIssues;
|
|
2675
|
-
if (
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2683
|
+
if (!isInteractiveMode()) {
|
|
2684
|
+
if (newIssues > 0) {
|
|
2685
|
+
console.error(`
|
|
2686
|
+
Found ${newIssues} issues in changed files!`);
|
|
2687
|
+
const criticalMatch = resultText.match(/(\d+) CRITICAL/);
|
|
2688
|
+
const seriousMatch = resultText.match(/(\d+) SERIOUS/);
|
|
2689
|
+
const moderateMatch = resultText.match(/(\d+) MODERATE/);
|
|
2690
|
+
if (criticalMatch) {
|
|
2691
|
+
console.error(` [!] ${criticalMatch[1]} critical issues`);
|
|
2692
|
+
}
|
|
2693
|
+
if (seriousMatch) {
|
|
2694
|
+
console.error(` [x] ${seriousMatch[1]} serious issues`);
|
|
2695
|
+
}
|
|
2696
|
+
if (moderateMatch) {
|
|
2697
|
+
console.error(` [~] ${moderateMatch[1]} moderate issues`);
|
|
2698
|
+
}
|
|
2699
|
+
} else {
|
|
2700
|
+
console.error(" [OK] No issues found - code looks good!");
|
|
2689
2701
|
}
|
|
2690
|
-
} else {
|
|
2691
|
-
console.error(" \u2705 No issues found - code looks good!");
|
|
2692
2702
|
}
|
|
2693
2703
|
}
|
|
2694
2704
|
for (const file of files) {
|
|
@@ -6861,7 +6871,7 @@ var RequestHandlers = class {
|
|
|
6861
6871
|
};
|
|
6862
6872
|
}
|
|
6863
6873
|
async handleAgentSmith(smithArgs) {
|
|
6864
|
-
const { AgentSmithSkill } = await import("./agent-smith-
|
|
6874
|
+
const { AgentSmithSkill } = await import("./agent-smith-MCTLZS2P.js");
|
|
6865
6875
|
if (smithArgs.clear_memory) {
|
|
6866
6876
|
const smith = new AgentSmithSkill();
|
|
6867
6877
|
const result = await smith.clearMemory();
|
|
@@ -6889,7 +6899,7 @@ var RequestHandlers = class {
|
|
|
6889
6899
|
}]
|
|
6890
6900
|
};
|
|
6891
6901
|
}
|
|
6892
|
-
const agentSmithRunner = await import("./agent-smith-runner-
|
|
6902
|
+
const agentSmithRunner = await import("./agent-smith-runner-IPEGL4HM.js");
|
|
6893
6903
|
return await agentSmithRunner.runAgentSmith(smithArgs);
|
|
6894
6904
|
}
|
|
6895
6905
|
};
|