Fix planner hangs and preserve work during verification retries - #87
Merged
Conversation
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.
Long-running plans could stall when the interface stopped reading progress, or repeat implementation work when only the verification response failed. Retries also discarded earlier evidence, causing the agent to repeatedly recheck unchanged files instead of finishing the task.
This change makes recovery preserve completed work and clearly separates implementation failures from unavailable verification.
What changes for users
Validation
Remaining limitations
Overlapping plan steps and inconsistent model interpretation of acceptance criteria can still cause unnecessary checks. Headless acceptance tests do not establish complete real-browser behavior. These changes improve recovery and evidence handling; they do not guarantee every generated implementation is correct.
The companion Desktop PR, DevMando/MandoCode.Desktop#49, adds the verification-only retry and pause controls. Merge this shared-planner change before the Desktop integration.