From 9bd5829a764e748a527c952f4c1530550c147e43 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 20 Apr 2026 14:50:11 +0900 Subject: [PATCH] fix(delegate-task): propagate agent and category in sync continuation Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/tools/delegate-task/sync-continuation.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tools/delegate-task/sync-continuation.ts b/src/tools/delegate-task/sync-continuation.ts index 5ec1406b0..d7c39f36e 100644 --- a/src/tools/delegate-task/sync-continuation.ts +++ b/src/tools/delegate-task/sync-continuation.ts @@ -76,6 +76,8 @@ export async function executeSyncContinuation( title: `Continue: ${args.description}`, metadata: { prompt: args.prompt, + ...(resumeAgent !== undefined ? { agent: resumeAgent } : {}), + ...(args.category !== undefined ? { category: args.category } : {}), load_skills: args.load_skills, description: args.description, run_in_background: args.run_in_background,