Assessment of auto-detecting worktrees created outside PI WEB. Worktree discovery is already derived per request with no cache and no registry, so the gap is that the browser never re-lists. Recommends the reduced scope: filter prunable worktrees, add a non-disruptive topology refresh, and call it from the existing browser-resume path. No watchers, timers, processes, or push channels. Packet is repo-only and outside the published files allowlist, so no changeset is needed.
4.8 KiB
Status — relay "worktree-autodetect"
✅ APPROVED — relay is live
The human approved the reduced scope in leg 0 and answered every open question. There are no outstanding decisions. Run leg 1.
Current position
Leg 0 (assessment/design) is complete. No production code has been written.
The recommendation is reduced scope: detection piggybacked on browser resume, plus a
fix for the inverse (removed-worktree) case. No watchers, no timers, no new processes,
no new push channel. Rationale is in log.md leg 0; the implementation breakdown is in
plan.md.
Leg tracking
- Last completed leg: 0 (assessment and packet creation)
- Next leg to run: 1
Next task — leg 1
Stop reporting worktrees whose checkout directory has been removed outside PI WEB.
See plan.md → "Leg 1". Summary: teach the git worktree list --porcelain parser about
the prunable and locked keys, exclude prunable linked worktrees from the workspace
list, never filter the main worktree, never mutate the repo (no git worktree prune).
Files: src/server/workspaces/gitWorktreeDiscovery.ts, src/server/workspaces/workspaceService.ts,
new src/server/workspaces/gitWorktreeDiscovery.test.ts.
Relevant context for the next runner
Facts established in leg 0 — trust these, they were verified against the running code and real git; do not re-derive them:
- Worktrees are already derived, never registered.
WorkspaceService.list()shells out togit worktree list --porcelainon everyGET /projects/:projectId/workspacesrequest. There is no server-side cache and no invalidation to design. A worktree created outside PI WEB is already discovered — the gap is purely that the browser never re-asks. projects.jsonholds projects only, not workspaces. So "auto-adoption" is a non-problem: nothing needs to be written to a registry, and there is no adopt-vs-visible distinction to design. This collapsed most of the feature's apparent complexity.- Cost of discovery is ~2ms (measured: 20 sequential
git worktree list --porcelainruns in 42ms on this repo). prunableis real and load-bearing. Afterrm -rfing a worktree directory withoutgit worktree remove,git worktree list --porcelainstill lists it, with an addedprunable gitdir file points to non-existent locationline. PI WEB currently shows this as a normal selectable workspace.lockedappears as a bare valueless line.- The resume path already exists and is already debounced.
src/client/src/appShell/browserResumeController.tslistens to windowfocusand documentvisibilitychange, batches per animation frame, and collapses concurrent requests viaTrailingRefreshCoordinator. It callsPiWebApp.refreshAfterBrowserResume()(~line 432), which already refreshes the selected session, machine activities, and workspace-deletion runs. Workspace topology is the one thing missing from that list. - Remote machines come for free.
workspacesApi.workspaces(projectId, machineId)routes throughmachinePrefix, andGET /projects/:projectId/workspacesis already inFEDERATED_HTTP_ROUTESinsrc/shared/federatedRoutes.ts. No transport work needed. - The danger is
selectWorkspace. It callsclearActiveSession()andresetWorkspaceScopedState(). A refresh must apply the new list viaapplyProjectWorkspacesonly, and must not route throughselectWorkspacewhen the selection is still valid.ProjectActivityOwnershipCoordinatoris the existing precedent for background topology hydration that does not disturb selection — read it if leg 2 needs a model. - No session daemon involvement. Nothing in this design touches
src/server/sessiond.ts, session runtime ownership, or the daemon protocol. No manual sessiond restart needed.
Progress documentation expected of each runner
- Commit the slice (Conventional Commit message).
- Update this file: current position, leg tracking, next task, blockers.
- Append to
log.md: what, why, artifacts, exact checks run and results. - Add the
.changeset/*.mdfragment no later than leg 3.
Decisions settled by the human (do not re-open)
- Latency: resume-scoped is acceptable. Detection on tab refocus/visibility is the agreed behavior. Do not add a timer or a watcher to shorten it.
- Removed worktrees: hide them. Filtering
prunableworktrees out of the workspace list is wanted and approved. - Sibling overlap: assume the other session does nothing. This relay owns the
workspace-topology refresh seam outright. Build it here, do not design for sharing,
and do not read
/srv/dev/pi-web-worktrees/worktree-create-ui. If that branch later merges something overlapping, resolving it is that branch's problem, not this one's.
Blockers
None. Leg 1 is clear to run.