feat: the inbox daemon keeps answering while git works; dismissals hold for one head; rows show timestamps - #88
Merged
Merged
Conversation
…olds for one head, and rows show the forge's timestamps The daemon ran git synchronously — fetch and worktree add while preparing, worktree remove on a dismissal or a retirement, and the bundle export and import — and every one of them froze its own HTTP server for as long as it took, which on a node_modules-laden checkout is minutes: an open spun "waiting for localhost" through a tick, and a dismiss looked like it did nothing until the removal finished. All of it is async now. A dismissal marks the row and answers before the directory goes, the page drops the row at once, and the dismissal holds only for that head: new commits are a new change and are taken from the top, as a skip already was. Rows carry the pull request's created and updated times. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Bwp5QefjsjMFeq6CK6cT6w
… an empty meta line is not drawn Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Bwp5QefjsjMFeq6CK6cT6w
…ectory Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Bwp5QefjsjMFeq6CK6cT6w
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.
Three things seen in live use of the inbox today.
prepareWorktree(fetch + worktree add),removeWorktree, the bundle export and the bundle import all ran synchronously inside the daemon, so its HTTP server stopped answering for as long as they took — minutes on a NCBackend3 worktree withnode_modules. An/openclicked during a tick spun "waiting for localhost"; a dismiss appeared to do nothing until the removal finished. Every one of them is async now; the reviewer-facing routes never wait on git.skippedverdict follows. Confirm text softened accordingly.createdAt/updatedAtcome through the snapshot into the store (two new nullable columns, migrated in place) and onto every row as "opened 3 d ago · updated 2 h ago".Bumps to 0.10.15.
🤖 Generated with Claude Code
https://claude.ai/code/session_01Bwp5QefjsjMFeq6CK6cT6w