feat(prompts): add staleness detection to refiner prompt#44
Merged
HonestMajority merged 1 commit intomainfrom Feb 23, 2026
Merged
feat(prompts): add staleness detection to refiner prompt#44HonestMajority merged 1 commit intomainfrom
HonestMajority merged 1 commit intomainfrom
Conversation
Add instruction 3 to the refiner prompt that tells it to detect and reconcile stale TASK.md content when the user has made manual code changes between agman iterations. The refiner now compares the Plan's Completed/Remaining steps against the git diff, commit log, and actual codebase, treating code as the source of truth. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a user makes manual code changes between agman iterations, the refiner receives a TASK.md whose Plan section is out of sync with the actual codebase — steps marked "Remaining" may already be done, and "Completed" steps may have been rewritten.
The refiner already receives git diff and commit log context, but its instructions didn't tell it to use that context to reconcile the overall plan. This adds a new instruction (inserted as #3, with subsequent instructions renumbered) that tells the refiner to compare TASK.md's plan against the git diff, commit log, and actual codebase before rewriting, treating the code as the source of truth when they diverge.
Prompt-only change — no Rust logic modified.