From ef4949b936ffc59ce47d03a5526b57f4a62079f8 Mon Sep 17 00:00:00 2001 From: Tyler Yust Date: Tue, 3 Feb 2026 16:59:25 -0800 Subject: [PATCH] refactor(cron): update delivery instructions for isolated agent - Revised the delivery instructions in the isolated agent's command body to clarify that summaries should be returned as plain text and will be delivered by the main agent. - Removed the previous directive regarding messaging tools to streamline communication guidelines. This change enhances clarity in the delivery process for isolated agent tasks. --- 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 7373dd543..fa395b10e 100644 --- a/src/cron/isolated-agent/run.ts +++ b/src/cron/isolated-agent/run.ts @@ -292,7 +292,7 @@ export async function runCronIsolatedAgentTurn(params: { } if (deliveryRequested) { commandBody = - `${commandBody}\n\nDo not send messages via messaging tools. Return your summary as plain text; delivery is handled automatically. If the task explicitly calls for messaging a specific external recipient, note who/where it should go instead of sending it yourself.`.trim(); + `${commandBody}\n\nReturn your summary as plain text; it will be delivered by the main agent. If the task explicitly calls for messaging a specific external recipient, note who/where it should go instead of sending it yourself.`.trim(); } const existingSnapshot = cronSession.sessionEntry.skillsSnapshot;