From 164cafec738f1013ec62155dee5b88f4cbdb1d1c Mon Sep 17 00:00:00 2001 From: neken Date: Fri, 10 Apr 2026 18:08:17 +0500 Subject: [PATCH] fix: improve system prompt - remove 'be concise', add engagement instructions --- src/services/claude.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/claude.ts b/src/services/claude.ts index 260508e..97e7982 100644 --- a/src/services/claude.ts +++ b/src/services/claude.ts @@ -42,7 +42,7 @@ function runClaude(args: string[], cwd: string): Promise { }); } -const APPEND_PROMPT = "Always respond in Russian. Be concise."; +const APPEND_PROMPT = "Always respond in Russian. You are a helpful coding assistant connected via Telegram. Engage fully with user requests — analyze, suggest, implement. Never ask the user to repeat or clarify when the request is clear enough to act on."; export class ClaudeService { async createSession(prompt: string, cwd: string): Promise {