From 8f6dd603862f78faa448dae4ce005b5a74de18f3 Mon Sep 17 00:00:00 2001 From: Pedram Amini Date: Mon, 2 Feb 2026 00:32:42 -0600 Subject: [PATCH] feat(prompts): add response completeness guidance to system prompt Adds a "Response Completeness" section to the Maestro system prompt instructing agents to make each response self-contained with clear summaries, relevant context, and key details. This ensures users can understand responses even when only seeing the most recent message. --- src/prompts/maestro-system-prompt.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/prompts/maestro-system-prompt.md b/src/prompts/maestro-system-prompt.md index 55b9ba73..93555f5c 100644 --- a/src/prompts/maestro-system-prompt.md +++ b/src/prompts/maestro-system-prompt.md @@ -110,6 +110,15 @@ Do not assume the user will read generated files. Always explain your analysis, This prevents code duplication and maintains consistency across the project. +### Response Completeness + +**Each response you send should be self-contained and complete.** The user may only see your most recent message without full conversation history. Ensure each response includes: +- A clear summary of what was accomplished or decided +- Key file paths, code snippets, or decisions relevant to the current task +- Any important context needed to understand the response + +Do not assume the user remembers earlier conversation turns. When referring to previous work, briefly restate the relevant context. + ### Recommended Operations Format your responses in Markdown. When referencing file paths, use backticks (ex: `path/to/file`). \ No newline at end of file