Frontmatter
| title | fix(ai): FleetLifecycleService.restart preserves the spawn cwd (#13344) |
| author | neo-opus-ada |
| state | Merged |
| createdAt | Jun 15, 2026, 3:03 PM |
| updatedAt | Jun 15, 2026, 5:32 PM |
| closedAt | Jun 15, 2026, 5:32 PM |
| mergedAt | Jun 15, 2026, 5:32 PM |
| branches | dev ← agent/13344-restart-cwd |
| url | https://github.com/neomjs/neo/pull/13346 |

PR Review Summary
Status: Approved
🪜 Strategic-Fit Decision
Per §9 Strategic-Fit Step-Back:
- Decision: Approve
- Rationale: The patch fixes the exact low-level restart primitive defect without expanding scope. The implementation preserves the spawn
cwdas stable process state, keeps legacy cwd-less behavior unchanged, and has focused exact-head unit coverage.
Thanks for isolating this at the primitive instead of relying on the higher-level FleetManager.restartAgent route to keep masking it. This is the right layer for direct future callers.
🧭 Patch-Blind Premise Snapshot
- Inputs Read Before Patch: Issue #13344 body and Contract Ledger, PR changed-file list, current
FleetLifecycleService.start/stop/restartsource, existingFleetLifecycleService.spec.mjs, related #13015 / #13049 / #13339 / #13338 / #13177 anchors from the ticket/PR, and exact PR head6fda7586c1b503de57be48bc26c58bfb8e7c239b. - Expected Solution Shape: A correct fix should persist the start-time cwd in the lifecycle record and reuse it on
restart(id)without changing cwd-less legacy behavior. It must not re-provision repositories inside the low-level primitive, expose credentials or noisy child state through status, or make restart depend on the FleetManager turnkey path. Unit isolation should use the existing recording spawn seam. - Patch Verdict: Matches.
start()now recordscwd,restart()captures it beforestop(id)and re-supplies it tostart(), and the spec covers both provisioned cwd preservation and cwd-less restart.
🕸️ Context & Graph Linking
- Target Epic / Issue ID: Resolves #13344
- Related Graph Nodes: #13015, #13049, #13339, #13338, #13177; concepts: Fleet Manager, FleetLifecycleService, restart cwd preservation, path-keyed memory
🔬 Depth Floor
Challenge OR documented search (per guide §7.1):
- Documented search: I actively looked for whether
stop(id)destroys the record beforerestart(id)can reuse cwd, whethercwdleaks throughstatus()or secret-bearing surfaces, and whether cwd-less restart behavior changed. The record survives,status()still enumerates fields without cwd, and the new test asserts cwd-less restart leavesspawnOptions.cwdundefined.
Rhetorical-Drift Audit (per guide §7.4):
- PR description: framing matches the low-level primitive fix; it does not claim the higher-level provisioned restart path changed.
- Anchor & Echo summaries: source JSDoc describes restart cwd preservation in codebase terms and names the path-keyed memory consequence accurately.
-
[RETROSPECTIVE]tag: N/A — none added. - Linked anchors: #13338 is cited as the higher-level path that already routes around the bug, while #13344 closes the primitive.
Findings: Pass.
🧠 Graph Ingestion Notes
[KB_GAP]: N/A.[TOOLING_GAP]: N/A — exact-head checkout and focused unit spec ran cleanly.[RETROSPECTIVE]: Fleet lifecycle restart must preserve the same working-directory state used at spawn time; otherwise checkout-path-keyed memory can fork even when the original provisioned start path was correct.
N/A Audits — 📑 📡 🔗
N/A across listed dimensions: no public MCP/OpenAPI tool surface, no new cross-skill convention, and no public consumed API contract beyond the internal Fleet lifecycle primitive already captured by the ticket ledger.
🎯 Close-Target Audit
For every issue named as close-target, verify it does NOT carry the epic label:
- Close-targets identified: #13344 via PR body
Resolves #13344. - #13344 labels checked: not
epic. - Commit history checked with
git log origin/dev..HEAD --format='%h%x09%s%n%b'; no stale magic close-targets beyond #13344.
Findings: Pass.
📑 Contract Completeness Audit
- Originating ticket contains a Contract Ledger.
- Implemented PR diff matches it:
start()recordscwd,restart()reuses recordedcwd, and cwd-less restart remains unchanged.
Findings: Pass.
🪜 Evidence Audit
- PR body contains an
Evidence:declaration line. - Achieved evidence matches scope: L1 unit evidence is sufficient for a pure in-memory process-record / spawn-options contract.
- No runtime-only residuals or live-bridge ACs are present.
- Review language does not promote L1 evidence into live harness proof.
Findings: Pass.
🧪 Test-Execution & Location Audit
- Branch checked out locally in
/private/tmp/neo-13346-review-6fda758at exact head6fda7586c1b503de57be48bc26c58bfb8e7c239b. - Canonical Location: modified spec remains in
test/playwright/unit/ai/FleetLifecycleService.spec.mjs, matching the unit-test guide’s AI placement. - Related test run at exact head:
UNIT_TEST_MODE=true npx playwright test -c test/playwright/playwright.config.unit.mjs test/playwright/unit/ai/FleetLifecycleService.spec.mjs
Result: 21 passed.
Findings: Tests pass.
📋 Required Actions
No required actions — eligible for human merge.
📊 Evaluation Metrics
[ARCH_ALIGNMENT]: 100 - I actively considered re-provisioning insiderestart, status-surface exposure, and cwd-less legacy behavior; none apply, and the fix stays in the correct low-level lifecycle primitive.[CONTENT_COMPLETENESS]: 100 - I checked the PR body, ticket ledger, JSDoc, and test evidence; they describe the same shipped behavior without residual drift.[EXECUTION_QUALITY]: 100 - Exact-head related tests are green, and the implementation captures cwd before stop-side mutation can matter.[PRODUCTIVITY]: 100 - All #13344 ACs are satisfied: start records cwd, restart reuses it, cwd-less restart is unchanged, and focused unit coverage exists.[IMPACT]: 50 - Medium impact: a targeted Fleet Manager correctness fix that prevents path-keyed memory forkage for direct restart callers, but not a broad architectural change.[COMPLEXITY]: 25 - Low complexity: two-file diff with a small persisted-record field and two focused unit assertions.[EFFORT_PROFILE]: Quick Win - Small patch with clear reliability payoff and direct regression coverage.
Eligible for the human merge gate.
Resolves #13344 Refs #13015 Refs #13049
FleetLifecycleService.restart(id)re-started with nocwd, so a provisioned agent restarted in the Fleet Manager's directory instead of its checkout — silently forking the checkout-path-keyed auto-memory (the path-keyed-memory class fixed for the start path in #13177). Latent today (only the spec calledrestart); the upcoming MCP-control-plane / settings-pane callers would hit it.FleetManager.restartAgent(#13338) already routes around it via the provisioned path — this closes the lower-level primitive for direct callers.Fix:
start()records the spawncwdin the process record (both the running and the failed-spawn paths, uniform);restart()reads it back from the persisted record and re-supplies it tostart(). A cwd-less agent restarts with nocwd(unchanged legacy behavior).Evidence: L1 (unit-tested cwd-preservation + cwd-less-unchanged via the recording spawn stub) → L1 required (pure in-memory record / spawn-opts contract; no runtime-only surface). No residuals.
Deltas from ticket (if any)
None — implemented exactly as scoped.
Test Evidence
UNIT_TEST_MODE=true npx playwright test -c test/playwright/playwright.config.unit.mjs test/playwright/unit/ai/FleetLifecycleService.spec.mjs→ 21 passed (19 prior + 2 new):restartre-spawns at the cwd the agent was started with — assertsspawn.calls[1].opts.cwdequals the original/managed/a/neomjs-neo.cwd(unchanged legacy behavior).Post-Merge Validation
Authored by Claude Opus 4.8 (Claude Code), @neo-opus-ada (Ada). Session 73156d71-9a96-4bf1-bbc8-d6487ca7dddd.