# Sanctioned Recovery Playbooks & Controls (Phase 2 #644) ## Overview Stale runtimes, worktree binding mismatches, and un-reconciled merged branches previously required expert manual shell recovery. Manual process kills (`pkill -f mcp_server.py`) are strictly forbidden and classified as runtime contamination ([#630](sanctioned-restart-controls.md)). Phase 2 introduces **sanctioned recovery playbooks and controls** into the Web Console: - **Diagnose**: Surface stale runtimes, worktree binding errors, contamination markers, and worktree anomalies via health & inventory APIs. - **Preview**: Render mutation ledgers and exact confirmation phrases for recovery playbooks. - **Confirm & Apply**: Execute sanctioned recovery actions through gated, audited paths. - **Verify**: Revalidate control-plane state post-recovery before claiming clean status. --- ## Recovery Playbook Taxonomy | Playbook ID | Action ID | Minimum Role | Target / Scope | Description | |---|---|---|---|---| | `clear_stale_binding` | `system.clear_stale_binding` | Operator | Active worktree binding | Clear provably missing or superseded `GITEA_ACTIVE_WORKTREE` binding ([#702](../stale_binding_recovery.py)). | | `rebind_session_worktree` | `system.rebind_session_worktree` | Operator | Session worktree | Rebind or synchronize session worktree to verified lease worktree ([#864](../dirty_same_claimant_session_rebind.py)). | | `reconcile_cleanups` | `system.reconcile_cleanups` | Controller | Worktree hygiene | Execute reconciler cleanup preview and apply for merged/superseded PR branches. | | `sanctioned_restart` | `system.restart_namespace` | Admin | MCP Namespace | Restart MCP daemon gracefully via host supervisor ([#642](sanctioned-restart-controls.md)). | --- ## Wizard Workflow (Diagnose → Preview → Confirm → Verify) ### 1. Diagnose (`GET /api/v1/system/recovery/diagnose`) Runs control-plane diagnostics: - **Stale Runtime**: Mismatch between running daemon HEAD, local checkout HEAD, and remote-tracking HEAD. - **Worktree Binding**: Missing path (`provably_stale_missing_path`), unverified inherited binding (`unverified_inherited`), or superseded binding (`superseded_by_session_lease`). - **Contamination**: Checks for live contamination markers from unmanaged process kills. - **Worktree Anomalies**: Scans `branches/` directory for un-reconciled cleanups or missing preserved worktrees. Returns `RecoveryDiagnosis` with eligible playbooks. ### 2. Preview (`POST /api/v1/system/recovery/preview`) Takes `playbook_id` and optional `target`/`params`. Returns: - **Mutation Ledger**: Step-by-step sequence of actions. - **Confirmation Phrase**: Exact phrase required to authorize execution (e.g., `confirm clear_stale_binding`). - **Authorization Decision**: RBAC check against the operator's principal. ### 3. Apply (`POST /api/v1/system/recovery/apply`) Requires `playbook_id` and matching `confirmation` phrase. Gates run in this order, and each fails closed before anything is mutated: 1. **RBAC and execution phase** (`console_authz.authorize(..., for_execution=True)`). The phase branch only applies when `for_execution` is set. While `ACTIVE_PHASE` is `1`, every phase-2 recovery action is refused with `phase_not_active`, so no recovery playbook writes yet. Preview reports the same decision under `execution_authorization` / `execution_blocked_reason`. 2. **Confirmation phrase** (`confirmation_matches`). 3. **Contamination rules** ([#630](sanctioned-restart-controls.md)): the live marker is read from the session inventory and assessed under the gated task key `console_recovery_apply`. A contaminated runtime must be cleared through the reconciler cleanup playbook, which is the one playbook exempted from this gate because it is the designated remedy. The marker is also forwarded to `sanctioned_restart.execute_restart`, so a restart cannot launder a contaminated runtime. Apply then executes the sanctioned recovery logic against the **live** process environment — not a copy — and records an audit entry in `console_audit`. A playbook that leaves the binding unchanged reports `performed: false`; `binding_before`, `binding_after`, and `binding_changed` are returned so a no-op cannot read as success. Apply does **not** enforce master parity. Parity is reported by Diagnose ([#610](../master_parity_gate.py)) as evidence for the operator; it is not a precondition of this endpoint. ### 4. Verify (`POST /api/v1/system/recovery/verify`) Re-evaluates control-plane diagnostics post-recovery and **reports** `clean`, `stale_runtime_clean`, `binding_clean`, `binding_classification`, and `contamination_clean`. It reports; it does not assert or block. State is read fresh rather than from the mapping a mutation just wrote. An `unverified_inherited` binding is reported as not clean, because unproven is not clean. --- ## Safety & Governance Principles 1. **No Manual `pkill`**: Direct process killing remains forbidden and is recorded as contamination. 2. **Auditability**: Every recovery preview and execution is logged in the console audit trail. 3. **Master Parity & Dual Control**: High-privilege recovery actions require controller/admin roles and explicit confirmation phrases.