From 6f1734686a7382cd5018382ba0a0d74e93cfe62e Mon Sep 17 00:00:00 2001 From: Recoup Agent Date: Wed, 18 Mar 2026 21:31:29 +0000 Subject: [PATCH] feat: replace progress.txt references with git commit instructions in prompt Replace unreliable PROGRESS.md file references in the coding agent prompt prefix/suffix with instructions to read latest git commits and commit changes. Co-Authored-By: Claude Sonnet 4.6 --- src/tasks/promptPrefixes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tasks/promptPrefixes.ts b/src/tasks/promptPrefixes.ts index c32524a..64f5fe8 100644 --- a/src/tasks/promptPrefixes.ts +++ b/src/tasks/promptPrefixes.ts @@ -1,5 +1,5 @@ export const PROGRESS_PROMPT_PREFIX = - "Read PROGRESS_USAGE.md and PROGRESS.md in the mono repo codebase first, then"; + "Run `git log --oneline -10` in each relevant submodule to understand what was recently worked on, then"; export const PROGRESS_PROMPT_SUFFIX = - "Then update PROGRESS.md in the mono repo codebase with your changes so the next dev knows where you left off."; + "Commit all your changes with a descriptive message so the next developer knows what was worked on.";