fix(session): preserve context after user interrupts #2563
+18
−3
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.
#2554
Prior behavior dropped all assistant messages with any error flag, so Ctrl+C (AbortError) removed crucial context like read files and patches. This caused the model to ‘forget’ work after an interruption.
Change: when building provider messages, filter out assistant messages only if error exists and it is not MessageAbortedError. Aborted messages now remain in context; genuine failures (auth/output length/unknown) are still excluded. Also ensure summaries with errors are not treated as lastSummary anchors.
Includes: adjust lastSummary lookups to ignore errored summaries.
Edge cases considered: multiple interrupts, partial tool calls are marked error on parts but message retained; stopWhen short-circuits on permission rejects; compatibility with MessageV2.AbortedError schema.
It seems to help, but I don’t know if it breaks something else.