File size: 26,503 Bytes
1f21206 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 | /**
* CronScheduler β Execution engine for scheduled tasks
*
* Periodically checks all scheduled tasks and executes those whose cron
* expression matches the current time. Tasks are run by spawning a CLI
* subprocess with the task's prompt. Execution history is persisted to
* ~/.claude/scheduled_tasks_log.json.
*/
import * as fs from 'fs/promises'
import { existsSync, readFileSync, statSync } from 'node:fs'
import * as path from 'path'
import * as os from 'os'
import * as crypto from 'crypto'
import { CronService, type CronTask } from './cronService.js'
import { SessionService } from './sessionService.js'
import { sendTaskNotification } from './notificationService.js'
import { ProviderService } from './providerService.js'
import { isProviderManagedEnvVar } from '../../utils/managedEnvConstants.js'
import {
buildClaudeCliArgs,
resolveClaudeCliLauncher,
} from '../../utils/desktopBundledCli.js'
import { getProcessEnvWithTerminalShellEnvironment } from '../../utils/terminalShellEnvironment.js'
import { attributionHeaderEnvForModel } from './attributionHeaderPolicy.js'
// βββ Types βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export type TaskRun = {
id: string // random ID
taskId: string // references CronTask.id
taskName: string
startedAt: string // ISO timestamp
completedAt?: string
status: 'running' | 'completed' | 'failed' | 'timeout'
prompt: string
output?: string // captured stdout summary
error?: string
exitCode?: number
durationMs?: number
sessionId?: string // links to a session for rich output rendering
}
// βββ Output extraction ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Extract meaningful assistant text from raw CLI stream-json (NDJSON) output.
*
* The raw stdout contains system/init messages, tool_use blocks, tool_result
* echoes, and thinking blocks β all of which are noise to the end user. The
* actual AI answer (assistant text blocks + final result) is what matters.
*
* By extracting server-side we avoid the 10K naive truncation problem where
* the useful content sits well past the first 10K characters.
*/
function extractAssistantText(raw: string): string {
if (!raw) return ''
const lines = raw.split('\n')
const parts: string[] = []
for (const line of lines) {
if (!line.trim()) continue
let parsed: any
try {
parsed = JSON.parse(line)
} catch {
continue // skip non-JSON lines and truncated lines
}
const type = parsed?.type
if (type === 'assistant') {
const content = parsed?.message?.content
if (!Array.isArray(content)) continue
for (const block of content) {
if (block.type === 'text' && block.text?.trim()) {
parts.push(block.text.trim())
}
// Skip tool_use, thinking blocks
}
}
if (type === 'result') {
const result = parsed?.result
if (typeof result === 'string' && result.trim()) {
parts.push(result.trim())
} else if (result?.message?.trim()) {
parts.push(result.message.trim())
}
}
}
return parts.join('\n\n')
}
// βββ Cron expression matching ββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Check whether a single cron field matches a given numeric value.
*
* Supported syntax per field:
* * β any value
* 5 β exact match
* 1,3,5 β list
* 1-5 β inclusive range
* *β/2 β step from 0
* 1-10/3 β step within a range
*/
export function fieldMatches(field: string, value: number): boolean {
if (field === '*') return true
// Comma-separated list β each element can be a range or step
const parts = field.split(',')
return parts.some((part) => singleFieldMatches(part.trim(), value))
}
function singleFieldMatches(part: string, value: number): boolean {
// Step: */n or range/n
if (part.includes('/')) {
const [rangePart, stepStr] = part.split('/')
const step = parseInt(stepStr, 10)
if (isNaN(step) || step <= 0) return false
if (rangePart === '*') {
return value % step === 0
}
// range/step e.g. 1-10/3
if (rangePart.includes('-')) {
const [startStr, endStr] = rangePart.split('-')
const start = parseInt(startStr, 10)
const end = parseInt(endStr, 10)
if (value < start || value > end) return false
return (value - start) % step === 0
}
// single/step e.g. 5/2 β treat as start with step
const start = parseInt(rangePart, 10)
if (value < start) return false
return (value - start) % step === 0
}
// Range: a-b
if (part.includes('-')) {
const [startStr, endStr] = part.split('-')
const start = parseInt(startStr, 10)
const end = parseInt(endStr, 10)
return value >= start && value <= end
}
// Exact number
return parseInt(part, 10) === value
}
/**
* Check whether a standard 5-field cron expression matches the given date.
* Fields: minute hour day-of-month month day-of-week
*/
export function cronMatches(cronExpr: string, date: Date): boolean {
const fields = cronExpr.trim().split(/\s+/)
if (fields.length !== 5) return false
const [minute, hour, dayOfMonth, month, dayOfWeek] = fields
return (
fieldMatches(minute, date.getMinutes()) &&
fieldMatches(hour, date.getHours()) &&
fieldMatches(dayOfMonth, date.getDate()) &&
fieldMatches(month, date.getMonth() + 1) &&
fieldMatches(dayOfWeek, date.getDay())
)
}
// βββ Log file I/O ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
type RunsFile = { runs: TaskRun[] }
function getLogFilePath(): string {
const configDir =
process.env.CLAUDE_CONFIG_DIR || path.join(os.homedir(), '.claude')
return path.join(configDir, 'scheduled_tasks_log.json')
}
async function readRunsFile(): Promise<RunsFile> {
try {
const raw = await fs.readFile(getLogFilePath(), 'utf-8')
const parsed = JSON.parse(raw) as RunsFile
if (!Array.isArray(parsed.runs)) return { runs: [] }
return parsed
} catch (err: unknown) {
if ((err as NodeJS.ErrnoException).code === 'ENOENT') {
return { runs: [] }
}
throw err
}
}
async function writeRunsFile(data: RunsFile): Promise<void> {
const filePath = getLogFilePath()
const dir = path.dirname(filePath)
await fs.mkdir(dir, { recursive: true })
const tmpFile = `${filePath}.tmp.${Date.now()}`
try {
await fs.writeFile(tmpFile, JSON.stringify(data, null, 2) + '\n', 'utf-8')
await fs.rename(tmpFile, filePath)
} catch (err) {
await fs.unlink(tmpFile).catch(() => {})
throw err
}
}
/** Append a run to the log and trim to keep at most MAX_RUNS_PER_TASK per task. */
async function appendRun(run: TaskRun): Promise<void> {
const data = await readRunsFile()
data.runs.push(run)
trimRuns(data)
await writeRunsFile(data)
}
/** Update an existing run in the log (matched by run.id). */
async function updateRun(run: TaskRun): Promise<void> {
const data = await readRunsFile()
const idx = data.runs.findIndex((r) => r.id === run.id)
if (idx !== -1) {
data.runs[idx] = run
} else {
data.runs.push(run)
}
trimRuns(data)
await writeRunsFile(data)
}
const MAX_RUNS_PER_TASK = 100
/** Keep only the latest MAX_RUNS_PER_TASK entries per task. */
function trimRuns(data: RunsFile): void {
const countByTask = new Map<string, number>()
// Count from the end (newest first) and mark for removal
const keep = new Array<boolean>(data.runs.length).fill(false)
for (let i = data.runs.length - 1; i >= 0; i--) {
const taskId = data.runs[i].taskId
const count = countByTask.get(taskId) || 0
if (count < MAX_RUNS_PER_TASK) {
keep[i] = true
countByTask.set(taskId, count + 1)
}
}
data.runs = data.runs.filter((_, i) => keep[i])
}
// βββ Scheduler βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const TASK_TIMEOUT_MS = 10 * 60 * 1000 // 10 minutes
type CronCliResolutionOptions = {
cliPath?: string | null
execPath?: string
appRoot?: string
cwd?: string
moduleDir?: string
env?: NodeJS.ProcessEnv
}
function isSourceProjectRoot(root: string): boolean {
return (
existsSync(path.join(root, 'preload.ts')) &&
existsSync(path.join(root, 'src', 'entrypoints', 'cli.tsx'))
)
}
function findSourceProjectRoot(startDir: string): string | null {
let current = path.resolve(startDir)
while (true) {
if (isSourceProjectRoot(current)) {
return current
}
const parent = path.dirname(current)
if (parent === current) {
return null
}
current = parent
}
}
export function resolveCronProjectRoot(
options: CronCliResolutionOptions = {},
): string {
const env = options.env ?? process.env
const explicitRoot = env.CC_HAHA_ROOT?.trim()
if (explicitRoot && isSourceProjectRoot(path.resolve(explicitRoot))) {
return path.resolve(explicitRoot)
}
const cwdRoot = findSourceProjectRoot(options.cwd ?? process.cwd())
if (cwdRoot) {
return cwdRoot
}
const moduleRoot = findSourceProjectRoot(options.moduleDir ?? import.meta.dir)
if (moduleRoot) {
return moduleRoot
}
return path.resolve(options.moduleDir ?? import.meta.dir, '../../..')
}
export function buildCronCliArgs(
baseArgs: string[],
options: CronCliResolutionOptions = {},
): string[] {
const launcher = resolveClaudeCliLauncher({
cliPath: options.cliPath ?? process.env.CLAUDE_CLI_PATH,
execPath: options.execPath ?? process.execPath,
})
if (launcher) {
return buildClaudeCliArgs(
launcher,
baseArgs,
options.appRoot ?? process.env.CLAUDE_APP_ROOT,
)
}
const projectRoot = resolveCronProjectRoot(options)
return [
'bun',
'--preload',
path.join(projectRoot, 'preload.ts'),
path.join(projectRoot, 'src', 'entrypoints', 'cli.tsx'),
...baseArgs,
]
}
export class CronScheduler {
private intervalId: Timer | null = null
private runningTasks = new Map<
string,
{ proc: ReturnType<typeof Bun.spawn>; startedAt: number; runId: string }
>()
/** Track which minute each task last fired (prevents same-process duplicate within a minute). */
private lastFiredMinuteKey = new Map<string, string>()
private cronService: CronService
private sessionService: SessionService
private providerService = new ProviderService()
constructor(cronService?: CronService) {
this.cronService = cronService || new CronService()
this.sessionService = new SessionService()
}
/** Return a string key representing the calendar minute of `date`. */
private static minuteKey(date: Date): string {
return `${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}-${date.getHours()}-${date.getMinutes()}`
}
/** Start the scheduler (called on server boot). */
start(): void {
if (this.intervalId) return // already running
console.log('[CronScheduler] Starting β checking every 60 s')
// Clean up stale "running" entries left by previously crashed processes
this.cleanupStaleRuns().catch((err) =>
console.error('[CronScheduler] Error cleaning up stale runs:', err),
)
this.intervalId = setInterval(() => this.tick(), 60_000)
// Immediate first check
this.tick()
}
/** Stop the scheduler and kill any running task processes. */
stop(): void {
if (this.intervalId) {
clearInterval(this.intervalId)
this.intervalId = null
}
for (const [taskId, entry] of this.runningTasks) {
try {
entry.proc.kill()
} catch {
// process may have already exited
}
this.runningTasks.delete(taskId)
}
console.log('[CronScheduler] Stopped')
}
/** One tick of the scheduler β evaluate all tasks against the current time. */
async tick(): Promise<void> {
try {
const tasks = await this.cronService.listTasks()
const now = new Date()
const currentKey = CronScheduler.minuteKey(now)
for (const task of tasks) {
// Skip disabled tasks
if (task.enabled === false) continue
// Skip if already running (in-memory guard β same process)
if (this.runningTasks.has(task.id)) continue
// Skip if this process already fired the task in the current minute
if (this.lastFiredMinuteKey.get(task.id) === currentKey) continue
// Skip if ANY process already fired the task in the current minute
// (cross-process guard via file-persisted lastFiredAt)
if (task.lastFiredAt) {
const lastFiredKey = CronScheduler.minuteKey(new Date(task.lastFiredAt))
if (lastFiredKey === currentKey) continue
}
if (cronMatches(task.cron, now)) {
// Record the minute key BEFORE firing to prevent double-fire
this.lastFiredMinuteKey.set(task.id, currentKey)
// Fire and forget β don't await; we want all matching tasks to start
this.executeTask(task).catch((err) => {
console.error(
`[CronScheduler] Unhandled error executing task ${task.id}:`,
err,
)
})
}
}
} catch (err) {
console.error('[CronScheduler] Error during tick:', err)
}
}
/**
* Execute a single task by spawning a CLI subprocess.
* @param task The task to execute
* @param options.createSession When true, creates a Session for rich output viewing (used for manual "Run Now")
*/
async executeTask(task: CronTask, options?: { createSession?: boolean }): Promise<TaskRun> {
// Prevent concurrent executions of the same task
const existing = this.runningTasks.get(task.id)
if (existing) {
console.log(
`[CronScheduler] Task ${task.id} is already running (runId=${existing.runId}), skipping`,
)
return {
id: existing.runId,
taskId: task.id,
taskName: task.name || task.prompt.slice(0, 60),
startedAt: new Date(existing.startedAt).toISOString(),
status: 'running',
prompt: task.prompt,
}
}
const runId = crypto.randomBytes(6).toString('hex')
const startedAt = new Date().toISOString()
let workDir = task.folderPath || os.homedir()
if (task.folderPath && (!existsSync(task.folderPath) || !statSync(task.folderPath).isDirectory())) {
console.warn(`[cron] task ${task.id}: folderPath "${task.folderPath}" is not a valid directory, falling back to homedir`)
workDir = os.homedir()
}
// Only create a session when explicitly requested (manual "Run Now"),
// not for automatic cron runs β avoids flooding the sidebar.
let sessionId: string | undefined
if (options?.createSession) {
try {
const result = await this.sessionService.createSession(workDir)
sessionId = result.sessionId
// Delete the placeholder JSONL file so the CLI can create it fresh
// with actual content. Same pattern as conversationService.ts.
await this.sessionService.deleteSessionFile(sessionId)
} catch {
// Fall back to no session if creation fails
}
}
const run: TaskRun = {
id: runId,
taskId: task.id,
taskName: task.name || task.prompt.slice(0, 60),
startedAt,
status: 'running',
prompt: task.prompt,
sessionId,
}
// Update lastFiredAt IMMEDIATELY so other scheduler processes see it
// and skip this task in the current minute (cross-process dedup).
await this.cronService.updateLastFired(task.id, startedAt)
// Persist the "running" state
await appendRun(run)
const inputPayload = JSON.stringify({
type: 'user',
message: {
role: 'user',
content: [{ type: 'text', text: task.prompt }],
},
parent_tool_use_id: null,
session_id: sessionId || '',
}) + '\n'
const cliArgs = buildCronCliArgs([
'--print',
'--verbose',
'--input-format',
'stream-json',
'--output-format',
'stream-json',
...(sessionId ? ['--session-id', sessionId] : []),
...this.getRuntimeArgs(task),
])
const childEnv = await this.buildTaskChildEnv(workDir, task)
const proc = Bun.spawn(
cliArgs,
{
stdin: 'pipe',
stdout: 'pipe',
stderr: 'pipe',
cwd: workDir,
env: childEnv,
},
)
this.runningTasks.set(task.id, { proc, startedAt: Date.now(), runId })
// Write prompt to stdin then close it
try {
proc.stdin.write(inputPayload)
proc.stdin.end()
} catch {
// If writing fails, the process may have already exited
}
// Set up a timeout
const timeoutId = setTimeout(() => {
if (this.runningTasks.has(task.id)) {
try {
proc.kill()
} catch {
// ignore
}
}
}, TASK_TIMEOUT_MS)
try {
// Collect stdout
const stdoutChunks: string[] = []
if (proc.stdout) {
const reader = proc.stdout.getReader()
const decoder = new TextDecoder()
try {
while (true) {
const { done, value } = await reader.read()
if (done) break
stdoutChunks.push(decoder.decode(value, { stream: true }))
}
} catch {
// stream may be interrupted on kill
}
}
// Wait for exit
const exitCode = await proc.exited
clearTimeout(timeoutId)
this.runningTasks.delete(task.id)
const completedAt = new Date().toISOString()
const rawOutput = stdoutChunks.join('')
const durationMs =
new Date(completedAt).getTime() - new Date(startedAt).getTime()
// Determine if this was a timeout
const wasTimeout = durationMs >= TASK_TIMEOUT_MS
// Extract only meaningful AI text responses from raw NDJSON output.
// The raw stream contains system/init messages, tool_use blocks, and
// tool_result echoes that consume thousands of chars before any actual
// AI answer appears. A naive .slice(0, 10_000) would lose the answer.
const output = extractAssistantText(rawOutput)
const completedRun: TaskRun = {
...run,
completedAt,
status: wasTimeout ? 'timeout' : exitCode === 0 ? 'completed' : 'failed',
output: output.slice(0, 50_000), // cap after extraction
exitCode,
durationMs,
}
// Collect stderr for error field
if (exitCode !== 0 && proc.stderr) {
try {
const stderrText = await new Response(proc.stderr).text()
completedRun.error = stderrText.slice(0, 5_000)
} catch {
// ignore
}
}
await updateRun(completedRun)
// Send IM notification if configured
if (task.notification?.enabled && task.notification.channels.length > 0) {
sendTaskNotification(completedRun, task.notification).catch((err) => {
console.error(`[CronScheduler] Notification error for task ${task.id}:`, err)
})
}
// If non-recurring, disable after first run
if (!task.recurring) {
await this.cronService.updateTask(task.id, { enabled: false }).catch(() => {
// Task may have been deleted
})
}
return completedRun
} catch (err) {
clearTimeout(timeoutId)
this.runningTasks.delete(task.id)
const completedAt = new Date().toISOString()
const failedRun: TaskRun = {
...run,
completedAt,
status: 'failed',
error: (err as Error).message,
durationMs:
new Date(completedAt).getTime() - new Date(startedAt).getTime(),
}
await updateRun(failedRun)
return failedRun
}
}
private getRuntimeArgs(task: CronTask): string[] {
const model = task.model?.trim()
return model ? ['--model', model] : []
}
private async buildTaskChildEnv(
workDir: string,
task: CronTask,
): Promise<Record<string, string | undefined>> {
const cleanEnv = await getProcessEnvWithTerminalShellEnvironment()
delete cleanEnv.CLAUDE_CODE_OAUTH_TOKEN
if (this.shouldStripInheritedProviderEnv(task.providerId)) {
for (const key of Object.keys(cleanEnv)) {
if (isProviderManagedEnvVar(key)) {
delete cleanEnv[key]
}
}
}
const explicitProviderEnv =
typeof task.providerId === 'string'
? await this.providerService.getProviderRuntimeEnv(task.providerId)
: null
if (explicitProviderEnv && task.model?.trim()) {
explicitProviderEnv.ANTHROPIC_MODEL = task.model.trim()
}
const attributionHeaderEnv = attributionHeaderEnvForModel(
task.model?.trim() ||
explicitProviderEnv?.ANTHROPIC_MODEL ||
cleanEnv.ANTHROPIC_MODEL,
)
return {
...cleanEnv,
CLAUDE_CODE_ENABLE_TASKS: '1',
CLAUDE_CODE_ENTRYPOINT: 'sdk-cli',
CALLER_DIR: workDir,
PWD: workDir,
CC_HAHA_SKIP_DOTENV: '1',
...(explicitProviderEnv
? {
CLAUDE_CODE_PROVIDER_MANAGED_BY_HOST: '1',
CLAUDE_CODE_ENTRYPOINT: 'sdk-cli',
}
: {}),
...(explicitProviderEnv ?? {}),
...(this.shouldMarkManagedOAuth(task.providerId)
? await this.buildOfficialOAuthEnv()
: {}),
...attributionHeaderEnv,
}
}
private getConfigDir(): string {
return process.env.CLAUDE_CONFIG_DIR || path.join(os.homedir(), '.claude')
}
private shouldStripInheritedProviderEnv(providerId?: string | null): boolean {
if (providerId !== undefined) {
return true
}
const ccHahaDir = path.join(this.getConfigDir(), 'cc-haha')
if (existsSync(path.join(ccHahaDir, 'providers.json'))) {
return true
}
try {
const raw = readFileSync(path.join(ccHahaDir, 'settings.json'), 'utf-8')
const parsed = JSON.parse(raw) as { env?: Record<string, string> }
const env = parsed.env ?? {}
return Object.entries(env).some(
([key, value]) =>
isProviderManagedEnvVar(key) &&
typeof value === 'string' &&
value.trim().length > 0,
)
} catch {
return false
}
}
private shouldMarkManagedOAuth(providerId?: string | null): boolean {
if (providerId === null) {
return true
}
if (typeof providerId === 'string') {
return false
}
try {
const raw = readFileSync(
path.join(this.getConfigDir(), 'cc-haha', 'settings.json'),
'utf-8',
)
const parsed = JSON.parse(raw) as { env?: Record<string, string> }
const env = parsed.env ?? {}
const hasProviderEnv = [
'ANTHROPIC_API_KEY',
'ANTHROPIC_AUTH_TOKEN',
'ANTHROPIC_BASE_URL',
].some(
(key) =>
typeof env[key] === 'string' && env[key]!.trim().length > 0,
)
return !hasProviderEnv
} catch {
return true
}
}
private async buildOfficialOAuthEnv(): Promise<Record<string, string>> {
const env: Record<string, string> = {
CLAUDE_CODE_ENTRYPOINT: 'claude-desktop',
}
try {
const { hahaOAuthService } = await import('./hahaOAuthService.js')
const token = await hahaOAuthService.ensureFreshAccessToken()
if (token) {
env.CLAUDE_CODE_OAUTH_TOKEN = token
}
} catch (err) {
console.error(
'[cronScheduler] ensureFreshAccessToken failed:',
err instanceof Error ? err.message : err,
)
}
return env
}
// βββ Cleanup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Mark stale "running" entries as "failed" on startup.
* These are leftover from previous process instances that crashed or were
* killed before they could update the run log.
*/
private async cleanupStaleRuns(): Promise<void> {
const data = await readRunsFile()
let changed = false
const now = Date.now()
for (const run of data.runs) {
if (run.status !== 'running') continue
const startedAt = new Date(run.startedAt).getTime()
// If "running" for longer than the task timeout + 1-minute buffer,
// the owning process is certainly dead.
if (now - startedAt > TASK_TIMEOUT_MS + 60_000) {
run.status = 'failed'
run.error = 'Process terminated before task could complete'
run.completedAt = new Date().toISOString()
run.durationMs = now - startedAt
changed = true
console.log(
`[CronScheduler] Cleaned up stale run ${run.id} for task ${run.taskId}`,
)
}
}
if (changed) {
await writeRunsFile(data)
}
}
// βββ Query helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/** Get execution history for a specific task. */
async getTaskRuns(taskId: string): Promise<TaskRun[]> {
const data = await readRunsFile()
return data.runs
.filter((r) => r.taskId === taskId)
.sort(
(a, b) =>
new Date(b.startedAt).getTime() - new Date(a.startedAt).getTime(),
)
}
/** Get recent runs across all tasks. */
async getRecentRuns(limit = 50): Promise<TaskRun[]> {
const data = await readRunsFile()
return data.runs
.sort(
(a, b) =>
new Date(b.startedAt).getTime() - new Date(a.startedAt).getTime(),
)
.slice(0, limit)
}
}
// βββ Singleton export ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export const cronScheduler = new CronScheduler()
|