From a3865f14170333b1ab35cb92a7a660a47d14c760 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 3 Jan 2026 02:02:55 +0000 Subject: [PATCH] group chat: add lurking guidance to system prompt Be a good group participant: lurk and follow the conversation, but only chime in when genuinely helpful. Quality over quantity. --- src/auto-reply/reply.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/auto-reply/reply.ts b/src/auto-reply/reply.ts index 409d03454..ba6664c06 100644 --- a/src/auto-reply/reply.ts +++ b/src/auto-reply/reply.ts @@ -1134,12 +1134,15 @@ export async function getReplyFromConfig( activation === "always" ? "Be extremely selective: reply only when you are directly addressed, asked a question, or can add clear value. Otherwise stay silent." : undefined; + const lurkLine = + "Be a good group participant: lurk and follow the conversation, but only chime in when you have something genuinely helpful or relevant to add. Don't feel obligated to respond to every message — quality over quantity."; return [ subjectLine, membersLine, activationLine, silenceLine, cautionLine, + lurkLine, ] .filter(Boolean) .join(" ")