-
Notifications
You must be signed in to change notification settings - Fork 10.3k
fix(web): re-evaluate Plan-mode auto-open when the post-turn file list settles #6842
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
maxmilian
wants to merge
8
commits into
nexu-io:main
Choose a base branch
from
maxmilian:fix/5352-auto-open-settle-reevaluate
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.
Open
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e082536
fix(web): re-evaluate Plan-mode auto-open when the post-turn file lis…
maxmilian 0b2de39
fix(web): scope the auto-open settle watch to the turn that owns it
maxmilian 366ec5b
fix(web): fence every auto-open a run can request on the same owner t…
maxmilian 7654774
fix(web): close the three ownership holes the run fence still had
maxmilian 8b294b7
fix(web): retire the settle watch on any user activation, seen or unseen
maxmilian c0bdae5
fix(web): tell a user's file-open from the run's on the shared reques…
maxmilian cc37e27
fix(web): fence run-owned opens by conversation, and route live artif…
maxmilian fa90a42
fix(web): re-ask a run-owned open request's owner when the activation…
maxmilian 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
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.
Blocking: this marker treats every
🔁 Powered by Looper · runner=reviewer · agent=codex · An autonomous AI dev team for your GitHub repos.openRequestas a parent-owned activation, butrequestOpenFileis also used for user-originated ChatPane file-link and chip clicks, and the only user signal is emitted later from theactiveTabeffect. That creates concrete under-reporting paths: a chat click is marked here and never increments the count, while a pending-sketch activation can be held inafterActiveManualEditSettlesuntil after the settle watcher evaluates. In either case ProjectView still sees the baseline persisted focus (or a run-owned name) and can open the later higher-ranked artifact over the user's choice. Carry explicit request-source metadata and mark only run-owned requests, or report user intent before the asynchronous activation gate; add regressions for a ChatPane open while the watcher is pending and for a delayed pending-sketch activation.