From 63b63cd66d3c9384f7b599cb6447b67c43be898b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 20 Dec 2025 13:31:28 +0000 Subject: [PATCH] style(auto-reply): format bare /new --- src/auto-reply/reply.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/auto-reply/reply.ts b/src/auto-reply/reply.ts index 7b230e2ca..92789a9e7 100644 --- a/src/auto-reply/reply.ts +++ b/src/auto-reply/reply.ts @@ -589,7 +589,9 @@ export async function getReplyFromConfig( isNewSession && baseBodyTrimmedRaw.length === 0 && rawBodyTrimmed.length > 0; - const baseBodyFinal = isBareSessionReset ? BARE_SESSION_RESET_PROMPT : baseBody; + const baseBodyFinal = isBareSessionReset + ? BARE_SESSION_RESET_PROMPT + : baseBody; const baseBodyTrimmed = baseBodyFinal.trim(); // Bail early if the cleaned body is empty to avoid sending blank prompts to the agent. // This can happen if an inbound platform delivers an empty text message or we strip everything out.