#!/usr/bin/env node /** * AgentFactory Log Analyzer CLI * * Thin wrapper around the analyze-logs runner. Handles dotenv, arg parsing, * SIGINT, and process.exit so the runner stays process-agnostic. * * Usage: * af-analyze-logs [options] * * Options: * --session Analyze a specific session * --follow, -f Watch for new sessions and analyze as they complete * --interval Poll interval in milliseconds (default: 5000) * --dry-run Show what would be created without creating issues * --cleanup Cleanup old logs based on retention policy * --verbose Show detailed analysis output * --help, -h Show this help message * * Environment (loaded from .env.local in CWD): * LINEAR_API_KEY Required for issue creation * AGENT_LOG_RETENTION_DAYS Days before cleanup (default: 7) * AGENT_LOGS_DIR Base directory for logs (default: .agent-logs) */ export {}; //# sourceMappingURL=analyze-logs.d.ts.map