# Phase 25.4 Deferred Items

Out-of-scope discoveries logged during execution of plans 25.4-01..07. These
are NOT auto-fixed (SCOPE BOUNDARY rule) — separate follow-up work.

## Plan 25.4-05 (executor)

### Pre-existing test failures in `cargo test --lib live::wrapper`

10 tests fail under `cargo test --lib live::wrapper` on `main` (verified by
stashing the Plan 25.4-05 Task 2 changes and re-running — same 10 failures).
None of them touch `write_wrapper_state` / wrapper-state path resolution; the
failures are in:

- `live::wrapper::file_drop_handler_tests::*` (7 tests) — git worktree setup
  collisions (e.g., "agents/g2-b-70444-1779596127966496800 already exists"
  — leaked from a previous parallel test run; per-test cleanup gap).
- `live::wrapper::lifecycle::tests::drain_stale_init_signoffs_*` (2 tests)
  — unrelated to wrapper-state.
- `live::wrapper::claude::tests::emit_inwrapper_boot_seals_on_second_call`
  — seal-commit ordering ("seal commit for gen 3 must appear in log;
  got: 7fa0de4 init: tracked seed").
- `live::wrapper::tests::phase_25_3_invariant_inbound_two_slice_envelope_persists_correctly`
  — unrelated invariant test.

Disposition: defer to a follow-up debug/quick. Not blocking for Plan 25.4-05
since (a) all failures are pre-existing on main, (b) Plan 25.4-05's intended
verification surface (`cargo test --lib common::wrapper_state` + `cargo test
--test handoff_integration`) is green.

### Pre-existing build warning: `tests/native_wrapper_state_retry.rs`

3 occurrences of `WrapperHandoffState { ... }` literal that omit
`pulse_psyche` (added in 260523-648). Plan 25.4-04 SUMMARY flagged this
already. Plan 25.4-05 does NOT auto-fix because:

- The test file is integration-test scope, not lib-test scope.
- Task 1 verify (`cargo test --lib common::wrapper_state`) doesn't touch it.
- Task 3 verify (`cargo test --test handoff_integration`) doesn't touch it.
- Plan 25.4-05's strict scope is the 3 wrapper-side writer call sites; the
  test fixture migration is a separate concern.

Disposition: follow-up plan or quick. Mechanical fix (add `pulse_psyche: false`
to the 3 struct literals + flip `write_wrapper_state` → `write_wrapper_state_at`
to match the new explicit-parent surface).
