From 61c99352640ff9746fcd613262201377ea5b2ffb Mon Sep 17 00:00:00 2001 From: Marcus Castro Date: Sun, 15 Feb 2026 23:06:05 -0300 Subject: [PATCH] fix: correct indentation in cron isolated-agent run.ts --- src/cron/isolated-agent/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cron/isolated-agent/run.ts b/src/cron/isolated-agent/run.ts index f4f36f031d..7b3a7eb956 100644 --- a/src/cron/isolated-agent/run.ts +++ b/src/cron/isolated-agent/run.ts @@ -521,7 +521,7 @@ export async function runCronIsolatedAgentTurn(params: { `${commandBody}\n\nReturn your summary as plain text; it will be delivered automatically. If the task explicitly calls for messaging a specific external recipient, note who/where it should go instead of sending it yourself.`.trim(); } -let skillsSnapshot = cronSession.sessionEntry.skillsSnapshot; + let skillsSnapshot = cronSession.sessionEntry.skillsSnapshot; if (isFastTestEnv) { // Fast unit-test mode: avoid scanning the workspace and writing session stores. skillsSnapshot = skillsSnapshot ?? { prompt: "", skills: [] };