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.main
parent
1409943863
commit
ef4949b936
|
|
@ -292,7 +292,7 @@ export async function runCronIsolatedAgentTurn(params: {
|
||||||
}
|
}
|
||||||
if (deliveryRequested) {
|
if (deliveryRequested) {
|
||||||
commandBody =
|
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;
|
const existingSnapshot = cronSession.sessionEntry.skillsSnapshot;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue