-
Notifications
You must be signed in to change notification settings - Fork 272
fix(vscode-lm): integrate guarded recovery into streaming responses #1608
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
simurg79
wants to merge
27
commits into
Zoo-Code-Org:main
Choose a base branch
from
simurg79:split/vscode-lm-streaming-b
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,357
−5
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
b4e1727
fix(vscode-lm): sanitize surrogates, recover leaked tool calls, and w…
306976d
test(vscode-lm): cover leaked tool-call salvage and tool_result trunc…
ed3e8ec
fix(vscode-lm): guard leaked tool-call recovery against quoted markup
cbac74d
chore(knip): exclude .roo skill assets from unused-file analysis
220ee89
fix(vscode-lm): address review feedback on leaked tool-call recovery
8c80252
docs(skill): drop probe transcripts from repo
d587392
chore: move probe skill scripts under scripts/, drop .roo knip ignore
14e8556
fix(vscode-lm): harden quoted-markup detection and bound the salvage …
d4e639d
test(vscode-lm): assert the salvage buffer flushes mid-stream
aa57a19
test(vscode-lm): cover fence-close branch of isInsideCodeFence
fbe5079
fix(vscode-lm): clamp messages budget to a positive floor
87d8a68
fix(vscode-lm): require function_calls wrapper and sanitize tool-call…
1511498
chore: remove probe skill and harness from PR
8eb1d93
docs: drop dangling probe skill path from vscode-lm comment
9660bc1
fix(vscode-lm): harden streaming tool-call recovery and token budgeting
4c9c0af
Merge remote-tracking branch 'origin/main' into port/vscode-lm-reliab…
4f4e27a
fix: derive mutation gate base from the PR merge commit's first parent
3f7ccce
fix(vscode-lm): admit requests against the raw context budget, not th…
e340cb6
fix(vscode-lm): accept an explicit null for a nullable leaked-tool pa…
0fa5f01
Merge branch 'main' into port/vscode-lm-reliability
simurg79 7349ba3
fix(vscode-lm): support null-only parameter schemas in leaked tool-ca…
03ebc16
refactor(vscode-lm): narrow this branch to leaked tool-call recovery
a012b6a
refactor(vscode-lm): drop surrogate sanitization from the transform l…
34e16a4
Merge branch 'main' into port/vscode-lm-reliability
simurg79 c0b3351
refactor(vscode-lm): defer leaked tool-call streaming integration
8565210
feat(vscode-lm): recover leaked tool calls during streaming
5719b63
Merge branch 'main' into split/vscode-lm-streaming-b
edelauna File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Preserve the supplied base outside pull-request runs. The
ci --base <sha> --head <sha>entrypoint allows direct manual invocation. For an ordinary mergeheadSha,selectFromGitreplaces the supplied base with the first parent before computingmerge-baseanddiff. Changes between the supplied base and that parent can then be excluded from the mutation manifest. Gate this resolution on explicit pull-request context.🤖 Prompt for AI Agents