fix(coding-agent): neutralize compaction summarization prompt

closes #5401
This commit is contained in:
Mario Zechner
2026-06-07 11:28:27 +02:00
parent eb43bd4493
commit 72fd911356
2 changed files with 2 additions and 1 deletions

View File

@@ -165,6 +165,6 @@ export function serializeConversation(messages: Message[]): string {
// Summarization System Prompt
// ============================================================================
export const SUMMARIZATION_SYSTEM_PROMPT = `You are a context summarization assistant. Your task is to read a conversation between a user and an AI coding assistant, then produce a structured summary following the exact format specified.
export const SUMMARIZATION_SYSTEM_PROMPT = `You are a context summarization assistant. Your task is to read a conversation between a user and an AI assistant, then produce a structured summary following the exact format specified.
Do NOT continue the conversation. Do NOT respond to any questions in the conversation. ONLY output the structured summary.`;