({ label, command, why, confidence = 'medium', repairAvailable = false, runbook = null })
| 994 | const projectRoot = path.resolve(options.projectRoot || process.cwd()); |
| 995 | const now = options.now ? new Date(options.now) : new Date(); |
| 996 | const recentLimit = options.recentLimit || DEFAULT_RECENT_LIMIT; |
| 997 | const planningExists = fileExists(path.join(projectRoot, '.planning')); |
| 998 | |
| 999 | const campaigns = readCampaigns(projectRoot); |
| 1000 | const outcomeLedger = readOutcomeLedger(projectRoot); |
| 1001 | const fleetSessions = readFleetSessions(projectRoot); |
no outgoing calls
no test coverage detected