From 8c28e2cca21561bb53b055538d2f0f78c409655f Mon Sep 17 00:00:00 2001 From: Jay Date: Wed, 15 Apr 2026 13:57:11 -0400 Subject: [PATCH] Update prompt. --- prompts/summarize_staged | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/prompts/summarize_staged b/prompts/summarize_staged index 1393ac6..06220e3 100755 --- a/prompts/summarize_staged +++ b/prompts/summarize_staged @@ -2,7 +2,27 @@ SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd) SYSTEM_PROMPT_FILE="$SCRIPT_DIR/coder.md" -PROMPT="Summarize the changes made in this diff, given the diff and the after state." +PROMPT=' +Summarize the changes made in this diff, given the diff and the after code. +The rest of the code repository is not provided. + +OUTPUT FORMAT: + +``` +# Digest + +one liner detailing what has been changed + +# Summary + +short paragraph summary of the changes made in the diff + +# Details + +detailed breakdown of the changes, grouped by topic +``` +' + MODEL="gemini-3-flash-preview" FALLBACK="claude-sonnet-4.6"