diff --git a/src/paired-execution-context.test.ts b/src/paired-execution-context.test.ts index 47ca04a..47c1520 100644 --- a/src/paired-execution-context.test.ts +++ b/src/paired-execution-context.test.ts @@ -1018,7 +1018,8 @@ describe('paired execution context', () => { taskId: 'task-1', role: 'owner', status: 'failed', - summary: "Error running remote compact task: Unknown parameter: 'prompt_cache_retention'", + summary: + "Error running remote compact task: Unknown parameter: 'prompt_cache_retention'", }); expect(db.updatePairedTask).toHaveBeenCalledWith( diff --git a/src/paired-execution-context.ts b/src/paired-execution-context.ts index bb58c88..46b0fcb 100644 --- a/src/paired-execution-context.ts +++ b/src/paired-execution-context.ts @@ -370,7 +370,9 @@ export function preparePairedExecutionContext(args: { expectedUpdatedAt: latestTask.updated_at, updatedAt: now, patch: { - ...(hasHuman ? { round_trip_count: 0, owner_failure_count: 0 } : {}), + ...(hasHuman + ? { round_trip_count: 0, owner_failure_count: 0 } + : {}), }, }); } else { @@ -379,7 +381,9 @@ export function preparePairedExecutionContext(args: { expectedUpdatedAt: latestTask.updated_at, updatedAt: now, patch: { - ...(hasHuman ? { round_trip_count: 0, owner_failure_count: 0 } : {}), + ...(hasHuman + ? { round_trip_count: 0, owner_failure_count: 0 } + : {}), }, }); }