-
Notifications
You must be signed in to change notification settings - Fork 751
fix(workbench): bind finding excerpts to selected source paths #488
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
Draft
mldangelo-oai
wants to merge
24
commits into
main
Choose a base branch
from
mdangelo/codex/finding-excerpt-scope-v8-20260816
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.
Draft
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
e2e177b
fix(workbench): keep finding source excerpts within requested paths
mldangelo-oai d0faf1c
fix(workbench): reject inaccessible selected source scopes
mldangelo-oai 70bddea
fix(workbench): authenticate missing historical source aliases
mldangelo-oai 8764b0c
fix(workbench): preserve authenticated historical Unicode aliases
mldangelo-oai 54d4721
Preserve explicit source scope for historical scans
mldangelo-oai 33fb8f7
Reject unauthenticated source path collisions
mldangelo-oai 113dbef
Merge main into finding excerpt scope fix
mldangelo-oai 8f3834c
Bind finding previews to saved Git source objects
mldangelo-oai 0f19739
Preserve immutable source reads across scan entrypoints
mldangelo-oai b06c353
Preserve historical preview scope and replacement consistency
mldangelo-oai 709cca5
Index source scopes and align previews with displayed locations
mldangelo-oai 042a88f
Authenticate requested source scopes before canonical aliases
mldangelo-oai 90df0d4
Avoid worktree execution when authorizing source previews
mldangelo-oai ed88560
Close source-preview fixture databases before cleanup
mldangelo-oai d526d48
Merge main into finding source excerpt scope
mldangelo-oai cad99e0
Merge main into finding source excerpt scope
mldangelo-oai 543d2ec
chore: merge main into finding source scopes
mldangelo-oai 7af8716
fix(workbench): verify ambiguous excerpts and simplify selection
mldangelo-oai 8651c09
chore: merge final release packaging updates
mldangelo-oai 4d228cb
Merge main into source-scope excerpts
mldangelo-oai 62dd525
fix(plugin): follow the source-helper help convention
mldangelo-oai 66a858f
test: avoid synchronous Windows subprocess timeouts
mldangelo-oai 11e3b93
chore: resolve PR #488 conflicts with main
mldangelo-oai 565639d
chore: resolve PR #488 conflicts with main
mldangelo-oai 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
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
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.
When a valid repository-relative path exceeds
FINDING_LOCATION_PATH_BYTES,location.pathis truncated for the response whileexcerpt_locationsretains the full database value, sosourceExcerptis read from a file that the reported relative location no longer identifies; two deep paths with the same first 2,048 bytes can even display identically while showing different source. Preserve the prior alignment by omitting the excerpt when bounding changes the path, or perform the lookup using the exact path returned to the caller.AGENTS.md reference: AGENTS.md:L30-L33
Useful? React with 👍 / 👎.