You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was generated by AI during triage (#657 sweep housekeeping, T8h batch conversion).
Follow-up from the 2026-07-22 PR #849 verifier-resolver lane (codex re-review P2, thread PRRT_kwDOTCGFQM6SqmQK; PR #849 merged, this design decision was deferred to the author). Folded from a #657 line (checked off there, this issue is the target).
Problem
implement-dispatch/SKILL.md's "Phase boundaries" section — the plan-marks-only phase-commit exception — does not say how the orchestrator obtains the worker's early-pushed source commit before the main-side build and the plan-only commit. In a dedicated-worktree topology (two worktrees cannot share a branch, so the worker is structurally on its own branch), the orchestrator's checkout lacks that commit unless it explicitly integrates — risking a plan-only commit that omits the source (separate branch) or a non-fast-forward push rejection (same remote branch).
Not defer-forbidden: the worker's source is already pushed to a remote ref (no data loss), and the mandatory main-side build + fresh-context verifier run against the orchestrator checkout would fail loudly on a missing-source checkout (not silent/irreversible; caught at PR review before anything ships).
Decision needed
Pin the intended worker→orchestrator git topology and require the orchestrator to fetch + fast-forward / cherry-pick / merge the worker commit before the Step 4 build and the plan-marks-only commit.
Options:
Fetch + fast-forward — orchestrator and worker share a branch; simplest, but only works when the orchestrator's own checkout never diverges independently.
Cherry-pick — orchestrator stays on its own branch/commit lineage, cherry-picks the worker's source commit; works even if the orchestrator has independent commits, but rewrites the worker's commit (new SHA) which complicates later reconciliation.
Merge — orchestrator merges the worker's branch in; preserves both histories and the worker's original commit, matches this repo's existing merge-staleness protocol precedent (rebase deprioritized repo-wide per lane sweep: triage — week of 7/20 (rolling paper-cut batch) #657 line ~35's finding — merge avoids force-push walls).
This is genuinely open product/design intent for the dispatch topology (not a single maintainer-vetoable default) — the right choice depends on how implement-dispatch wants worker/orchestrator git history to read afterward, which this lane cannot infer from the code alone.
This was generated by AI during triage (#657 sweep housekeeping, T8h batch conversion).
Follow-up from the 2026-07-22 PR #849 verifier-resolver lane (codex re-review P2, thread
PRRT_kwDOTCGFQM6SqmQK; PR #849 merged, this design decision was deferred to the author). Folded from a #657 line (checked off there, this issue is the target).Problem
implement-dispatch/SKILL.md's "Phase boundaries" section — the plan-marks-only phase-commit exception — does not say how the orchestrator obtains the worker's early-pushed source commit before the main-side build and the plan-only commit. In a dedicated-worktree topology (two worktrees cannot share a branch, so the worker is structurally on its own branch), the orchestrator's checkout lacks that commit unless it explicitly integrates — risking a plan-only commit that omits the source (separate branch) or a non-fast-forward push rejection (same remote branch).Not defer-forbidden: the worker's source is already pushed to a remote ref (no data loss), and the mandatory main-side build + fresh-context verifier run against the orchestrator checkout would fail loudly on a missing-source checkout (not silent/irreversible; caught at PR review before anything ships).
Decision needed
Pin the intended worker→orchestrator git topology and require the orchestrator to fetch + fast-forward / cherry-pick / merge the worker commit before the Step 4 build and the plan-marks-only commit.
Options:
This is genuinely open product/design intent for the dispatch topology (not a single maintainer-vetoable default) — the right choice depends on how
implement-dispatchwants worker/orchestrator git history to read afterward, which this lane cannot infer from the code alone.