# Deferred items — quick task 260527-s8l

Out-of-scope discoveries surfaced during execution. NOT addressed by this task per
executor scope rules (only auto-fix issues directly caused by current task changes).

## Pre-existing test compile breakage

**File:** `tests/native_wrapper_state_retry.rs`
**Error:** `error[E0063]: missing field 'pulse_psyche' in initializer of 'WrapperHandoffState'` at lines 54, 95, 158.
**Origin:** Field `pulse_psyche` added to `WrapperHandoffState` in commit `3616ed1` (`feat(live): default --period 480 + new --pulse-psyche flag`). The integration test was last modified earlier in `844d903` (`test(25.2-01): integration tests for #1 + #3 + #4`) and never updated to include the new field.
**Impact:** `cargo test` full-suite fails at the integration-test compile step. `cargo test --lib` (951 passing) and other integration targets (e.g. `cargo test --test handoff_integration`, `cargo test --test hook_chain`) pass.
**Resolution path:** Update the three `WrapperHandoffState { ... }` initializers in the test file to include `pulse_psyche: None` (or appropriate default). Out of scope for s8l — the bug is wholly unrelated to project-context routing or worktree creation.

**Recommended follow-up:** A trivial follow-up commit (`test: add pulse_psyche to native_wrapper_state_retry initializers`) clearing this breakage so the full `cargo test` invocation returns green.
