From 0c6167f5dc384f49ae7bf7982eb7803392e9cca4 Mon Sep 17 00:00:00 2001 From: Eyejoker Date: Mon, 30 Mar 2026 02:35:44 +0900 Subject: [PATCH] fix: remove hardcoded finalize instructions from turn prompt --- src/message-runtime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/message-runtime.ts b/src/message-runtime.ts index f210e7e..146300a 100644 --- a/src/message-runtime.ts +++ b/src/message-runtime.ts @@ -571,7 +571,7 @@ export function createMessageRuntime(deps: MessageRuntimeDeps): { ); } const finalizePrompt = - 'The reviewer approved your work (DONE). Finalize: commit changes, push if appropriate, and report the result.'; + 'The reviewer approved your work (DONE). Finalize and report the result.'; const { deliverySucceeded } = await executeTurn({ group, prompt: finalizePrompt,