{
  "schemaVersion": 1,
  "summary": {
    "requirementCount": 461,
    "completeCount": 461,
    "incompleteCount": 0,
    "findingCount": 0
  },
  "requirements": [
    {
      "id": "REQ-ADAPTER-ADD-SURFACE-ERRORS",
      "title": "Bug #1: adapter add runs the install-as-first-update via conduct (cli.rs:6963) which on a non-zero exit prints only the exit code and DISCARDS the subprocess stdout/stderr, so the real error is invisible (the failure itself does propagate). Fix: include out.stderr/stdout in the ADAPTER_INSTALL_FAIL message (mirror run_update_post_step). Operator ruling: ALSO run the [update.post] composite step at install-time (today it runs only on explicit adapter update), so an install both surfaces detail and completes the delegated post-step. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #1.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8660
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8689
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8847
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17413
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-FLOOR-ENFORCE",
      "title": "F-5 (REMOTE-TRUTH triage §F-5 + doyle rulings 2026-07-05): BOTH adapter acquisition verbs (spt adapter add + spt adapter update) REFUSE when the installed spt-core is BELOW the adapter's declared [adapter].min_spt_core_version floor — with an F-1 operator refusal naming the installed core, the floor, and the next action (update spt-core first). ROOT: the floor was PARSED + required (manifest.rs) but never compared to the running core — dead enforcement; and the [update].version_check knob that gated it was DOC'D-BUT-DEAD (never read by any production path — a contract lie). RULINGS: RETIRE version_check (drop the manifest field + schema + docs + the cfg(test) literals; a pre-existing manifest still setting it deserializes fine — serde ignores the unknown key, no deny_unknown_fields, so retiring is back-compatible); SEMVER-compare NOT string-compare (the 0.9.0 < 0.25.0 lexical trap); enforce on BOTH verbs; nothing installs / registry untouched on refuse (binds both verbs, no residuals). FIX: (1) a pure spt-runtime version_meets_floor(core, floor) -> bool (numeric per-component: split '.', u64, missing→0, non-numeric→0, first-diff decides, equal-when-zero-padded ⇒ satisfied) — mirrors the CLI version_is_newer parse (same numeric model, different question: freshness=strictly-newer vs floor=at-least). (2) ADD: the gate lives INSIDE registry::register (the choke point) via a register_with_core(core_version) seam register() delegates to with env!(CARGO_PKG_VERSION) — the floor check runs right after the manifest parse, BEFORE any registry write, returning the typed RegistryError::CoreFloor{adapter,core,floor} (Display = the ONE F-1 refusal both verbs surface); nothing recorded on refuse. (3) UPDATE: a PRE-SWAP peek (staged_floor_ok) extracts the staged .spt to a THROWAWAY temp, parses its manifest floor, and refuses BEFORE apply_release_crc_swap mutates the live pointer-mode home — so a refusal (or an unverifiable floor: FAIL-CLOSED) leaves the live install BYTE-UNTOUCHED; register@8932 stays as the defense-in-depth backstop for every other entry path. doyle bind: the register-only gate would let the crc-swap replace the live files with a floor-violating version while the record refuses (record and reality disagree — the exact contract-lie shape this milestone kills), so the pre-swap peek is the only correct answer. Red-first: perri negative repro on ADD (fresh home + synthetic low core + high-floor manifest → CoreFloor refuse, registry untouched) + the UPDATE pre-swap refuse (live home byte-untouched) + a floor-met positive control (0.25.0-on-0.25.0 installs); + version_meets_floor table incl. the 0.9<0.25 trap.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 43
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 114
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 312
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9159
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2166
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 998
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1034
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12711
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12741
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-GH-TRANSPORT",
      "title": "The `gh_release` avenue (and `spt adapter add --release`) gain a fetch `transport`: `https` (current reqwest direct, public), `gh` (shell the pre-authorized `gh` CLI — the private-repo path; `gh` honors OAuth and `GH_TOKEN`, so spt custodies no token), or `auto` (default: prefer `gh` when installed+authed, else HTTPS). `--gh`/`--https` force it on `add`. Additive over the existing fetch path; verify->extract->register downstream is unchanged. (v0.13.2)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 101
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 487
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 589
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 645
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4853
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4875
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4891
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4903
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4932
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5166
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8724
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9465
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9638
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9708
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9734
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11577
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11595
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11791
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11807
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11834
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11861
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-LIVE-UPDATE",
      "title": "An adapter update is live and daemon-coordinated (the adapter analog of brain self-update, ADR-0004): for an endpoint with a running RESIDENT adapter binary (today the `[message-idle-translation-binary]`), the CLI keeps fetch+verify and hands the APPLY to the daemon over IPC, which per affected endpoint (1) STOPS the resident binary -> releases the OS file lock (fixes the Windows 'Access denied (os error 5)' overwrite failure), (2) swaps on disk ONLY files whose CRC differs from the staged archive (unchanged files + their still-running binaries untouched), (3) RE-CLONES the new on-disk manifest into the running `BrainLifecycle` (the in-memory manifest is cached at bringup and otherwise goes stale -> binaries+manifest back on the same page), (4) RESTARTS the resident binary from the new files. An endpoint NOT running -> CLI swaps directly (no lock, no cache). Only the resident class is cycled; ephemeral adapter binaries (Psyche loop, `[digest]` extractor, `[session.*]` runners, hooks) self-heal on next spawn and are excluded. The daemon keeps a per-endpoint registry of resident adapter children. (ADR-0025, v0.13.2)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0025-live-daemon-coordinated-adapter-update.md",
              "line": 3
            },
            {
              "path": "docs/adr/0025-live-daemon-coordinated-adapter-update.md",
              "line": 44
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1096
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1791
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1862
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2495
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2656
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2669
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2796
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4080
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 37
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 106
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 321
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 347
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 455
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 463
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 482
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 269
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 275
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 295
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9131
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9201
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9230
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/live_adapt_translation_swap_e2e.rs",
              "line": 107
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5600
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5643
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5684
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 325
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 356
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 379
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 431
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2686
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2725
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2771
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2805
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2857
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17129
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17298
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17330
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-MULTIPLATFORM-SPT",
      "title": "A `.spt` adapter archive may pack multiple platforms in one signed asset: shared `manifest.toml` + `strings/` at the root, role binaries under per-Rust-target-triple subdirectories (ADR-0016 triple vocabulary, e.g. `x86_64-pc-windows-msvc/`); install/update extracts the shared root plus ONLY `current_platform()`'s triple subdir, flattened into `install_dir` so flat `<install_dir>/<program>` resolution (REQ-INSTALL-11) is unchanged. Name stays `adapter.spt` (plain-tar or gzip, `--asset` optional default); one whole-archive Ed25519 signature over the fat archive (REQ-UPD-9 single-artifact verify). A legacy flat archive (no triple subdirs) extracts as today (free back-compat); a multi-platform archive sets `min_spt_core_version >= 0.13.2` (forward-compat gate, readable before extract); a multi-platform archive missing the recipient's triple -> typed `NoArtifactForPlatform`, never a silent no-op. Large adapters may still split per-platform (single-triple archives via `--asset`, or ADR-0016 update-set machinery). (ADR-0024, v0.13.2)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0024-multi-platform-adapter-spt-packaging.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 240
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5009
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5099
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16964
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17028
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17071
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16899
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16916
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-PROOF-DIR-OVERRIDE",
      "title": "The author-time proof commands (`spt adapter digest-proof`, `spt adapter translate-proof`) gain a `--dir <path>` / `--manifest <file>` override so an author proofs a DEV binary against an on-disk manifest+install dir WITHOUT staging a full extracted GhReleaseManaged install (mirrors digest-proof's `--sample` pointing straight at a file). Fixes perri F-011: a bare-file-added gh_release adapter currently can't be resolved by the *-proof commands ('manifest is not present yet at <dir>'); un-stales the bare-file digest-proof int. (perri F-011, v0.13.x DX)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/patterns.md",
              "line": 346
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 305
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9045
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9057
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9788
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/translate_proof.rs",
              "line": 167
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11696
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-TEMPLATE-KEY-VALIDATION",
      "title": "P-1 core half (WORKER-TRUTH triage): `adapter add`/`adapter update` validate every declared role template — command, cwd, and [env] inject values — against the substitution-key catalog (spt-runtime BASE_KEYS + role-specific overrides) and REFUSE registration naming the offending key + role (fail-fast family of the [strings] pointer validation). Field driver: flynn's psyche died on the RETIRED {psyche_dir} key (adapter psyche_resume carried the old psyche_init cwd shape) — a permanent template config fault must die loudly at registration, not at the Nth per-event psyche turn via the 3-strike budget. The catalog stays the single source (runtime.rs FILL_KEYS — 'a catalog key must have a real fill'); validation reads it, never a second list.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1147
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 381
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 80
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 91
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 101
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 111
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 129
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9188
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 905
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2216
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2231
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2243
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2256
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2272
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2291
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-TRANSLATE-PROOF",
      "title": "`spt adapter translate-proof <adapter> --event <envelope> [--session <id>]` — the author-time EMIT-half proof tool for `[message-idle-translation-binary]` (ADR-0022), symmetric to `spt adapter digest-proof` (REQ-TERM-5). It spawns and feeds the adapter's declared translation binary EXACTLY as the daemon does at idle-delivery — running the REAL `spt_daemon::translation` driver VERBATIM (no protocol reimplementation): `TranslationChild::spawn` the binary, send the `{type:\"init\",endpoint_id,node}` line then the `{type:\"event\",envelope}` line, and read back the emitted `{key}`/`{text}`/`{delay_ms}`/`{commit}` keystroke-command stream — then prints it author-readable (each Key with its `key_to_bytes` rendering, Text quoted, Delay in ms, Commit marker) with counts. It fills the SAME `{id}`→option and `{session_id}`→(--session, else a placeholder) keys into the `--event` envelope the daemon fills at runtime, so an envelope that proofs here feeds faithfully live. EMIT-half ONLY: it proves the binary's spawn+feed+emit contract; it does NOT exercise the daemon's atomic PTY apply / controller-buffering (that stays covered by the W2 inject_control_wedge int gate) — `--help` says so. Exit codes mirror digest-proof: 0 ok, 1 on spawn-fail / zero commands / no-commit-or-output / unparseable, 2 when the adapter declares no `[message-idle-translation-binary]` section. The `TranslationChild` Drop does the bounded no-zombie reap. (v0.13.x)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0022-spt-hosted-idle-delivery-translation-binary.md",
              "line": 73
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9056
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9974
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/translate_proof.rs",
              "line": 54
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13878
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13950
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-UPDATE-INPLACE",
      "title": "Bug #18: spt adapter update fails at re-register with os error 2 because it derives the install dir from the update repo NAME (_github/<safe>) instead of updating in place at the adapter record source_dir; when the adapter repo is intentionally renamed across releases (spt-claude-code to claude-spt, supported), the derived dir is fresh/empty and re-register reads a missing manifest. Fix: adapter update installs and re-registers in place at the registered source_dir and tolerates a changed update repo/URL across a rename. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #18.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8651
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9488
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17374
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-UPDATE-MESSAGE",
      "title": "An adapter manifest may declare `[update].message` — a plain (multi-line) human notice surfaced to stdout, markdown-rendered (the v0.13.0 helpfmt prose path), ONLY when `spt adapter update` actually APPLIES an update (version changed), not on a no-op. Read from the newly-installed manifest; avenue-agnostic (gh_release/delegated/file_pull). No `{key}` substitution. Use: an adapter telling the operator a post-update action, e.g. spt-claude-code's \"run `/reload-plugins` in any ongoing sessions\". (v0.13.2)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 103
            },
            {
              "path": "CONTEXT.md",
              "line": 565
            },
            {
              "path": "docs-site/src/harness-contract/manifest.md",
              "line": 428
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 490
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 574
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9274
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11638
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11653
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-UPDATE-POST",
      "title": "Composite adapter update — an avenue-agnostic `[update.post]` sub-table `{ command, self_verifies }` run AFTER the primary avenue (gh_release/file_pull/delegated) resolves, in the same `spt adapter update` (ADR-0029). Runs UNCONDITIONALLY (even on an adapter version no-op — the post-step's own idempotent check decides). PUBLISHED stdin JSON seam: one line `{adapter_applied, adapter_name, profile_name, version, previous_version, adapter_dir}` (additive keys; post-step ignores unknown). stdout decides the notice: custom text SUPERSEDES [update].message; a reserved sentinel fires the static [update].message; empty = no notice. exit code orthogonal (0 ok / nonzero failed). Precedence: dynamic-stdout > sentinel/manifest-message > nothing. NO [update.post] declared ⇒ today's adapter_applied→[update].message unchanged; post-step FAILS ⇒ loud warning + fall back to adapter_applied→message. FAILURE-ISOLATED: a committed gh_release pull is never rolled back if the post-step fails (independent channels). (v0.16.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 493
            },
            {
              "path": "docs/adr/0029-adapter-update-arc-resolve-not-execute.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 580
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 607
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1117
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9289
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9297
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9308
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9331
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9609
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/adapter_post_step.rs",
              "line": 41
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1446
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11665
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ADAPTER-VERSION-CMD",
      "title": "`spt adapter version <name>` prints a registered adapter's declared version — the EXISTING mandatory `[adapter].version` manifest field (manifest.rs already requires it; NOT a `[strings].version`, NOT `get-string`, no second version source). A new `AdapterCmd::Version{option}` resolves the option's merged view via `registry::resolve_option` like the sibling adapter subcommands and prints `manifest.adapter.version`; an unresolvable option errors (exit 1) the same way. (v0.13.2 W6)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 35
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9021
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9758
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11756
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11767
            }
          ]
        }
      }
    },
    {
      "id": "REQ-API-1",
      "title": "api prefix and adapter_name on every machinery invocation",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 15
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 13
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 791
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 898
            }
          ]
        }
      }
    },
    {
      "id": "REQ-API-2",
      "title": "The api subcommand surface (bind/listen/poll/state/worker/boundary/...)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/history.rs",
              "line": 17
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 20
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 148
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 24
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 41
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 293
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 335
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 414
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 477
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 516
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 17
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 44
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 109
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 123
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 14
            },
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 187
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/history.rs",
              "line": 82
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 328
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1035
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1046
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1286
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1332
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 190
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 288
            }
          ]
        }
      }
    },
    {
      "id": "REQ-API-3",
      "title": "commune/signoff are file-drops, not commands",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 27
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 646
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 261
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 382
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1361
            }
          ]
        }
      }
    },
    {
      "id": "REQ-API-4",
      "title": "api resolves the adapter manifest (+ profile + install dir) from `--adapter name:profile` via the registry when `--manifest` is omitted; `--manifest` becomes an optional OVERRIDE (unregistered / local-dev manifests). Removes the require-both-flags redundancy — a registered adapter's live bringup / digest / capability needs only `--adapter` — and yields the precise install dir (the record's source_dir) rather than the --manifest parent, closing the copy-mode psyche-binary edge (v0.8.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 177
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 539
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 731
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 755
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 779
            }
          ]
        }
      }
    },
    {
      "id": "REQ-API-ENDPOINT-INFO",
      "title": "#7: spt api endpoint-info [<id>] (JSON) lets an endpoint learn its ATTACHED (controlling) node — claude-spt surfaces local + attached node names on UserPromptSubmit so the agent knows whether getting a file to the user needs extra steps (user RC'd in from another machine). spt api * is the harness-contract agent-facing surface (JSON-first, rides perch identity/auth so the bare no-<id> form self-resolves like whoami). Payload (committed DTO, additive-forever): { id, endpoint_type, adapter, local_node:{label,key}, attached_node:{label,key}|null, controlled:bool, project:<current project id>, cwd, subnets:[...] } — attached_node from controller stamps (driven_by remote / self-node when controlled with no remote driver), null when uncontrolled. HARD dependency on #2 + #3 (stamps must be honest first). Adapter-side consumable -> perri release-ping on publish. Naming: chose 'spt api endpoint-info' over alt 'spt endpoint get-info' — api is the agent surface (doc rationale). See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #7.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 812
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 824
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 862
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 886
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 906
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 983
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1015
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ARCH-1",
      "title": "Many small acyclically-layered crates",
      "requiredStages": [
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/lib.rs",
              "line": 18
            },
            {
              "path": "crates/spt-proto/src/lib.rs",
              "line": 12
            },
            {
              "path": "crates/spt-store/src/lib.rs",
              "line": 12
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-ARCH-2",
      "title": "Public SDK surface is spt-proto, spt-runtime, spt-msg",
      "requiredStages": [
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/lib.rs",
              "line": 18
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-ARCH-3",
      "title": "Wire-protocol version independent of crate semver, N-1 compat window",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/version.rs",
              "line": 34
            },
            {
              "path": "crates/spt-proto/src/version.rs",
              "line": 41
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/version.rs",
              "line": 51
            },
            {
              "path": "crates/spt-proto/src/version.rs",
              "line": 71
            },
            {
              "path": "crates/spt-proto/src/version.rs",
              "line": 83
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ARCH-4",
      "title": "Copy-verbatim the commodity layer from the sister project",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 165
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 188
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 208
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 223
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 273
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 334
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 344
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 355
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 366
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 378
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 391
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 402
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 419
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 547
            }
          ]
        }
      }
    },
    {
      "id": "REQ-BIND-HONEST-SELF-STAMP",
      "title": "C2-ROOT (F028, doyle RCA 2026-07-03): the identity-attribution ROOT behind REQ-SESSIONS-LOG-ENDPOINT-ATTRIBUTION — three composing defects let a psyche-hosted SessionStart hook stamp a FOREIGN perch: (1) roster::detect_self_id leg (a) scans the owlery ONE level (roster.rs:107 read_dir(owlery)) so a NESTED psyche perch owlery/<parent>/nested/<id>-psyche can never self-resolve; (2) [session.psyche_init] (claude-spt manifest ~L347) spawns the psyche with NO env_remove + no pinned child identity, so whatever OWL_SESSION_ID/SPT_AGENT_ID reaches the child resolves to a foreign top-level perch; (3) the hook then writes info.json (session_id/pid rebind) + sessions.log on the mis-resolved victim. FIX (spt-core half): (i) identity PINNED at spawn — ManifestRuntime role spawns inject the child's OWN SPT_AGENT_ID=<child perch id> + OWL_SESSION_ID=<child session>, AND detect_self_id enumerates NESTED perches (fix the one-level owlery scan); (ii) BIND HONESTY — a session-start stamp may only write a perch whose resolved id AFFIRMATIVELY matches; never a fallback pick; refuse + loud-skip when unresolved (kin REQ-MSG-CLI-ORIGIN honest-default + #9 ancestry). ADAPTER half = PERRI touchpoint (psyche_init env scrubbing / relies on runtime pinning; hook loses silent fallback-perch behavior) — FLAG doyle BEFORE any manifest move (adapter glue-model rule). See triage C2 fix (i)+(ii).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 452
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 197
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 112
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/bind_honest_cross_perch_e2e.rs",
              "line": 180
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 464
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 377
            }
          ]
        }
      }
    },
    {
      "id": "REQ-BOUNDARY-ROTATION-CREDENTIAL",
      "title": "api boundary's rotation credential is designed, documented, and eventually anchor-proven (ADR-0032): the proof is the DEPARTED session's (prior sid / token) — --to-session-id is payload, never proof; the published surface documents the adapter prior-sid persistence pattern + loud-refusal requirement; the design-true end-state additionally accepts an OS-verified parent_pid-anchor ancestry proof making adapter sid-state optional",
      "requiredStages": [
        "doc"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/api.md",
              "line": 129
            },
            {
              "path": "docs/adr/0032-boundary-rotation-credential.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-BROKER-ATTACH-JOURNAL-RESILIENT",
      "title": "A poisoned EffectJournal mutex or a sick NetHost runtime must NOT permanently brick all future attaches. Bug #16 (URGENT): a live spt-hosted endpoint (eel-a) attach fails with 'brain IPC read deadline elapsed' after a self-update brain-respawn — the broker survives the respawn and one journaled op (dispatch_net_stream_open journal.apply_once + loopback open_stream runtime.block_on nethost.rs:1060) enters a bad state, so every journaled attach silently kills its per-conn reply thread while non-journaled ops keep working. Fix: recover PoisonError via into_inner (effect.rs apply_once, replace the .expect panics) so one panic cannot brick all attaches; bound the loopback open_stream block_on (nethost.rs:1060) like the QUIC bounded_block_on so a sick runtime fails fast with an error frame not an opaque 10s deadline. Reinforces REQ-HAZARD-EFFECT-JOURNAL-PTY-WEDGE. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #16.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 379
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1073
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 689
            }
          ]
        }
      }
    },
    {
      "id": "REQ-BROKER-SCREEN-GRID",
      "title": "Bugs #6 + #12 + #7/#8-artifacts: the broker is a raw-byte pump with no screen model — OutputLog replays the raw ring from seq 0 into a fresh terminal on attach, so an alt-screen TUI (Claude Code) corrupts scrollback (#6) and rc-to-a-pre-running-endpoint garbles (#12 — rc and endpoint run --attach are the SAME client fn, so it is replay content not a client-VT bug). Fix: a server-side VT/grid/screen model (tmux/mosh-style) that maintains authoritative screen + alt/main + cursor and synthesizes a CLEAN current-screen repaint on attach instead of replaying mid-stream ring bytes. Also eliminates residual-cell artifacts on animate/scroll/resize (#7/#8). Operator NON-NEGOTIABLE: accurate PTY representation with zero artifacts. (win32 vterm in the report means this server-side emulator, not ConPTY which is already the backend.) See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #6/#12.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0031-server-side-screen-grid-render-repaint.md",
              "line": 17
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/lib.rs",
              "line": 56
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 213
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 589
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 808
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5300
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 590
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5232
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 873
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 887
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 909
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 928
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 941
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 965
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 975
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 986
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 997
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 1007
            },
            {
              "path": "crates/spt-term/src/screen.rs",
              "line": 1015
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-1",
      "title": "spt endpoint noun namespace: absorbs fork/suspend/wake/shutdown/rename/stop/digest + access (ported 1:1: allow|revoke|open|list, decision 21) + description (ex-resources blurb; bare=show, set=author); merged endpoint list [--local|--subnet <name>] grouped by subnet with SELF pinned, --detail adding the ex-resources yellow-pages blurb projection; bare spt endpoint = the list (M8 decisions 1-2, 25). SUPERSEDED (F-025 item 3): the LISTING SHAPE now lives in REQ-ENDPOINT-LIST-NODE-GROUPED (node-grouped over unique instances, not grouped-by-subnet) + REQ-ENDPOINT-LIST-REST-FILTER (suspended-hidden + --show-all); the `--local` flag was dropped by REQ-ENDPOINT-LIST-MERGE-LOCAL (the list ALWAYS merges local). This REQ owns only the endpoint noun NAMESPACE + parse surface — not the render shape.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 271
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1271
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2687
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13216
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-2",
      "title": "spt daemon noun: run|stop|status (hidden daemon verb becomes daemon run; agent-endpoint shutdown keeps its name under endpoint); daemon status renders the pump heartbeat (last-tick recency) so a half-dead daemon is never rendered implied-healthy (M8 decisions 5, 23)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 421
            },
            {
              "path": "crates/spt-daemon/src/endpoint.rs",
              "line": 97
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 331
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 503
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1378
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3728
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3874
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3943
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 466
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13349
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-3",
      "title": "Agent hot path stays flat across the M8 reorg: send/ring/ready/whoami/how-to unchanged; notify moves to subnet notify while notif stays top-level; breaking renames land clean with no deprecation shims (zero external CLI consumers pre-spt-claude-code) (M8 decisions 3-4, 9)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1265
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13181
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-4",
      "title": "User-facing CLI output is human-readable: DIRECT-USER commands (e.g. adapter update/list/use) render friendly prose instead of raw CODE:RESULT markers — \"claude-spt is up to date (0.2.0).\" not \"ADAPTER_UPDATE_UPTODATE:claude-spt: installed 0.2.0, latest 0.2.0\". Strictly bounded to the direct-user surface: the adapter-PARSED bringup tokens (SEEDED/BOUND/READY/NO_SEED on seed/listen, which adapters grep) stay machine-parseable — humanization is additive (a human line beside the marker, or a --porcelain/--quiet split), never a silent rename of a dual-contract marker. The user-facing bringup composition belongs to the adapter (perri); this REQ owns only the direct-user CLI surface. (v0.9.0)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9092
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-CLI-BROKEN-PIPE-TOLERANT",
      "title": "#10 (F026 micro): `spt <anything> | <pager/Select-First-N>` must not PANIC when stdout closes early. A closed downstream reader mid-print panics with 'failed printing to stdout: The pipe is being closed. (os error 232)' (live repro: `spt daemon status | Select -First N`). Fix: tolerate BrokenPipe process-wide — a write to a closed stdout exits 0 (SIGPIPE-equivalent: a consumer that stops reading is a normal end, not a crash), without leaking a Rust panic + backtrace to the user.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/main.rs",
              "line": 30
            },
            {
              "path": "crates/spt/src/main.rs",
              "line": 44
            },
            {
              "path": "crates/spt/src/main.rs",
              "line": 64
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/main.rs",
              "line": 117
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-HELP-MARKDOWN",
      "title": "`spt --help` (and every subcommand --help) renders the inline Markdown authored in the clap doc-comments as terminal styling, never as literal markers: `**bold**` → ANSI bold, `` `code` `` → ANSI cyan, `[text](url)` → `text`. The markers are STRIPPED either way — a raw `**` or backtick must NEVER reach the user (the operator-reported v0.12.0 defect: help text reads `**ctrl-b**` and stray backticks verbatim). Color/bold escapes are emitted ONLY when the help is going to a real terminal AND color is not suppressed (NO_COLOR unset · CLICOLOR != 0 · CLICOLOR_FORCE forces on); a pipe / redirect / CI / NO_COLOR falls back to strip-only (clean plaintext, zero escapes) so machine-readable help is byte-identical regardless of marker syntax. Pure transform over the clap-rendered help string at the single run()/bare_invocation chokepoint; preserves pre-existing ANSI (CSI sequences passed through untouched), never spans markers across a newline, leaves unmatched/empty markers literal, and does not alter the help layout. (v0.12.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 8
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 131
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 162
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 309
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 345
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 352
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 359
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 366
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 393
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 403
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 413
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 427
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 436
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 444
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-JSON",
      "title": "A global `--json` flag (clap global=true) honored by the READ/STATUS command set: endpoint list/whoami, daemon status, subnet status/show-code, endpoint description/role, adapter list/version, notif list, grant list, access list, shell list, how-to (endpoint digest already has it). Action commands do not honor it. A shared print_json() helper + a coverage TEST asserting every command in the set emits valid JSON (guards against the missing-shared-formatter drift). Output uses explicit per-command output DTOs with committed field names — internal structs are NOT serialized verbatim (their fields would become a public contract; JSON is a consumed wire-parity surface). (v0.16.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 57
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 445
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1203
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1439
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2517
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2568
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2601
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2657
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2693
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2705
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2724
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2732
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2756
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2804
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3947
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3984
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4045
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4409
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4421
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4456
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4474
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6552
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6571
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7194
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7203
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7213
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7264
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7358
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7397
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8368
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8397
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8413
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8452
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8461
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8537
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8619
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8631
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8639
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8931
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9762
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10149
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10160
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10470
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11169
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11179
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11252
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/json_emit.rs",
              "line": 54
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13142
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-OUTPUT-MARKDOWN",
      "title": "Human-prose COMMAND OUTPUT (not just `--help`) renders the inline Markdown authored in its source strings as terminal styling, never literal markers: `` `code` `` → ANSI cyan, `**bold**` → ANSI bold, `[text](url)` → `text`, markers STRIPPED either way. REQ-CLI-HELP-MARKDOWN only hooked the clap `--help` chokepoint, so command output still printed raw Markdown (audit: `spt how-to` topic text showed `# headers`/backticks, `spt subnet`/`subnet status` hint footers showed stray backticks, the daemon-status `not running` line, the `ENDPOINT_RUN_STARTED` attach hint, and the daemon's `SUBNET_DETACHED` startup line — 13 prose surfaces). The same line-bounded pure `helpfmt::render` is applied at each emit site, color-gated by the OUTPUT STREAM's own tty (`stdout_color` for print/println, the new `stderr_color` for eprintln). HARNESS-SAFETY (binding): color is tty-gated, so an adapter (piped / non-tty / NO_COLOR) gets STRIP mode = zero ANSI + markers removed; every dual-contract MACHINE token on a rendered line (`ENDPOINT_RUN_STARTED:`, `NO_SUCH_TOPIC:`, `SUBNET_DETACHED:`) carries NO Markdown markers, so it survives strip byte-intact — the adapter parse is never perturbed. Pure-machine output (the `<EVENT …>` envelope, bringup parse-tokens SEEDED/BOUND/READY/NO_SEED, `--json`, QR) is NEVER routed through the renderer. The one spt-daemon source string (`SUBNET_DETACHED`, the bin-local renderer is unreachable from the daemon crate) is authored marker-free instead. (v0.12.2)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 144
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1991
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4198
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7294
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7420
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8392
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 44
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15859
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 377
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 454
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 477
            },
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 491
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CLI-WIN-VT-ENABLE",
      "title": "A7 (F028, operator, Win10 conhost): ANSI emitted without VT enable → garbled console. Evidence (raw PowerShell 7, Win10 conhost): literal `←[36m` in `endpoint list` + `--help`. ROOT: ENABLE_VIRTUAL_TERMINAL_PROCESSING is enabled ONLY on the rc attach path (rc.rs:746, REQ-RC-WIN-VT-OUTPUT) — plain CLI stdout never enables it, and the color decision doesn't fall back when the console can't render VT. FIX: lift the rc.rs VT-enable into a SHARED startup helper for every colored-output path; if SetConsoleMode fails (or stdout isn't a console), STRIP colors (the ansi_wrap/helpfmt color=false path already exists — plumb the decision, not new rendering). Windows Terminal masks this (VT always on) — TEST on raw conhost. See triage A7.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 61
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/helpfmt.rs",
              "line": 329
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CONSENT-1",
      "title": "Consent grant store: capability x subject-agent x target-node rows, enforced at the target node, subnet-settable (replicates as security material near the trust store), revocable; gated-capability ids (remote-exec, instantiate-anywhere) reserved-but-refusing; v1 consumers are the shell spawn gates (CONTEXT Consent & security gates)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 27
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 75
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 98
            },
            {
              "path": "crates/spt-store/src/grants.rs",
              "line": 82
            },
            {
              "path": "crates/spt-store/src/grants.rs",
              "line": 109
            },
            {
              "path": "crates/spt-store/src/grants.rs",
              "line": 127
            },
            {
              "path": "crates/spt-store/src/grants.rs",
              "line": 142
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11166
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 334
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 380
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 391
            },
            {
              "path": "crates/spt-store/src/grants.rs",
              "line": 165
            },
            {
              "path": "crates/spt-store/src/grants.rs",
              "line": 184
            },
            {
              "path": "crates/spt-store/src/grants.rs",
              "line": 204
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13600
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CONSENT-2",
      "title": "Interactive consent escalation: an ungated high-risk action routes a consent prompt to the user's most-recently-active session; allow-once / allow-always (writes a grant) / deny; pre-consent flags (can_shutdown, shell_wake_spawn_anywhere) author grants via manifest/settings (CONTEXT Consent & security gates)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 140
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 165
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 199
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 241
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 269
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 300
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10957
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11015
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 419
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 436
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 472
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 516
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15031
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15113
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CONSENT-3",
      "title": "Per-capability approval gates (class-keyed): the require_approval enum may ride INDIVIDUAL [shell.capabilities] entries — gating the dangerous ACT, not just the spawn — with an optional class_key scoping the grant qualifier finer than the capability id ((owner endpoint x device class x node); a remembered HID-class attach grant never authorizes a storage-class attach). Reuses the grant store + interactive escalation + tighten-only floor (REQ-CONSENT-1/2 plumbing). Spawn gates govern EXISTENCE; capability gates govern ACTS — an explicitly distinct invariant (CONTEXT:283, ratified 2026-06-11 Gateway grill).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 347
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 124
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 163
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 292
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 733
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 983
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11083
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/shell_actgate_e2e.rs",
              "line": 16
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 1020
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 1067
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1781
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CONTROLLER-LIVENESS-REAP",
      "title": "B-2 (REMOTE-TRUTH triage §B-2, REDUCED @bdc1242): a stale ONLINE+CONTROLLED stamp on a live-session perch self-heals — the info.json driven_by/controlled RECORD is made to match the broker's SINK-TABLE TRUTH. ROOT (persisted-stale-stamp class, doyle Q1): the livehost control reap gates on !has_session (reconcile_hosted_liveness), and a brain-only update KEEPS the session (REQ-UPD-3), so a controller stamp that went stale WHILE the session lived was never re-derived from broker truth. NOT a transport bug: (a) a persisted conn is the REQ-UPD-3 feature; (b) an idle-severed conn eventually EOFs via QUIC keepalive → handle_conn detach (path 1) — and the reason paths 1-3 previously failed to clean up was the B-1 broker floor-lock POISON WEDGE (cleanup panicked under the poisoned lock), now fixed. REDUCTION (doyle, my ground-truth): the prescription was 80% pre-built — converge_perch_stamps (broker.rs, REQ-HAZARD-CONTROL-STAMP-CONVERGENCE) ALREADY converges info.json driven_by/controlled to the broker's controller_by/has_controller on EVERY KIND_SESSIONS poll, and the livehost reconcile already TRIGGERS that poll per tick (query_live_session_endpoints). So NO new IPC query, NO new livehost arm, NO 5th detach path — the ONLY gap is that a controller whose WRITER THREAD died (severed conn: the writer failed a socket write, or a detach dropped by the prior B-1 wedge) still reports controller_by=Some/has_controller=true, so converge keeps the stale stamp. FIX: a broker-side lazy-reap in the KIND_SESSIONS snapshot closure — OutputLog::reap_dead_controller() drops a controller whose _writer.is_finished() BEFORE controller_by/has_controller are read, so the reply + the off-lock converge both see the honest (cleared) state and the stamp clears. LOCK-SAFE: the reap drops the sink in-memory ONLY (no stamp_driven_by → no info.json I/O under the log lock, the KH 7.12/5.16 lock-across-effect discipline); the OFF-lock converge_perch_stamps writes the honest stamp. KH 7.15 held by construction: the reap only ever CLEARS, never latches driven_by; a LIVE (idle, parked-on-rx.recv) controller is is_finished()==false so it is NEVER false-reaped. RESIDUAL (doyle Q2 accepted): a TRULY IDLE severed controller (writer parked on recv, no output, conn not yet EOF'd) stays is_finished()==false and converges only on output-resume / conn-EOF — that harder active-probe case is the RESERVED REQ-HAZARD-DRIVEN-BY-IDLE-REMOTE-EVICT (SessionInfo.controller_by doc), deliberately NOT built here so the reserved seed keeps its scope. Red-first: a dead-writer sink → reap clears it (controller_by honest None → converge clears the stamp); a live-writer sink → UNTOUCHED (no-false-reap control).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 966
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 941
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5356
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5400
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CONV-1",
      "title": "Peer address seeding, both cold starts: durable peer-addrs.json (identity dir) maps peer pubkey → last-known dialable address; the pump's resolver consults it FIRST with id-only discovery fallback on miss or dial failure (a stale addr never strands a peer); written by the pairing ceremony (both sides, from the live connection) and by the pump on successful connect; post-join first sync and post-restart resync converge in seconds, not ~1 min (M8 decisions 14, 20)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 967
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 94
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 345
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 387
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 627
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 670
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 696
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 552
            },
            {
              "path": "crates/spt-store/src/peeraddrs.rs",
              "line": 19
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1271
            },
            {
              "path": "crates/spt-store/src/peeraddrs.rs",
              "line": 108
            },
            {
              "path": "crates/spt-store/src/peeraddrs.rs",
              "line": 134
            },
            {
              "path": "crates/spt-store/src/peeraddrs.rs",
              "line": 144
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CONV-2",
      "title": "Event-driven advertisement: endpoint online/offline transitions (ready-listener start/stop, rest-state transition, perch death) trigger an immediate advertise_local + peer push as a WAKE of the existing pump loop (no second advertisement path — epoch lease + visibility gates ride unchanged); the cadence stays the steady-state floor (M8 decision 15)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 812
            },
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 119
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1024
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1035
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 393
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5908
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5924
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5991
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 897
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1022
            },
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 224
            }
          ]
        }
      }
    },
    {
      "id": "REQ-CRC-SWAP-OLD-DISPLACE",
      "title": "C1 (F028, infra; memory crc-swap-old-litter-brick, RCA'd ENLYZEAM + confirmed systemic): crc_swap `.old`-litter bricks every subsequent adapter update. apply_crc_swap Phase-3 `let _ = remove_file(.old)` (spt-daemon/src/crc_swap.rs:129-133) silently fails whenever ANY pre-update process still image-maps the old binary (NORMAL on a live box — endpoint launch children survive updates). The NEXT update's first commit-op rename(exe->exe.old) = MoveFileExW(REPLACE_EXISTING) must delete the mapped .old -> win32 err 5 -> whole apply fails + rolls back FOREVER, context-free. FIX: (i) DISPLACE not replace — when <target>.old exists, rename it aside to a unique suffix (rename succeeds on mapped files; spt's own updater already does spt.exe.old-<counter>); GC stale .old.* opportunistically. (ii) Wrap swap io errors with op + path (`rename claude-spt.exe -> claude-spt.exe.old: …`). Unit seam exists (crc_swap tests). See triage C1.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 107
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 117
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 131
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 200
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 219
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 248
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 432
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 539
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 589
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 638
            },
            {
              "path": "crates/spt-daemon/src/crc_swap.rs",
              "line": 669
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-1",
      "title": "One per-machine spt-daemon owning all per-machine state",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 235
            },
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 12
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 18
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 691
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 24
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 144
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 161
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 616
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 977
            },
            {
              "path": "crates/spt-daemon/src/relay.rs",
              "line": 15
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 326
            },
            {
              "path": "crates/spt/src/api/live.rs",
              "line": 13
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 485
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 604
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/daemon_lifecycle_real_brain.rs",
              "line": 2
            },
            {
              "path": "crates/spt-daemon/tests/daemon_lifecycle_real_brain.rs",
              "line": 21
            },
            {
              "path": "crates/spt/tests/live_bind_firsthost_e2e.rs",
              "line": 12
            },
            {
              "path": "crates/spt/tests/live_firsthost_e2e.rs",
              "line": 12
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 297
            },
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 305
            },
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 321
            },
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 329
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1540
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2266
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1538
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1575
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1598
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1627
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1675
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1718
            },
            {
              "path": "crates/spt-daemon/src/relay.rs",
              "line": 109
            },
            {
              "path": "crates/spt-daemon/src/relay.rs",
              "line": 135
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 778
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-2",
      "title": "Broker/brain split for seamless self-update",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/TWO-HOST-RUNBOOK.md",
              "line": 375
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 23
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 984
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1025
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1411
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 32
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2531
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3565
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4018
            },
            {
              "path": "crates/spt-daemon/src/codec.rs",
              "line": 11
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 156
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 350
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 13
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 27
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 148
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 644
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 881
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1029
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1134
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1256
            },
            {
              "path": "crates/spt-daemon/src/transport.rs",
              "line": 10
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 17
            },
            {
              "path": "crates/spt-daemon/tests/netbroker.rs",
              "line": 91
            },
            {
              "path": "crates/spt-daemon/tests/netbroker.rs",
              "line": 111
            },
            {
              "path": "crates/spt-daemon/tests/netbroker.rs",
              "line": 191
            },
            {
              "path": "crates/spt-daemon/tests/netbroker.rs",
              "line": 318
            },
            {
              "path": "crates/spt-daemon/tests/netstream.rs",
              "line": 139
            },
            {
              "path": "crates/spt/tests/brain_survive.rs",
              "line": 59
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/codec.rs",
              "line": 62
            },
            {
              "path": "crates/spt-daemon/src/codec.rs",
              "line": 76
            },
            {
              "path": "crates/spt-daemon/src/codec.rs",
              "line": 88
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 617
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1082
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1129
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1146
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1256
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1327
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1395
            },
            {
              "path": "crates/spt-daemon/src/transport.rs",
              "line": 110
            },
            {
              "path": "crates/spt-daemon/tests/resume.rs",
              "line": 147
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-3",
      "title": "Any api invocation auto-starts the daemon if absent",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 14
            },
            {
              "path": "crates/spt-daemon/src/endpoint.rs",
              "line": 11
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 331
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3726
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7123
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7144
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 49
            },
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 477
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1642
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16602
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-4",
      "title": "Honor every KNOWN-HAZARDS invariant",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1233
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1298
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1320
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/daemon_e2e.rs",
              "line": 42
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 441
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2494
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2564
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2594
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2627
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-5",
      "title": "Pump liveness: the peer pump writes a last-tick heartbeat consumed by daemon status / subnet status (decision 23 render legs in REQ-CLI-2/REQ-SUBNET-8); the daemon supervises the pump task — a panic is caught, logged loudly, and the pump restarts with capped backoff (≤5 min), so a 5.9-class death self-heals visibly instead of silently halving the daemon (M8 decision 23; field motivation: hfenduleam 2026-06-07 half-death)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 479
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 777
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 790
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 808
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 849
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1197
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1221
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1247
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-6",
      "title": "Service-aware `daemon start`/`stop`: when an OS service manager has a registered spt-daemon for this user, `spt daemon start` and `spt daemon stop` drive THAT service (so stop doesn't IPC-kill a unit that auto-restart-fights for the broker socket — the kitsubito 2026-06-08 loop). `start` graduates from a `run` alias to a first-class background verb (ensure-up, idempotent, non-blocking); stop routes managed→manager, manual→IPC. Linux=systemd user unit (`systemctl --user start|stop|is-active spt-daemon`, detected by unit-file presence); Windows=no controllable manager (the logon task is boot-only), so start=detached spawn / stop=IPC.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 502
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 533
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 55
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 70
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3806
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3873
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 363
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 374
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 400
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 426
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-7",
      "title": "`daemon run` is foreground-consistent on every platform: the invoking process IS the daemon, blocks until signalled, never auto-detaches or respawns into an invisible background task. The detached/de-elevated background behavior lives ONLY in `start`. Windows: an ELEVATED `daemon run` refuses with guidance (use `start`, or an unelevated shell) instead of respawning detached/de-elevated and vanishing (KH 5.7 preserved — it still never serves elevated).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 552
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 610
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 89
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3727
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 389
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13349
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-8",
      "title": "Internal auto-start prefers the service: `ensure_running` (any spt command's implicit daemon start, REQ-DAEMON-3) routes through the service-aware start path — when a manager has a registered service it starts THAT, never a competing manual `spawn_detached` daemon that would fight the service for the socket.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 452
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 56
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 363
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 400
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-9",
      "title": "Net-bind boot-race resilience: a daemon that comes up net-less (NetHost::start failed — e.g. the systemd unit autostarted before the network/DNS stack was ready, `Failed to create an address lookup service`) must SELF-HEAL — retry the net bring-up in the background with capped backoff and, on success, attach net to the broker + spawn the dispatcher/peer-pump (which today are gated on `net_up` at boot and so never start, leaving the node silently unreachable until a manual restart — kitsubito 2026-06-08). Status surfaces the net-less state honestly (a net-less broker renders as 'no connection', not only a pump-STALLED line with a bogus pre-boot heartbeat age). The installer's autostart unit waits for the network (`Wants=/After=network-online.target`) as belt-and-suspenders.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 282
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2586
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 200
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 351
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 388
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3910
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1247
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16467
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-STATUS-JSON-TRUTH",
      "title": "D2 (F028, perri F-d): `daemon status --json` truth drift. managed_by/managed_active read null in JSON while the HUMAN view says 'managed-by: manual — at-logon task registered' (the two surfaces disagree); and pump staleness (the STALLED diagnosis, B5) is NOT computable from JSON — only a raw pump_heartbeat_ms is emitted, no derived staleness/stalled field. FIX: JSON managed_by/active match the human render, and add a derived pump-staleness/stalled field so B5's condition is machine-observable. See triage D2.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DAEMON-STDERR-PERSIST",
      "title": "W3 (LIFECYCLE-TRUTH, observability): broker + brain stderr tee to a rotating size-capped file under SPT_HOME (e.g. 2x5MB), stamped per generation. ROOT: detached daemon nulls stdio -> the 2026-07-06/07 incident window left ZERO logs (both RCAs ran blind; rigs had to recreate everything). KNOWN-HAZARDS note: never inherit handles (REQ-HAZARD-DETACHED-DAEMON-STDIO) — open the file in-process, don't pipe.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 164
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 23
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 55
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 65
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 135
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3744
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 167
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 178
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 203
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 216
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DAEMON-STOP-LIVE-SESSION-WARN",
      "title": "W3 (LIFECYCLE-TRUTH, promoted old follow-wave seed): `daemon stop` with live hosted sessions warns + requires --force (or names the sessions it will kill) instead of silently killing them.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3836
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3853
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3875
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/attach_wedge_e2e.rs",
              "line": 263
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16445
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DIGEST-CURSOR",
      "title": "`spt endpoint digest` gains incremental turn-end consumption (extends REQ-TERM-4/5): `--last <N>` = the last N TURNS (the digest's natural unit; --last 1 = the latest turn = turn-end output); a per-entry STABLE SOURCE-DERIVED `seq` in the --json output (deterministic from the entry's append position in the source — transcript record index across the session ledger / digest.log index — so a live re-projection yields the same seq for the same committed entry; NOT a window-position index that renumbers on slide); `--after <seq>` = entries newer than seq still in the window (full window + signal if seq predates it, mirroring the version-slide full-refresh). An in-flight (still-growing) entry is flagged `partial: true` with NO stable seq until finalized (consumer reprocesses partial, skips <= seq). Also emit per-entry `ts` where present (seq is the authoritative dedup+cursor key). The digest's agent text is sufficient fidelity (no raw-source mode). BINDING doc-guidance: an adapter's [digest] extractor / api digest-entry MUST classify delivered user-facing messages as turn-opening `input` (equiv to direct PTY user-input), else messaging-driven sessions collapse into a few giant turns and --last/seq lose granularity. (v0.16.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 420
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 437
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 225
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 291
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 433
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 82
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 124
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 68
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 81
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 119
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 129
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 154
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 213
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 347
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 355
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 372
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 423
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 434
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 440
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1459
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1493
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1503
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1543
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1606
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 391
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 405
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 433
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 889
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 940
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 954
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 990
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15233
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15252
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15289
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DIGEST-FETCHER-STRATEGY",
      "title": "Bug #17 (W6b, closes eel-a end-to-end): [digest] gains a `fetcher` strategy mirroring [history]'s locate/normalize split (CONTEXT §history: [digest] mirrors history's two strategies — locate ownership). ROOT: the pre-W6b [digest] had only the locate_normalize analog (spt-core resolves ONE `source` template + pre-reads the file), which CANNOT express a PARTITIONED transcript layout — CC's projects/<munge(cwd)>/<session_id>.jsonl or a date-globbed rollout tree — the exact case CONTEXT already assigns to the adapter. spt-core (correctly) provides NO {project}/slug key (harness-specific cwd munging = the charter violation FIX-A was rejected for). Fix: strategy = fetcher makes the ADAPTER's extractor locate + read + emit normalized records; spt-core runs it bounded (no locate, no pre-read, no stdin) and consumes stdout, feeding only the harness-NEUTRAL inputs it owns — {session_id}, the perch-bound {cwd} (info.json.cwd), and the captured [env] direction=read vars (W6/REQ-DIGEST-PROFILE-ENV) — so the extractor globs the unique {session_id} under {read-var-root}/projects/ with no slug. Keeps locate_normalize (default, back-compat) for a trivial single-file harness. Distinct capability from REQ-DIGEST-PROFILE-ENV (which supplies the root env). See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #17.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/manifest.md",
              "line": 268
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 270
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 274
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 103
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9891
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 242
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1955
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DIGEST-GENERATION-SUPERSEDE",
      "title": "W3 (LIFECYCLE-TRUTH, digest projection truth — flynn filing spt-mobile d0aa3f4): a one-shot `endpoint digest --json` snapshot must return each logical activity row ONCE across a checkpoint/resume, not once per seq-generation. ROOT (spt-core-side, not a consumer bug): the K-session span (digest.rs activity_spanned, SPAN_SESSIONS=5) runs the [digest] extractor per session file and tags each row seq=(ledger_ordinal<<32)|localseq (REQ-DIGEST-CURSOR). A checkpoint/resume (self-/clear + Psyche rebuild) makes the harness REPLAY the prior generation's transcript into the NEW session file, so the ancestor's rows appear in BOTH the ancestor file AND the resume file at the SAME localseq — the span UNIONS them, one logical row surfacing under two full seqs (gen23,local208) + (gen25,local208), identical text/ts/localseq. Consumers dedup by exact seq (the documented authoritative key) so nothing collapses -> duplicate rows in every snapshot / `--after` view (`--follow from:0` is CLEAN — it reads current-generation only; the SPAN is the sole culprit). The trigger cannot disambiguate: `api boundary clear` records SessionTrigger::Clear for BOTH a fresh /clear (disjoint) and a carry-forward checkpoint (reporting.rs:94) — so a structural skip-ancestor needs new boundary metadata + adapter cooperation, deferred. FIX (doyle ruling — flynn Option 1 Supersede, projection-local, source-independent): within the span, collapse cross-generation replay dupes — an Activity record from an OLDER ordinal is dropped when an identical logical record (role, ts, text, tool) exists under a NEWER ordinal; keep the NEWEST-ordinal occurrence so the surviving seq is the live generation (snapshot + follow agree on seq). Cross-generation ONLY (never dedup within one ordinal — a session cannot replay itself; identical within-gen rows are real). Supersede runs on the raw span items BEFORE the window fold (project_timeline) so window_turns counts real turns, not phantoms; and a boundary divider adjacent to a now-fully-superseded ancestor is not left orphaned. Context entries (REQ-TERM-7, single digest.log) are not per-session-spanned -> untouched. Int = a two-session span rig where session B's extracted lines are a superset replay of A (same ts/text at same localseq) + B's own new tail: RED-first (pre-fix shows every A row twice); post-fix each logical row appears ONCE under B's generation, B's tail intact, the /clear boundary marker preserved when A retains rows.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 191
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 325
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 351
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/two_origin_spanning.rs",
              "line": 190
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 682
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 714
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 727
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 746
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DIGEST-PROFILE-ENV",
      "title": "Bug #17: spt endpoint digest returns NO_DIGEST for a ccs-profile endpoint (claude-spt:ccs) though [digest] is wired and the transcript exists — under .ccs (CLAUDE_CONFIG_DIR relocation) not .claude. The on-demand digest runs the extractor in the daemon context WITHOUT the endpoint profile transcript-location env, so the env-aware resolver cannot find the relocated transcript. Fix: propagate/persist the endpoint profile transcript-location env (e.g. the ccs CLAUDE_CONFIG_DIR) to the on-demand digest extractor so a profile-relocated transcript resolves; confirm the exact extractor verdict via spt adapter digest-proof. Ownership spt-core (digest env/profile propagation), possibly with a claude-spt extractor-resolver assist. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #17.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 209
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 295
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 264
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 318
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 342
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 369
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 290
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9882
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1027
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1058
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1215
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 689
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DOC-DELIVERY-VOCAB",
      "title": "W6 (LIFECYCLE-TRUTH, docs — remaining flynn/perri gaps folded): publish the full send-outcome vocabulary (SENT / SENT(WAN) / QUEUED window semantics / DEFERRED / NO_PERCH), digest --json row schema, api poll auth + MAC-stamp prefix, remaining --json shapes checklist (seed #3). Public docs use VERSION numbers, never wave codes; docs-publish drift gate applies.",
      "requiredStages": [
        "doc"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/messaging/overview.md",
              "line": 55
            },
            {
              "path": "docs-site/src/reference/json-shapes.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DOC-ECHO-COMMUNE-CONTRACT",
      "title": "W6 (LIFECYCLE-TRUTH, docs — this gap cost a full outage night, priority slot): publish the [session.echo_commune] I/O contract on the docs-site: key catalog core fills; core does NOT stdin-feed [history] (field-proven); self-locate guidance incl. CLAUDE_CONFIG_DIR / read_env; drop-file protocol (single-writer, ingest-deletes, resolver semantics from W1); stdout ingestion expectations. Public docs use VERSION numbers, never wave codes; docs-publish drift gate applies.",
      "requiredStages": [
        "doc"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/echo-commune.md",
              "line": 20
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DOC-ENDPOINT-DROP-RESOLUTION",
      "title": "D1 (F028, perri F-c; docs/truth): SI-1's resolution rule — a RELATIVE watched drop dir resolves against the ENDPOINT's cwd, never the daemon's (KH 7.28, shipped v0.22.0) — is documented NOWHERE public. Add it to harness-contract/manifest.md + the manifest schema field descriptions so an adapter author knows a relative commune_dir/signoff_dir is endpoint-resolved. docs-drift gate applies. See triage D1.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DOCS-1",
      "title": "Dual-audience docs (human + AI dev-agent), markdown once / two depths",
      "requiredStages": [
        "doc",
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/index.md",
              "line": 50
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": ".github/workflows/docs-publish.yml",
              "line": 12
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 14
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DOCS-2",
      "title": "Sub-10-minute runnable killer quickstart per audience",
      "requiredStages": [
        "doc",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/integration-checklist.md",
              "line": 3
            },
            {
              "path": "docs-site/src/quickstart/adapter.md",
              "line": 3
            },
            {
              "path": "docs-site/src/quickstart/messaging.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/quickstart_e2e.rs",
              "line": 14
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DOCS-3",
      "title": "Diátaxis structure; one canonical way to do X",
      "requiredStages": [
        "doc"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/index.md",
              "line": 42
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DOCS-4",
      "title": "Agent-consumable layer (llms.txt, manifest schema, MCP, CLI help)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/DOCS-STRATEGY.md",
              "line": 35
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 905
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 15
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2109
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DOCS-5",
      "title": "Anti-drift: rustdoc/schema/exports/CLI-help generated + CI-checked",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 906
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 114
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": ".github/workflows/ci.yml",
              "line": 198
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2146
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-DOCS-6",
      "title": "spt how-to <topic>: in-binary task-oriented agent instructions (anti-drift; quickstart prompts point agents at it)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/quickstart/messaging.md",
              "line": 4
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8363
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/quickstart_e2e.rs",
              "line": 39
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16629
            }
          ]
        }
      }
    },
    {
      "id": "REQ-DOCS-NO-INTERNAL-CODES",
      "title": "Public CLI --help (the clap `///` doc-comments) and the generated `docs-site/src/cli/reference.md` MUST NOT contain internal tracker/decision codes — `REQ-*`, `F-###`, `M#-W#`, `ADR-####`. They are meaningless to an end user reading --help and ship to GH-Pages. A CI-gated scan (the `xtask check` docs gate) fails on any such token in the GENERATED reference.md (which by construction contains only clap help, so rustdoc `///` on fns/structs is OUT of scope and keeps its REQ/ADR cross-refs). Substance is kept; codes are rewritten to plain language. (v0.13.2 W6)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/DOCS-STRATEGY.md",
              "line": 59
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/xtask/src/main.rs",
              "line": 223
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 277
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/xtask/src/main.rs",
              "line": 1488
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 1509
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ECHO-DROP-DIR-RESOLVE",
      "title": "W1 (LIFECYCLE-TRUTH): fire_echo resolves the manifest commune_dir through the SAME resolver its siblings use before any write. ROOT (pinned): fire_echo (spt-daemon lifecycle.rs:790) passes the RAW manifest commune_dir into run_echo_commune -> echo.rs:115-117 create_dir_all+join; a relative `.claude` under the WMI-launched daemon's System32 cwd = os error 5 deterministic (two live psyches stamped FAILED on it). Siblings already resolve correctly (ingest ~:583, psyche_drop_file :1072 via resolve_endpoint_drop_dir(raw, cwd)). FIX: fire_echo routes through resolve_endpoint_drop_dir; relative-with-no-cwd = SKIP LOUD (stderr), never a raw relative write — kills the latent-worse variant where a writable daemon cwd writes the drop to a WRONG dir silently (echo communes lost, no error). Hardening riders (same touch, no separate REQ): bounded EACCES retry on the drop write; echo claude spawn gets explicit cwd = endpoint cwd (perri ask).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 268
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 842
            },
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 96
            },
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 146
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 665
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 725
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2064
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2118
            },
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 280
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1100
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EFFECTIVE-INSTANCE-STATE",
      "title": "A-1 (REMOTE-TRUTH triage §A + ADR-0033 §Decision): the effective instance state of a perch is DERIVED through ONE shared function — liveness discriminates warm/cold, stored rest intent refines within warm, absent intent NEVER defaults active. ROOT (certain): resting::apply_event derived its `from` off the stored rest_state field ALONE (resting.rs:225, `unwrap_or(RestState::Active)`) — a cold perch (offline) with no intent answered `from=Active`, so a Wake event found it 'already in target state' and returned Ok(None) = the field NO_EDGE-on-a-definitely-suspended-endpoint bug (the banked F-028 rest_state-void seed). advertised_status (registryhost.rs:821) ALREADY derived correctly (is_perch_alive→intent-refined / is_perch_unbound→Dormant / cold→Suspended) — the two readers disagreed. FIX (Q1 shared derivation, hazard-class): a pure `effective_rest_state(alive, unbound, intent) -> RestState` mirroring advertised_status, consumed by BOTH advertised_status (mapped RestState→Status, behavior identical) AND apply_event's `from` (real is_perch_alive/is_perch_unbound reads); void + cold ⇒ Suspended. Bonus: kills the spurious active→suspend echo a cold+void perch used to fire (on_rest_edge on a dead driver). Red-first: perch status=offline + no rest_state → daemon_rest_event(Wake) yields from=Suspended→to=Active EdgeReport, not Ok(None).",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 598
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 821
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 224
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 279
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 900
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 934
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 974
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ELEVATE-1",
      "title": "Cross-platform self-elevating re-launch for privilege-gated commands: a pure decision seam `decide_elevation_path(os, elevation, interactive_tty, has_display, has_pkexec, has_term_emulator) -> ElevatePath{AlreadyElevated, InlineSudo, UacWindow, Pkexec, TerminalEmulator, PrintHint}` selecting how to re-acquire privilege, and the per-OS impure launchers it dispatches — Windows UAC console (ShellExecuteW `runas` on the abs-exe + verbatim argv; the elevated child does the work, prints 'You can close this window', and pauses for a keypress; the original prints 'Elevated terminal launched…' and exits 0; NEVER pipes the child's stdout back across the privilege boundary), Linux desktop pkexec (preferred, native polkit GUI auth) else x-terminal-emulator -e sudo (fallback list x-terminal-emulator→gnome-terminal→konsole→xterm), the existing interactive-TTY inline sudo, and the headless/no-path floor that prints the absolute-path command. Reused by every gated command (not subnet-specific). Generalizes should_auto_elevate.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 750
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6410
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6455
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6517
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 92
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 148
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 442
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 460
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-LIST-MERGE-LOCAL",
      "title": "`spt endpoint list` always merges this node's LOCAL (unadvertised) perches into the view; the `--local` flag is REMOVED (operator decision 2026-06-17). Rationale: `spt whoami` is a thin alias of `endpoint list` — a just-online agent running `whoami` must see its OWN perch, or it gets an omitted-self view ('chaos'). FIX: drop the `--local` flag + its `--detail` conflict test + the v0.10.0 REQ-PICKER-5 hint line (cli.rs:1678) + cmd_list_local; the bare list merges local perches into the subnet view; fix the whoami alias path accordingly. Run `cargo run -p xtask -- gen` (docs-drift, DEFAULT target). (v0.12.1)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 777
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2688
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2964
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3423
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12404
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13241
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-LIST-NODE-GROUPED",
      "title": "spt endpoint list is node-grouped over unique INSTANCES, not subnet-grouped over duplicated rows: one row per (id,node) instance — subnet duplication collapsed (ADR-0006 §1: subnet is never an identity axis), freshest-epoch wins a cross-subnet status disagreement (the resolve_among twin rule) — grouped under 'This node: <label>' (cyan; local roster is the status truth, advertised-status vocabulary, corrupt = suspended + corrupt annotation) then remote nodes alphabetical (node name orange 38;5;208, the legacy $LIVE orange), each node carrying a light-gray 'Shared subnets:' line (subnets among our memberships where that node gossips any visible row; per-instance subnet detail stays in --json/--detail), instance rows [id, endpoint_type, glyph, status] (endpoint_type threaded from Instance.endpoint_type through ResourceRow — additive, pre-field rows render '-'), per-node 'Total:' lines with NO grand total (the stderr ENDPOINTS:<n> line is REMOVED — it counted subnet rows, so the same instance in N subnets counted N times), SELF pin kept first with a '(self @ <node>)' marker (REQ-WHOAMI-1 alias; self also appears as a This-node row so the node total stays honest), remote nodes with zero visible instances skipped, --subnet narrows the union to that subnet's view, --json DTO structure UNCHANGED (committed surface; gains only an additive endpoint_type field). Grill-with-docs ruling 2026-07-02 (operator + doyle); sibling of REQ-PICKER-NODE-GROUPING (the picker half of the same dedup law).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 519
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 526
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 602
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 604
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2744
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2865
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2988
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3060
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3075
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3160
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3198
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3269
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3422
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1913
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12104
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12280
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12311
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12334
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12352
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12552
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13043
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-LIST-NODE-IDENT",
      "title": "Bug #5: spt endpoint list local section header is the hardcoded literal LOCAL (this node) (render_local_section cli.rs:4359). Change to 'This node: <node-id>' using the existing node-ident idiom (os_hostname + nodeid public-key prefix, cli.rs:5531 — factor a node_ident_display helper); compute in the impure print_local_section, pass into the pure renderer. Update the two test assertions (cli.rs:10711/10716). See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #5.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2913
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3424
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5961
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12404
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-LIST-PALETTE",
      "title": "Bugs #11 + #15 (display): spt endpoint list renders status as plain text while the picker turns the same ResourceRow into the W5 colored EpDisplay palette. Fix: extract one shared ResourceRow-to-EpDisplay builder + make the picker display enums/helpers public, and have endpoint list render the same colored status squares (via helpfmt stdout_color, not ratatui Span). This also fixes #15 — a lone warm detached instance renders as its online flavor (Dormant maps to online) instead of leaking the bare word Dormant through the text-only list (no resting.rs/CONTEXT model change; operator ruling display-only). Couples REQ-PICKER-NODE-GROUPING (both edit subnet_rows — sequence the shared-builder extraction first). See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #11/#15.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3270
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 558
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12104
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1752
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-LIST-PROJECT-COL",
      "title": "#8: spt endpoint list gains a second column <project>/ (the endpoint's LATEST project) -> 4 columns total: id / <project>/ / type / status. Local rows: head of REQ-PICKER-PROJECT-HISTORY-TRUTH (sessions.log-derived, owlery-excluded). Remote rows: head of REQ-GOSSIP-ADAPTER-PROJECTS recent_projects. Project IDs only + #4 disambiguation; '-' when unknown (pre-field remote rows). Extends the v0.21.0 node-grouped renderer (format_instance_rows — additive column, alignment char-width-safe). --json: additive project field on the row DTO (skip-if-none, N-1 safe). Depends on #1 + #4. See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #8.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2750
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2767
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2867
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2880
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2974
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3053
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3139
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3176
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 461
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12172
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12209
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12231
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-LIST-RENDER-POLISH",
      "title": "A6 (F028, operator, 4 asks): `spt endpoint list` render polish. (a) the 'Shared subnets' line is NOT dim — LIGHT_GRAY = \"37\" (cli.rs:3019) is standard-palette WHITE, indistinguishable from row text; use SGR 90 (bright-black/gray) for the dim intent. (b) the `Total:` line takes the same dim color. (c) move the status glyph ADJACENT to the endpoint name (operator: 'right behind the endpoint name'), mirroring the picker's glyph-beside-name presentation (today the glyph sits at the end next to the status word). (d) color the status WORD like the picker TUI (green ONLINE / gray OFFLINE / blue when driven, matching picker glyph semantics). All in render_node_grouped/render_instance_row (cli.rs ~3000s); pure render with an injected color decision — unit-testable off a tty. See triage A6.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3399
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3405
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12157
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12540
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-LIST-REST-FILTER",
      "title": "spt endpoint list hides SUSPENDED instances by default; a new --show-all flag reveals them. Status-first row ordering with fixed precedence ONLINE > CONTROLLED > UNBOUND > SUSPENDED (when shown) > corrupt last, alphabetical by id within each band. Two invariants: (1) CORRUPT rows ALWAYS render regardless of filters — corrupt is a record condition demanding operator action (purge/re-mint), not resting clutter; hiding it would re-create counter-39 bug #3 (cross-ref REQ-HAZARD-CORRUPT-PERCH-COHERENCE, CONTEXT.md instance-state _Also avoid_); (2) the per-node Total line DISCLOSES the filter — 'Total: N (+M suspended hidden)' — so nothing silently vanishes. Registry-Offline rows stay excluded by projection law (resource_projection skips unroutable; unchanged). Grill-with-docs ruling 2026-07-02 (operator + doyle).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3353
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3375
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3405
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12478
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12503
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12531
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12584
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-PURGE",
      "title": "`spt endpoint purge <id>` fully removes an endpoint AND every record keyed on it — the formal teardown devs/CI need for clean test setup/reset. NOT consent-gated (a local dev/test op — no peer consent). OFFLINE-ONLY: refuses while the endpoint is online / daemon-hosted (deleting records out from under a live host risks the daemon re-creating or re-hosting mid-purge); `--force` STOPS it first (endpoint stop → wait for the daemon reconcile to un-host + reap the Psyche) THEN purges. Confirms interactively unless `--yes` (the CI path). Refuses purging the CALLER's OWN running id. All LOCAL — purge reaches only THIS node's records; a remote endpoint's records can't be touched, and its subnet-registry rows decay via the epoch-lease eviction (REQ-HAZARD-REGISTRY-DECAY). Removes: (1) the perch dir TREE recursively — owlery/<id>/ incl every nested {id}-psyche / {id}-w* / shells child (info.json, ready marker, sessions.log ledger, spool.db, inbox, .idle/.more-done sentinels, auth token); (2) the registry address (registry::unregister_address); (3) the context store — ContextStore::remove_endpoint(id): the a-<id> branch+worktree + the <id>/ rows from every p-<project> branch (the same fn `fork --delete-source` already uses); (4) node-local trust rows keyed on the id — access.json + visibility.json. Reuse-heavy: it is `fork --delete-source` generalized (recursive perch remove + unregister + remove_endpoint) + the trust-record cleanup; `endpoint rename` already enumerates the same record set + uses the same offline-only gate. (v0.12.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 191
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 105
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11368
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11962
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11933
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-STOP-OFFLINE",
      "title": "H3: `spt endpoint stop <id>` marks the endpoint OFFLINE (alive=false), not merely de-readied. cmd_stop (cli.rs:2994-3010) removes the ready marker + unregisters the address but does NOT set status offline, so a stopped daemon-hosted endpoint still reports alive=true (status=online latch). FIX: add set_status(perch, STATUS_OFFLINE) to cmd_stop — folds with B2 (same setter). Unit: stop → is_perch_alive=false / alive=false. (v0.12.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5986
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11909
            }
          ]
        }
      }
    },
    {
      "id": "REQ-ENDPOINT-UNBOUND-ATTACH",
      "title": "An spt-hosted endpoint is ATTACHABLE between spawn and bind: gate the attach on the broker SESSION being attachable (session+PTY+OutputLog exist at spawn, before bind), not on perch STATUS_ONLINE (bind). cmd_endpoint_run + `spt rc <id>` attach to a live broker session regardless of perch status (headless bringups too; lets an operator clear a bind-gating prompt) -- replaces await_endpoint_online; preserves REQ-HAZARD-RC-ATTACH-ONLINE-RACE's 'no attach before a session' intent at the earlier session-exists point; source = the broker sessions map (ADR-0025 W3a); local-only. New on-disk status STATUS_UNBOUND (spawn->unbound, bind->online, death->offline); lifecycle reuses the existing exit-waiter/reconcile (session death->offline); unbound is attachable but NOT message-addressable (messaging stays online/bound-gated). EpDisplay gains Unbound = HOLLOW (+ hollow-controlled variant) -- amber=HarnessOnly is taken + means not-controllable (the opposite of attachable). (ADR-0027)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 643
            },
            {
              "path": "docs/adr/0027-unbound-endpoint-state-and-attach-on-session.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 719
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 726
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 45
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 116
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 160
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2357
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2378
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3076
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 186
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 221
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 885
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 898
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1095
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1147
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 647
            },
            {
              "path": "crates/spt/tests/multi_subnet_bringup_e2e.rs",
              "line": 347
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1394
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 287
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 325
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12405
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13422
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 616
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2064
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 794
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-1",
      "title": "Day-one endpoint types; open type system",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 77
            },
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 94
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 161
            },
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 178
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-2",
      "title": "Agent endpoints vs Shells distinction in the type model",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 114
            },
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 131
            },
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 138
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 190
            },
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 208
            },
            {
              "path": "crates/spt-proto/src/endpoint.rs",
              "line": 221
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-3",
      "title": "Messaging payloads carry typed operation commands + file blobs",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 31
            },
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 49
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 156
            },
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 164
            },
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 177
            },
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 200
            },
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 216
            },
            {
              "path": "crates/spt-proto/src/payload.rs",
              "line": 233
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-4",
      "title": "PresenceChannel broker endpoint (seam day-one)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 831
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1433
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4035
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 151
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 891
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1045
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 280
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 467
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1291
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1175
            },
            {
              "path": "crates/spt-daemon/tests/presence.rs",
              "line": 76
            },
            {
              "path": "crates/spt-daemon/tests/presence.rs",
              "line": 147
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-5",
      "title": "Concrete shell instantiation model: spawn-mints-instance (vs relink/online), registered-on-node permission + broadcast-is-discovery, per-shell require_approval gate, max_instances_per_owner + over_cap, instance aliasing, discovery scope",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 367
            },
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 18
            },
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 63
            },
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 92
            },
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 167
            },
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 179
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 114
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 22
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 145
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 174
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 196
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 221
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 247
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 270
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 142
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10145
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10301
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10467
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11014
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/notify_shell_e2e.rs",
              "line": 16
            },
            {
              "path": "crates/spt/tests/shell_e2e.rs",
              "line": 15
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 246
            },
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 306
            },
            {
              "path": "crates/spt-daemon/src/shelldisc.rs",
              "line": 369
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 286
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 338
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1109
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14159
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14312
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14910
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15026
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-6",
      "title": "Gateway type acceptance: a Gateway-typed perch binds (api bind --type, open type system — un-hardcode the live_agent default), advertises/addressable like any endpoint, owns shells (owner validation not agent-family-gated), subscribes to digests, and is the user-msg identity gate's user-backed origin (REQ-MSG-5); in-tree mock-gateway fixture (R-DOCS-2 pattern, no downstream adapter code). Cross-node WAN Gateway-origin (registry endpoint_type trust) tracked by REQ-MSG-6",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 255
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 230
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/gateway_e2e.rs",
              "line": 18
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 558
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 1070
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-7",
      "title": "Durable live-role.md: a per-agent broad-purpose statement in tracked/agents/<id>/ beside live-context.md (replicates with the mind on the same a-<id> branch); renders FIRST at start-transition context injection (role -> live-context -> project-context); SOLE writer `spt endpoint role --overwrite <file>` — mechanical no-automated-writer guarantee (echo-commune ingest / signoff / Psyche reconcile structurally exclude it). The user-backed-origin hard gate on the writer is a deferred later tightening (rides the user-msg identity plumbing)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 540
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 506
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 56
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 81
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 166
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2598
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 624
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 285
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 166
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12877
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12904
            }
          ]
        }
      }
    },
    {
      "id": "REQ-EP-8",
      "title": "AlwaysOnEndpoint: a resident, addressable, mindless endpoint whose adapter binary the daemon supervises continuously — register-triggered by an adapter-option's `[always-on]` manifest section, one supervised binary per `<adapter>[:profile]`, running independent of agent liveness. It self-manages its `#`-addressed channel endpoints via the existing `api bind` (one connection fronts many). The SECOND class of spt-core-boot-launched third-party binary (after the shell wake-watcher); supervision reuses the wake-watcher scaffolding (backoff / give-up latch / one-per-instance lock / orphan-kill / brain-side reconcile) MINUS the offline-only flip — always online, never resting (no dormant/suspended states). Two-way: agents message it; it may call `endpoint wake <id>`, target-side authorized (REQ-INST-3/6 wake resolution + access whitelist + shell_wake_spawn_anywhere — no caller-ownership gate). First consumer downstream: spt-discord.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0023-always-on-endpoints-resident-supervised-binary-sigil-addressing.md",
              "line": 5
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-EP-9",
      "title": "`#` always-on address sigil: a reserved LEADING sigil marking an AlwaysOnEndpoint, extending the REQ-INST-10 grammar to `[subnet:]#id[@node]`. Mandatory + bijective — `#name` ⟺ always-on endpoint, bare `name` ⟺ agent endpoint — so the router resolves endpoint class from the address alone, before any registry lookup. Sits ABOVE REQ-HAZARD-ID-CHARSET: the address parser strips the single leading `#` before id validation, so the bare/stored id stays charset-clean and a mid-id `#` remains rejected (the charset contract is unchanged).",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0023-always-on-endpoints-resident-supervised-binary-sigil-addressing.md",
              "line": 5
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-FRONT-1",
      "title": "Day-one launcher/manager frontend (list/launch/attach/init)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-GOSSIP-ADAPTER-PROJECTS",
      "title": "#4: remote endpoint details (harness + project history) are gossiped, not faked. Today from_resource_row (crates/spt/src/picker/model.rs:340) hardcodes project_history=Vec::new() for every remote row and passes adapter_profile=row.resources (the blurb masquerading as the harness), and Instance/ResourceRow (crates/spt-net/src/net/registry.rs:457) carry no adapter field and no project list. Fix: additive gossip fields N-1-safe exactly like endpoint_type — Instance.adapter (composite <adapter>[:profile]) + Instance.recent_projects (bounded, newest-first, project IDs only) -> thread to ResourceRow -> from_resource_row stops faking. Pre-field remote rows render '-'. Project IDs only + REQ-PICKER-PROJECT-HISTORY-TRUTH's disambiguation. See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #4.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 460
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 495
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 864
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 201
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 210
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 222
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 531
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 536
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 541
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 609
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 590
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 594
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 606
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 850
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1071
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1223
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1949
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1919
            }
          ]
        }
      }
    },
    {
      "id": "REQ-GOSSIP-CONTROLLED-ANY",
      "title": "Bug #3: a locally-controlled endpoint gossips controller_node = None so remote viewers show it free to control. Root: driven_by is stamped Some(node) only for a REMOTE WAN attach (attach.rs:337); a local controller is by=None by design (broker.rs:1750, KH 7.15 — a local-only controller must not latch driven_by). Fix: broker stamps a SEPARATE any-controller datum (true/Some(host) for a local OR remote controller) alongside stamp_driven_by, and advertise_local gossips Instance controller_node from it, leaving the remote-only driven_by untouched (do not trip REQ-HAZARD-DRIVEN-BY-SELFHEAL). node-refresh is NOT the fix (data is absent at source). See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #3.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1267
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 443
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 840
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 392
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1112
            }
          ]
        }
      }
    },
    {
      "id": "REQ-GOSSIP-CONTROLLED-CROSS-NODE",
      "title": "B7 (F028, operator, cross-node): a remote endpoint's CONTROLLED state is not rendered. Evidence: ball-b ONLINE + CONTROLLED on ENLYZEAM (local view), but HFENDULEAM renders remote ball-b as plain ONLINE (both 0.22.0). The F-026 #4 gossiped any-controller datum (REQ-GOSSIP-ADAPTER-PROJECTS controlled bool) either isn't SENT for the locally-controlled case, isn't APPLIED on the receiving row, or DECAYS. Local leg confirmed fine (sibling hall-b renders blue-glyph correctly); the gap is the REMOTE leg. perri's validation had this ENV-BLOCKED — two live nodes now available to RCA. FIX: RCA sender-side (is controlled gossiped when locally-controlled?) / receiver-render (does from_resource_row surface it?) / decay, then lock with a cross-node int. See triage B7.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-ADAPTER-APPLY-SILENT-NOOP",
      "title": "A DELEGATED live adapter apply MUST NEVER report success without performing the swap, and the live-update seam MUST use ONE parent-aware adapter matcher across all its comparators. TWO defects made the field repro (BUILD-F015B-APPLYMATCH: `--adapter cc:ccs` live update silently no-ops): (D1, matcher skew) the broker's dispatch_adapter_apply filtered sessions by EXACT `s.adapter == req.adapter`, but a `--adapter <adapter>:<profile>` endpoint stores the COMPOSITE `cc:ccs` while the apply carries the PARENT record name `cc` — so every :profile endpoint fell out to affected=[]; select_endpoints_running_adapter had the same `adp == adapter` skew, while the CLI live-gate (adapter_has_live_endpoint) already parent-matched — divergent rules on ONE seam. (D2, silent success) the affected.is_empty() branch replied KIND_APPLIED and RETURNED WITHOUT SWAPPING; once the CLI delegates the apply there is no CLI-side fallback swap, so success-without-swap = the update never lands (re-register re-reads the OLD manifest, version-of-truth honestly says old). FIX: (1) ONE shared spt_runtime::profile::adapter_parent_matches(session_adapter, parent) used by the live-gate + broker apply-filter + select_endpoints_running_adapter (no exact `==` against a record name at any live-update seam); (2) the daemon owns the whole apply once delegated — the CRC swap runs UNCONDITIONALLY (terminate/restart loops no-op when nothing is resident), KIND_APPLIED reported ONLY after a real swap. (F015B, ADR-0025 amendment)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 528
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 698
            },
            {
              "path": "docs/adr/0025-live-daemon-coordinated-adapter-update.md",
              "line": 59
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4109
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 70
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/live_adapt_translation_swap_e2e.rs",
              "line": 416
            },
            {
              "path": "crates/spt/tests/live_adapt_translation_swap_e2e.rs",
              "line": 557
            },
            {
              "path": "crates/spt/tests/live_adapt_translation_swap_e2e.rs",
              "line": 816
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5601
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 473
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ADAPTER-PROFILE-STAMP-CLOBBER",
      "title": "A-4 (F029, operator regression): the picker/confirm views drop an endpoint's adapter `:profile` (showed `claude-spt` where `claude-spt:ccs` was created). ROOT: stamp_creation_fields (spt-store/home.rs) gave the incoming BIND-TIME adapter value UNCONDITIONAL precedence (`rec.adapter = adapter.map(...).or_else(prior)`), but a hook bind resolves the adapter ADAPTER-AGNOSTICALLY (ADR-0021: a binary basename → the BARE parent, profile unknowable), so the first hook bind rewrote the richer `claude-spt:ccs` → `claude-spt`. (F-028's establish_perch self-heal widened how often this re-stamps; the precedence is the root.) FIX: profile-preserving precedence — when the incoming adapter is exactly the PARENT of the prior's `parent:profile` composite, KEEP the prior; replace only on a genuinely different adapter (or a different explicit profile). Paid-for field bug → hazard. See triage A-4.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 149
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/bind_adapter_profile_persist_e2e.rs",
              "line": 173
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 424
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ATOMIC-TMP-COLLISION",
      "title": "Concurrent atomic writers to the same target must not share a tmp name (5.15): a fixed tmp sibling makes one writer's rename consume the other's staged file (os-error-2 loser)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 271
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 116
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 276
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ATTACH-WEDGE",
      "title": "A legitimately dead PTY child (real crash/kill) + an undrained operator pump must NOT wedge the broker for all other clients. ROOT (v0.12.0 real-harness defect): loopback attach output is a blocking write_all into a bounded 64KB tokio duplex (nethost.rs:1040,1090); when the operator's rc pump stops draining (tab closed) the buffer fills and write_all blocks forever (the 'loopback never hangs' assumption at nethost.rs:1103 is false), parking a worker in the 2-worker net runtime (nethost.rs:640); a couple of these saturate BOTH workers → every new attach / `endpoint run` stalls right after 'PUMP_IPC_READER: spawned' → 30s FIRST_EVENT_GRACE → 'no output / dead or wedged'; `daemon stop` cannot join the stuck workers. DISTINCT from the removed B1 path-(c) mutex deadlock. DISPOSITION = PROVE-DON'T-CHANGE (doyle GATE-PASS @e883f45, 2026-06-18): this ROOT is the SUPERSEDED v0.12.0 hypothesis — the post-L0 code ALREADY prevents the wedge, so NO fail-fast / worker-count code was added. serve_attach forwards fire-and-forget (net_stream_send op_id=None) and the broker-side send_stream is already BROKER-QUIC-DEADLINE-bounded (bounded_block_on, 10s); the loopback duplex is drained broker-INTERNALLY by the operator row's own read pump (RecvHalf::Loopback, retentive_cap==0 → evict-not-park) so a dead rc (a dropped IPC subscriber) never backs peer_w up; bounded_block_on parks the BROKER DISPATCH thread, not a net worker → no worker-pool exhaustion (full mechanism in the required_stages comment). Folds the status=online sub-check: a dead spt-hosted endpoint is marked OFFLINE within one reconcile tick on abrupt child death (broker exit-waiter reaps the session → B2 sees it absent) — PROVEN, no change. (v0.12.1)",
      "requiredStages": [
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/attach_wedge_e2e.rs",
              "line": 303
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-BIND-CWD-UNSET",
      "title": "A bound endpoint's `info.cwd` is SET at bind so a freshly-created perch appears under its own project tab. ROOT (found, v0.13.0): `info.cwd` is NEVER set on bind — `cmd_bind` (spt-hosted) and `bind_from_seed` (harness-hosted) never thread cwd into `establish_perch`/`rec.cwd`. FIX: `cmd_bind` reads its own `current_dir` (the broker spawned it in `project_cwd`); `bind_from_seed` passes `seed.cwd` (already captured at seed time, currently DISCARDED). DISTINCT from REQ-PICKER-HISTORY-FRESH (v0.12.1) — that unioned cwd-origin into picker MEMBERSHIP but tested merge_origin_project with a PROVIDED origin; it never asserted `info.cwd` is actually set on bind, so a real `endpoint run` perch still had an empty cwd and the union had nothing to union. This is the v0.12.1 P1 'appears under its own project right away' claim that was REFUTED in the changelog — delivered for real here. (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 275
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/bind_cwd_project_e2e.rs",
              "line": 93
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 968
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 990
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 1021
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-BOUNDARY-READY-STRAND",
      "title": "C-2 (F029, SEAM-2 pinned — B6's SECOND HALF, the live-wake blocker; perri wakep9 vs wakep4 gate-state dump + doyle code trace): at a /clear, CC fires SessionEnd(reason=clear) for the DEPARTING session BEFORE SessionStart; the departing sid STILL matches the perch pin at that instant, so the adapter's [hooks.SessionEnd] → `api session-end` AUTHENTICATES and the soft handler REMOVES the ready marker (+ unregister_address, reporting.rs cmd_session_end:206-207). The subsequent `api boundary` rotates the sid but NOTHING re-writes ready → is_online false → try_spt_hosted_inject Nones on the CLI gate BEFORE any broker RPC → every post-clear force-native (incl. the checkpoint FIRE) reports the generic UNDELIVERED, persistent by construction (no path re-stamps ready outside a real bind). The single differing gate field at every UNDELIVERED instant is ready-absent (info online/controllable/rotated-sid all healthy, translate alive). Paid-for hazard. FIX: cmd_boundary re-stamps the ready marker (+ status online, idempotent) ATOMICALLY with the sid rotation — a boundary PROVES a live successor session on the same harness process; a REAL end has no subsequent boundary so genuine teardown is untouched. See triage addendum C-2.",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 87
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/boundary_ready_strand_e2e.rs",
              "line": 154
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-BRAIN-RESPAWN-PATH",
      "title": "The broker respawns the brain onto the APPLIED bytes, not the renamed old binary: the candidate-binary default is the canonical exe path captured ONCE at broker start, never a per-spawn std::env::current_exe() — on Linux current_exe (readlink /proc/self/exe) is inode-tracking and follows the `apply` rename (spt -> spt.old-N), so a resident broker would respawn the brain onto OLD bytes while recording `applied` (Windows GetModuleFileName is path-at-start, so Windows was green; ADR-0018 Q3 silently assumed path-string semantics). Backstop: promotion gates on bytes — a trial promotes only if brain.ready exe_hash == the staged artifact hash for this platform, else auto-rollback + loud notif (readiness != new-bytes was the false-success that recorded applied:8 over a v0.4.0 brain on kitsubito, 2026-06-11). KNOWN-HAZARDS 6.11.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 361
            },
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 213
            },
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 302
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 524
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 529
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 941
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 982
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 993
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 358
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/brain_respawn_rename.rs",
              "line": 30
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1682
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1707
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1724
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1767
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-BRAIN-RESTART-LIFECYCLE-REHYDRATE",
      "title": "B4 (deepest): a bare brain restart (broker survives) REHYDRATES the live-agent lifecycle so post-restart endpoints are hosted + attachable. Today resume_sessions (brainproc.rs:186, brain.rs:797-809) re-subscribes to the broker's PTY sessions but ALL BrainLifecycle instances (lifecycle.rs:58-130; the ephemeral brain.rs:254-275) are LOST on restart → a post-restart live endpoint gets no livehost → its Psyche is never (re)hosted and new spawns die / can't attach until a FULL daemon reset (operator: perri's brain kill+restart wedged everything until a full daemon kill). FIX: on brain startup, rebuild a BrainLifecycle per resumed live-capable session — load the manifest from the adapter registry → instantiate → start the pulse — the rehydrate the resume no-op cannot do. Composes with B2 (the reconcile re-hosts from the honest on-disk status after rehydrate). (v0.12.0)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-BRAIN-RESTART-PSYCHE-DUP",
      "title": "A bare brain restart leaves EXACTLY ONE `{id}-psyche` process per endpoint — no duplicate. On an abrupt brain death stop_host never runs (the LiveSet + owned child handles die with the brain) and Breap's job/group only reaps at DAEMON stop, so the PRIOR brain's Psyche stays ALIVE; the respawned brain's reconcile re-hosts a SECOND Psyche and overwrites the `{id}-psyche` perch pid, leaving the old one untracked + alive = a duplicate that lingers until daemon-stop (the operator's 'brain kill+restart wedged everything'). FIX: at brain start, BEFORE the first reconcile re-hosts, reap any pre-existing `{id}-psyche` orphan — ID-SPECIFICALLY (recycle-safe on the shared box, where sibling agents share the `claude` basename): scoped-kill the recorded pid ONLY IF it is alive AND its exe basename == the adapter's psyche program (normalize_basename) AND its COMMAND LINE contains the full psyche id `<id>-psyche` (baked via {id}); a sibling never carries THIS id, and any unreadable signal FAILS SAFE (decline to reap — a missed dup is bounded by Breap, a wrong-kill is catastrophic). CAVEAT: the cmdline carries `<id>-psyche` only when the adapter's psyche_init.command uses {id} (the norm); a non-{id} adapter safely MISSES the reap (today's behavior, Breap bounds it) — never a wrong-kill. (v0.12.0)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 89
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 134
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 700
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-BROKER-FLOOR-LOCK-POISON",
      "title": "B-1 (REMOTE-TRUTH triage §B-1, PIVOTED @e5eb99a): NO bare `.lock().unwrap()` on a broker-resident lock reachable from serve/dispatch — a brain-only self-update keeps the broker + all its Mutexes ALIVE (REQ-UPD-3), so a single panic under one poisons it PERMANENTLY: the next `.lock().unwrap()` panics, kills its per-conn reply thread, and EVERY subsequent attach silently deadlines ('brain IPC read deadline elapsed') while non-locked ops keep working. TRIAGE-DRIFT (sweep-dispatch-site-counts discipline): the triage named 3 sites (broker.rs:1163 flush_inject_floor / :1297 inject-worker-open / :2142 buffer_if_held) as the surviving class, but ALL 3 are the INJECT FLOOR and were ALREADY poison-proofed by REQ-HAZARD-INJECT-WORKER-POISON (lock_floor, shipped post-triage — the FLOOR HALF is SUBSUMED, this seed redirects). The SURVIVING class (matching the triage's own symptom description) is the ATTACH-PATH lock set: self.sessions Mutex<HashMap> ×18 + its sessions_exit alias ×1, the per-session OutputLog RING ×11 (log/h.log/log_drain/log_exit), pair_holds ×4 — 34 production bare .lock().unwrap() (cfg(test) excluded). FIX (doyle B-1 ruling): recover ALL THREE via ONE shared `recover<T>(&Mutex<T>) -> MutexGuard<T>` helper (into_inner idiom, same as lock_floor / the effect journal bug #16 — safe for the short coherent-on-recovery map ops of sessions/pair_holds), plus `recover_log(&Mutex<OutputLog>)` for the ring which adds a COHERENCE CLAMP on the poison-recovery path: a panic mid-append can leave the ring torn (over-cap, a last seq not below next_seq, non-monotonic front/back) and serving those bytes risks garbage, so OutputLog::clamp_or_reset cheap-checks the invariants and RESETS the ring empty (next_seq preserved — cursors never rewind) + loud-logs on violation. Rationale: fail-fast on the log reintroduces the very wedge B-1 kills (poisoned log = every subscriber attach panics forever); blind recover serves torn bytes; clamp-or-reset costs only scrollback that self-heals on the next PTY output + repaint (lost scrollback << permanent wedge, torn-serve eliminated not tolerated). Sessions/pair_holds recover bare (short map ops, coherent-on-recovery). CLASS invariant (KNOWN-HAZARDS 7.33): any new broker-resident lock uses recover/recover_log or a documented fail-fast justification. Red-first: a scripted panic-under-sessions-lock → recover hands back a usable guard, the next attach still opens; a TORN-RING variant → recover_log clamps/resets so the subscriber gets sane bytes.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 605
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 742
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1723
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1738
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4798
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4824
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4858
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-BROKER-PROCESS-ISOLATION",
      "title": "Broker and brain are separate processes: the broker runs as its own long-lived per-machine process that survives every brain restart, so a routine (brain-only) self-update restarts the brain onto the swapped binary while every hosted endpoint (PTY child, live QUIC conn, listening socket) stays untouched at the PROCESS level. The in-process-thread broker (daemon.rs:165-170) is a regression that silently unrealizes REQ-UPD-3 — apply degrades to an in-process Brain::handoff no-op and new code does not run until an unrelated restart (KNOWN-HAZARDS 6.7). Evidence must prove process-level survival (SPIKE-01/03 productionized as int: PTY child + live QUIC survive a brain-PROCESS restart onto a swapped binary), re-pointing the regression-masked in-process int tags currently on REQ-DAEMON-2 / REQ-UPD-3 (ADR-0018).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 330
            },
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 182
            },
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 292
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 140
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 983
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1339
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 23
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 113
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 158
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 224
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 267
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 281
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 326
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 353
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 365
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 379
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 406
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 710
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1056
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 604
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2576
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2725
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2737
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3628
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 191
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 268
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 279
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 336
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 56
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 188
            },
            {
              "path": "crates/spt-daemon/src/endpoint.rs",
              "line": 82
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 690
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 432
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3792
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/brain_survive.rs",
              "line": 57
            },
            {
              "path": "crates/spt/tests/n1_pairing.rs",
              "line": 41
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 771
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 1087
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1138
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1172
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1214
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1286
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1299
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1322
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1348
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1362
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1386
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1544
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1812
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1867
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1913
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1958
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 2002
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 2044
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4225
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 217
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 233
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 254
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 265
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 278
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 289
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 301
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 312
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 323
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 332
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 342
            },
            {
              "path": "crates/spt-daemon/src/deadline.rs",
              "line": 358
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2295
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2331
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 980
            },
            {
              "path": "crates/spt-daemon/tests/resume.rs",
              "line": 147
            },
            {
              "path": "crates/spt-daemon/tests/resume.rs",
              "line": 226
            },
            {
              "path": "crates/spt-daemon/tests/resume.rs",
              "line": 295
            },
            {
              "path": "crates/spt/tests/brain_split.rs",
              "line": 17
            },
            {
              "path": "crates/spt/tests/brain_split.rs",
              "line": 104
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-BROKER-QUIC-DEADLINE",
      "title": "The broker bounds every brain-waiting QUIC op (dial / open_stream / send_stream) so a black-holed or dead peer fails PROMPTLY with an ORDINARY error the broker REPLIES, never an unbounded await. The bound (< the brain's 30s PUMP_PEER_IO_TIMEOUT so the BROKER fires first) surfaces to the pump as a normal broker error reply → peer_outcome's non-TimedOut arm → drop conn + redial next tick, the round CONTINUES and the heartbeat keeps advancing — it must NEVER manifest as the brain's own read-deadline (the A-half poison → supervised-restart path REQ-HAZARD-PUMP-IPC-DEADLINE guards). Exactly-once is preserved: a timed-out journaled op fails INSIDE its apply_once closure so no phantom conn_id/stream_id is recorded and a fresh tick re-dials cleanly. The happy path is unchanged (a live peer completes with zero added latency; the bound only bites a non-responsive peer). This is the ROOT-cause cure for the 2.2h hfenduleam pump wedge — a dead roster peer whose QUIC path the broker awaited unbounded — recurring on hfenduleam 2026-06-16.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 416
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 785
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 808
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/netbroker.rs",
              "line": 233
            },
            {
              "path": "crates/spt-daemon/tests/pump.rs",
              "line": 474
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1596
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-BROKER-SEED-WIRE-SKEW",
      "title": "A daemon-state wire-format change (e.g. the v0.9.0 adapter-agnostic Seed) does NOT take effect until a DELIBERATE full broker restart: the broker serves the seed-control channel and is RESIDENT across a brain-only self-update (ADR-0004 no-terminate-during-update forbids auto-killing it), so a NEW-version CLI talking to a still-resident OLD broker fails the seed handshake — the old broker cannot deserialize the new Seed (its formerly-required `adapter` field is gone) and drops the conn without an ack, which surfaces to the CLI as a raw UnexpectedEof 'failed to fill whole buffer'. spt-core must (a) surface an ACTIONABLE diagnostic on that seed-ack EOF (name the stale-broker cause + the `spt daemon stop` fix — the broker restarts on the next api call), never the cryptic io error; and (b) document the operational rule (a deliberate broker restart is required on any daemon-state wire change — NOT automatic) + the FORWARD discipline (daemon-state/Seed schema changes stay additive + serde-default so a resident OLD broker tolerates a NEW CLI across a brain-only update; note this would NOT have rescued 0.9.0 itself, since the old broker's `adapter` was a required field). perri PREP-4 FINDING 1 (v0.9.0 CLI vs stale 0.8.x broker).",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 423
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 75
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 798
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-BROKER-VIEWER-BRAIN-DECOUPLE",
      "title": "W2 (LIFECYCLE-TRUTH, KNOWN-HAZARDS, flagship — the update wedge): PTY viewer fan-out and control mutations must not depend synchronously on a live draining brain. ROOT rig-CONFIRMED (NtSuspendProcess on the brain, no update involved): brain-subscriber session-output writes ride UNDER the per-session log lock (broker.rs:19-20); failed writes are handled (cursor freeze + detach :3486) but BLOCKED writes are not. Suspended brain => within seconds attached rc output freezes; detach does NOT release the control stamp (release routes through the brain); reattach REFUSED (controlled-by); rc --take hangs; daemon status stays healthy. Field: every brain cycle (incl. every update apply) has a freeze window; a stalled/slow-draining new brain = permanent wedge until bounce; brain.ready != subscribers drained. FIX SHAPE (todlando proposes, doyle RULES BEFORE IMPL): subscriber writes move OFF the log lock (bounded/nonblocking, stall => detach-subscriber like viewer eviction — broker already buffers + replays on re-attach, so a detached-stalled brain self-heals by rewind); control stamp release/take completes against the BROKER without brain round-trip (or bounded with loud timeout). doc = KNOWN-HAZARDS entry. Int (tonight's rig, encoded): suspend brain child mid-session -> attached viewer ticks CONTINUE + rc --take completes; resume -> no output lost (cursor replay).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 625
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1072
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 165
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 174
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 239
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 251
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 256
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 265
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1002
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1038
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3611
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4024
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4191
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/brain_decouple.rs",
              "line": 220
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5469
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5546
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5575
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16413
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CASCADE-WIPE-GUARD",
      "title": "No hard-delete of a parent hosting non-empty children (6.3)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 225
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 18
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 147
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1242
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 262
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 334
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CEREMONY-CLOCK-STEP",
      "title": "W1/D3 (JOIN-TRUTH, KNOWN-HAZARDS): the cached ceremony offset goes stale-WRONG when the OS clock STEPS under a live daemon — an offset measured against the OLD clock keeps applying for up to the 15-min TTL. Field-proven timeline (enlyzeam): refresh cadence 15:08/15:23/15:38/15:53; operator `w32tm /resync` stepped the clock −210s at 15:45:46; every `subnet join` returned NO_SEED_HOLDER until a daemon bounce forced a fresh query. Fix: the cache snapshot stores an (Instant, SystemTime) PAIR; on read, if |wall-elapsed − mono-elapsed| > ~2s the clock stepped ⇒ force an immediate refresh (offset recomputed against the new clock). PLUS: `meet_seed_holder` (pairhost.rs), on search-deadline exhaustion, forces ONE fresh NTP refresh + one final sweep before returning NO_SEED_HOLDER — so a stepped-clock join self-heals without a bounce. Clock reads must be seam-injectable for the hazard unit (inject the (mono,wall) pair — do NOT sleep 15 min).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 498
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 111
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 118
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 174
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 195
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 202
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 827
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 860
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 477
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 537
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CHILD-CONSOLE-FLASH",
      "title": "Console-subsystem children of the console-less daemon spawn with CREATE_NO_WINDOW, or each spawn flashes a visible blank window on the user's desktop (5.8)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 220
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 318
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 244
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 259
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 749
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 971
            },
            {
              "path": "crates/spt-store/src/gitrun.rs",
              "line": 77
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 402
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1416
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1454
            },
            {
              "path": "crates/spt-store/src/gitrun.rs",
              "line": 166
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-COMMUNE-INGEST-BLACKHOLE",
      "title": "F-032 (perri field finding 2026-07-08, LEGACY-SPT-PARITY-GAP, data-loss): commune/signoff ingest MUST NOT delete a drop until its content is DURABLY COMMITTED to every APPLICABLE tier — a slice that cannot be committed this ingest must leave the drop in place for a later ingest (retry when the precondition resolves) OR durably preserve the un-committed slice, NEVER delete-then-lose. ROOT (doyle triage, code-grounded): ingest_drops (spt-live/src/ingest.rs:200) unconditionally `remove_file(&drop_path)?` AFTER route_slices (ingest.rs:121), but route_slices GATES the project tier on `!project_id.is_empty()` (ingest.rs:156) — when the endpoint's cwd is unresolved/owlery-internal at ingest time the project_id is empty, so the `<project-context>` slice is PARSED but never write_context'd/commit_project'd, yet the source drop is still deleted → the project-context content is permanently lost (black-hole). perri's repro: a two-sliced echo-commune (<live-context> role+release recipe + <project-context> v0.17.4 status + Items 3-5 map) INGESTED (file deleted) yet never surfaced at her next SessionStart resume-pull; adapter exonerated (file-write + slicing tags correct); fixture at (system temp)/F-032-commune-2026-07-08T222721Z.md (5595B, sha256 9bc27e18cf385958; perri wrote it verbatim from session log 0841835d.jsonl). Legacy spt held commit-first-then-delete parity; the modern two-slice ingest broke it. FIX distinguishes: a write SUPPRESSED-by-precedence (incoming older than durable → already-superseded → safe to delete) from a slice NOT-committed-because-un-committable-now (empty project_id / write error → must NOT delete; retry or preserve). Gate: an ingest with a non-empty <project-context> slice but an EMPTY project_id must NOT delete the drop (or must durably preserve the project slice) — the content survives to the next resolvable ingest / SessionStart; the live-tier commit path stays unchanged; a genuinely superseded (precedence-suppressed) drop still deletes. KNOWN-HAZARDS entry on landing (REQ-HAZARD-* = conformance-checklist, needs a test).",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONFLICT-BOTH-PRESERVED",
      "title": "A surfaced concurrent context pair is durably preserved (both versions, tracked artifacts) until a strictly dominating write clears it; no reconcile failure path discards an unmerged version (6.6, ADR-0013)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/reconcile.rs",
              "line": 22
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 488
            },
            {
              "path": "crates/spt-live/src/reconcile.rs",
              "line": 17
            },
            {
              "path": "crates/spt-live/src/reconcile.rs",
              "line": 147
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 226
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 251
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 277
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 124
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 224
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/reconcile.rs",
              "line": 69
            },
            {
              "path": "crates/spt-daemon/src/reconcile.rs",
              "line": 79
            },
            {
              "path": "crates/spt-daemon/src/reconcile.rs",
              "line": 91
            },
            {
              "path": "crates/spt-daemon/tests/sync.rs",
              "line": 347
            },
            {
              "path": "crates/spt-live/src/reconcile.rs",
              "line": 281
            },
            {
              "path": "crates/spt-live/src/reconcile.rs",
              "line": 322
            },
            {
              "path": "crates/spt-live/src/reconcile.rs",
              "line": 360
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 688
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 397
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 440
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONPTY-DSR",
      "title": "ConPTY reader must auto-answer DSR (ESC[6n) or all child output stalls (5.5)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/reader.rs",
              "line": 169
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/tests/dsr.rs",
              "line": 44
            },
            {
              "path": "crates/spt-term/tests/dsr.rs",
              "line": 66
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/reader.rs",
              "line": 186
            },
            {
              "path": "crates/spt-term/src/reader.rs",
              "line": 238
            },
            {
              "path": "crates/spt-term/src/reader.rs",
              "line": 266
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONTROL-STAMP-CONVERGENCE",
      "title": "Control/viewer stamps must CONVERGE to broker session-table truth for every session-backed endpoint, not merely edge-trigger — the UPWARD companion to the DOWNWARD edge-clear REQ-HAZARD-CONTROL-STAMP-LIFETIME (7.27); same 'stamps == broker truth' family. ROOT (F-026 stamp-gap, hall-b/ball-b): a picker-created endpoint's broker spawn become_controller->stamp_driven_by->set_controlled(true) fires BEFORE the adapter binds its perch (a fresh endpoint has no perch until claude boots + binds), so mutate_info returns NotFound and the edge stamp is SWALLOWED (let _); the adapter's bind then writes InfoJson::new with controlled:false DEFAULT and no later edge re-stamps -> the endpoint reads uncontrolled FOREVER while driven (the #3 display fix is correct but datum-starved on this creation path). FIX: the broker (SINGLE WRITER) re-asserts each live session's control/viewer stamps to session-table truth, DIVERGENCE-GATED (read info; compare driven_by/controlled/viewer_count; write ONLY on diff — no per-poll fsync storm), on the KIND_SESSIONS handler (piggyback: the daemon reconcile + picker poll it, so a fresh perch converges within one reconcile-poll window after bind = the BOUNDED window, no new timer). Event-on-input rejected (an idle controlled session like hall-b never converges). Writes run OFF the log lock (snapshot truth under the lock, converge off it) per the lock-across-effect discipline (KH 7.12/5.16).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 575
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 618
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 641
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2895
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/control_stamp_lifetime.rs",
              "line": 285
            },
            {
              "path": "crates/spt-daemon/tests/driven_by_selfheal.rs",
              "line": 346
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4203
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONTROL-STAMP-LIFETIME",
      "title": "#2: a control/viewer stamp never outlives its session — every teardown path clears what attach stamped. The broker exit-waiter (broker.rs ~:1844) sends the exit frame + sessions.remove(&id) but does NOT clear the perch's controller/viewer stamps; clear_controller()->stamp_driven_by() (clears driven_by+controlled) runs ONLY on controller-detach/evict/displace. /exit kills the CHILD not the controller conn, so the OutputLog drops with controlled:true, viewer_count, (and driven_by for a remote controller) latched in info.json forever — and hfenduleam keeps gossiping controller_node=self cross-node. Fix: on session reap, clear the perch's controller/viewer stamps (set_driven_by(None)+set_controlled(false)+set_viewer_count(0) via the known endpoint id) — broker stays the single writer. KNOWN-HAZARDS invariant. See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #2.",
      "requiredStages": [
        "doc",
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 556
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1293
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3130
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/control_stamp_lifetime.rs",
              "line": 209
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONTROLLER-GAP-RESUME",
      "title": "A serving CONTROLLER whose serve-brain hits a b4 drop-don't-block FORWARD output gap must RESUME-FROM-FLOOR (re-subscribe from delivered_through and re-fetch the dropped frames from the ring), NOT snap-above and NOT fatal. ROOT (v0.13.0 forkpty re-run, post-keystone): b4 made the controller a non-blocking try_send that DROPS frames when its bounded channel fills (a controller that falls behind its OWN echo under a hard flood), so the next read is a forward gap the strict reject-gap (brain.rs:624/628, B2 exactly-once) FATALS — wedged_viewer_does_not_stall_controller (attach.rs:1048) drove ctrl.read_event() raw and fataled on `output gap got 6134 want 4643`. Pre-b4 the inline sleep-poll BLOCKED the drain to the controller's rate (no drops, no gaps); this is a b4 SIDE-EFFECT, not a new class. A controller CANNOT snap (it is authoritative — advances delivered_through; skipping rolled frames = not-exactly-once = B2 violation), so REQ-HAZARD-VIEWER-RING-ROLL-SNAP does NOT apply. B2 INVARIANT (doyle, broker.rs:327-330): the ring trim is delivered_through-BLIND (`while ring.len() > cap_chunks { pop_front() }`), so re-fetch is exactly-once IFF tail - delivered_through <= cap_chunks (4096) — NOT guaranteed in general, but the common case (burst < ring; wedged_viewer ~1492 < 4096) holds. FIX: serve_attach catches the output-gap on the controller path (does not ?-propagate) and re-subscribes from Brain::controller_resume_floor (= delivered_through = the gap's `want`; NO mid-stream KIND_SESSIONS round-trip — sessions() loops on read_event and would re-fatal on the same gap + discard Output); the broker replays the dropped frames. The IRRECOVERABLE edge (floor unchanged across two resumes = ring rolled past delivered_through = frames gone) surfaces a MARKED truncation to the operator (never silent-skip = B2 lie, never spin) and ends cleanly — full graceful handling deferred to REQ-HAZARD-CONTROLLER-IRRECOVERABLE-BEHIND. Do NOT make the ring trim delivered_through-aware (that risks an unbounded ring under a stuck controller; the 5s eviction + 4096 ring is the practical bound). (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 110
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 157
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 292
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1016
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1205
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1710
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONTROLLER-IRRECOVERABLE-BEHIND",
      "title": "DEFERRED EDGE of REQ-HAZARD-CONTROLLER-GAP-RESUME: when a serving controller falls behind the live ring FURTHER than the ring holds (tail - delivered_through > cap_chunks, the ring trim being delivered_through-blind, broker.rs:327-330), the dropped frames have rolled OUT of the ring and an exactly-once re-fetch is IMPOSSIBLE. v0.13.0 DETECTS this (resume floor unchanged across two consecutive resumes) and surfaces a MARKED truncation notice to the operator then ends the attach cleanly — it never silent-skips (a B2 lie) and never spins. FULL graceful handling (a clearly-marked snap-with-data-loss that keeps the operator on the live tail, or a structured truncation record the rc renders distinctly, plus the controller-too-slow + ring-too-small backpressure/sizing policy) is DEFERRED — staging it needs a netsplit / deep-behind harness (the in-process loopback rig keeps up; wedged_viewer's gap is recoverable at ~1492 < 4096). (v0.13.0+)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONTROLLER-RETAKE-FLOOR",
      "title": "`become_controller` should STRUCTURALLY refuse a controller re-take whose `from_seq` falls below the connection's already-delivered contiguous floor — making the P1c reorder invariant un-reintroducible by a future caller, not just removed at the one caller. ROOT/SCOPE (doyle proposed, P1c gate dialogue): P1c fixes REQ-HAZARD-CONTROLLER-WRITER-REORDER three ways (handoff single-take + epoch-gate-under-lock + session_cursors seed), removing the one decreasing-floor double-take and bounding any other to already-committed-only. A self-enforcing broker guard would refuse the bad SHAPE outright. BLOCKER: the obvious predicate (`from_seq >= delivered_through`) is UNSAFE because `delivered_through` is SESSION-WIDE (the `Arc<AtomicU64>` on `OutputLog`, shared by all controllers/viewers, advanced monotonic-MAX; `resume_seq` reads it) — a normal fresh-operator `from_seq=0` attach to a producing session legitimately sits below it (full ring replay + consumer dedup-below/snap-above), and monotonic-MAX can't distinguish the hazard (a `seq1`-without-`seq0` write reads as `2`). The structurally-correct guard needs a NEW per-connection contiguous-sent cursor (the true highest-contiguous seq this socket has received) that does not exist today; the guard then refuses a re-take below THAT. Bigger than P1c; no live gap (P1c fully fixes the actual bug). Mint/refine stages when the per-connection cursor is built. (v0.13.0 follow-up, post-ship)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-CONTROLLER-WRITER-REORDER",
      "title": "Two `controller_writer` threads must never race ONE brain↔broker connection's socket. ROOT (doyle, instrumented RACEDIAG repro on kitsubito): on a brain-restart re-serve the handoff brain registers as controller on the SAME session TWICE over the SAME `Brain::conn` socket — (1) `Brain::handoff` eagerly `subscribe(prior.session_id, prior.next_seq=1)` → `become_controller(from_seq=1)`, initial=[1], spawns writer-A (writes seq 1); (2) `serve_attach` re-handles the replayed `Request{from_seq:0}` → `attach_as(sid,0)` → `become_controller(from_seq=0)`, initial=[0,1], spawns writer-B (writes 0 then 1). `become_controller` (broker.rs) drops the prior `ControllerSink` (its `tx`) but does NOT stop the prior writer thread — writer-A keeps flushing its owned `initial` batch, and both writers hold clones of the same `SharedSend` (`Arc<Mutex<socket>>`) with NO inter-thread ordering. When writer-A's seq 1 wins the socket before writer-B's seq 0, the strict legacy consumer (brain.rs read_event reject-gap path) sees `output gap: got seq 1 want 0` → the test `attach_survives_target_brain_restart_exactly_once` panics at `.expect(\"re-serve\")` OR HANGS in `render_until` (serve thread died on the gap → MARKER_TWO never reaches the wire). `prior.next_seq` is life1's CONSUMPTION cursor, NOT life2's connection state — life2's socket has been sent NOTHING, so a `from_seq=0` full replay on a connection that already streamed seq 1 is contradictory. Snap-above tolerance ALONE can't fix it (it would dedup-drop the late seq 0 → byte loss → the exactly-once byte-identity assert fails). PRE-EXISTING, surfaced by the v0.13.0 green-both-runners release gate; P1b is INNOCENT (its diff touches only input-ack machinery, proven mechanically + the test passes post-P1b in isolation). Sibling flaky cluster: `inject_control_wedge::g2`, `broker::spawn_env_reaches_child`. INVARIANT: on a single brain↔broker connection the controller output-frame stream is monotonic non-decreasing in seq (modulo dedup re-sends); exactly ONE `controller_writer` is ever live per connection; a SUPERSEDED writer writes NO further frames; a re-serve never replays a seq below what the connection already received. FIX (doyle design, corrected at the gate 2026-06-20): fix #1 as designed ('drop handoff's eager subscribe so serve_attach's attach_as is the sole registration') was REVERTED — handoff's `subscribe(prior.next_seq)` IS the standalone-resume mechanism (the brain-only update engine `apply_brain_only` + the `handoff`/`idempotent`/`daemon_e2e` int tests replay output through it with NO `serve_attach`; dropping it hung every resume-via-handoff test). The shipped fix is three parts: (1) CORRECTNESS — `Brain::handoff` seeds `session_cursors` at `prior.next_seq` so the consumer runs the production dedup-below+snap-above path, never the strict reject-gap legacy trap; this is COMPLETE (not merely tolerant) because every `controller_writer` emits an ASCENDING seq stream and the surviving writer (serve_attach's attach_as(sid,0)) offers the complete `[0,end]` range, so a snap-above merge of ascending writers delivers `[K,end]` with no skip/dup (first sighting of any seq>M is preceded by M on that writer). (2) INVARIANT — `controller_writer`'s INITIAL-BATCH replay is epoch-gated: `controller_epoch` is a shared `Arc<AtomicU64>`, the writer re-reads it UNDER `send.lock()` (atomically with `write_frame`) and returns the instant it is superseded — no check-then-block-then-write window, no superseded replay (W1-safe: never blocks the drain under `Mutex<OutputLog>`). The LIVE loop is NOT gated (new output only flows to the current controller; a superseded writer must still deliver its terminal `Displaced` kick — gating it suppressed the loud-take notice; it ends on `tx`-drop). (3) EXPLICIT-RESUME / OPERATOR-STREAM BOUNDARY (the LOAD-BEARING fix — kitsubito RACEDIAG ~33% repro the keystones missed) — `Brain::subscribe_with` (shared by attach/attach_as) resets the resume-mode dedup cursor to `from_seq`. The handoff eager subscribe makes serve_attach's brain receive the replay's seq K BEFORE the operator Request is processed (`attached`=false); that frame is dropped by the if-attached forward gate but the snap-above cursor already advanced past K, and `attach_as(sid,0)`'s re-subscribe used to leave the cursor advanced → the broker's re-send of seq K arrives below it, deduped, never forwarded → operator viewport forward-gap (silent content loss in the real rc consumer). Resetting to from_seq on the attach_as re-subscribe re-delivers from 0 (operator dedups the overlap) so seq K reaches the viewport. The epoch gate (2) is sound (RACEDIAG: zero socket interleaving above K); cold-start brains (empty map — production dispatch serve) keep the legacy next_seq path, so production is unaffected. (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 497
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 378
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1494
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1415
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1360
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1461
            },
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 1214
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5231
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-CORRUPT-PERCH-COHERENCE",
      "title": "Corrupt (present-but-unparseable) info.json is NOT absent: liveness/status readers agree a destroyed record is neither alive nor Active (counter-39 #2)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 264
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 820
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 135
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 53
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1807
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 266
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 198
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DAEMON-HOSTED-LIVENESS",
      "title": "Daemon-hosted perches (Psyche, spt-hosted Self) derive liveness from the daemon endpoint table + info.json status, never is_process_alive(info.pid) (2.5)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 566
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 79
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 52
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 343
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 27
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 134
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 159
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 116
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/daemon_e2e.rs",
              "line": 43
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 743
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 184
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 203
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 220
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 247
            },
            {
              "path": "crates/spt-store/src/liveness.rs",
              "line": 348
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 229
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DAEMON-SCHED-NONBLOCKING",
      "title": "Per-agent pulse/psyche/echo-commune scheduling must not serialize across agents: each agent's bounded LLM call (echo-commune summarizer, Psyche turn) runs off the shared scheduler so one slow/hung call cannot stall another agent's tick (7.4)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2607
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2969
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/shellchan.rs",
              "line": 161
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DAEMON-STOP-BARRIER",
      "title": "B3: `spt daemon stop` then an immediate `spt daemon start` does NOT race — stop fully completes before it returns. Today request_stop (seedmap.rs:240-255) returns on the KIND_STOPPING ack (sent seedmap.rs:174-176) BEFORE the seed socket unbinds, so a following is_running ping (daemon.rs:375) wins the exit window and start reports ALREADY_RUNNING (operator: daemon stop → STOPPED then start → ALREADY_RUNNING). FIX: unbind/stop-gate the seed socket BEFORE acking KIND_STOPPING, OR request_stop waits for a ping-to-fail before returning. Unit: stop then immediate is_running()==false. (v0.12.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2630
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 276
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 301
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 332
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 488
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DAEMON-STOP-REAP",
      "title": "Breap: `spt daemon stop` REAPS the spt-hosted children it spawned — no orphaned psyche/harness processes. Today a stop leaves ~8 orphaned claude-spt-psyche.exe + spt.exe: Psyches are spawned DETACHED (runtime.rs:342-356, the Child is dropped — 'Detached' ~349) and the livehost stop flag Arc<AtomicBool> is NEVER raised (brainproc.rs:227-230 holds it 'for symmetry'). FIX: on stop, raise the livehost stop flag AND kill the spawned psyche/spt-hosted children — via a Windows job object / Unix process-group so the children die with the daemon (not detached-immortal). Folds with B3 (both the stop path). (v0.12.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1089
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 286
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 323
            },
            {
              "path": "crates/spt-daemon/src/reap.rs",
              "line": 26
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/reap.rs",
              "line": 271
            },
            {
              "path": "crates/spt-daemon/src/reap.rs",
              "line": 348
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DEAD-REC-PID",
      "title": "E-1 rider (F-026 #11 dead-pid class, doyle-ruled SCOPED 2026-07-05 — KNOWN-HAZARDS 7.34): a dead `rec.pid` on an spt-hosted perch is EXPECTED, not staleness — the recorded pid is the ephemeral bind-CLI pid, which dies immediately after bind (the broker holds the PTY; no resident harness process at that pid). NO reader may alive-gate on `rec.pid` alone: spt-hosted LIVENESS comes from the daemon-managed status field (KH 2.5 — status present ⇒ authoritative, never a per-pid probe); IDENTITY comes from session/ancestry resolution where `rec.parent_pid` (the harness pid, the stable session-binding anchor) is the ancestry candidate (REQ-SELF-DETECT-PARENT-PID). Re-stamping rec.pid with the harness pid (shape (a)) is OVERRULED: ADR-0021 demoted pid to a bind-time seed hint (re-anchoring truth there reverses the design); every pre-existing record keeps the old CLI pid so readers need the scoped discipline anyway (migration hole); blast radius (every rec.pid consumer + KH 2.5 external-perch probe semantics) buys nothing the reader-side fix doesn't. CLASS rule: any newly sighted rec.pid-alive-gating reader gets the same scoped fix and EXTENDS this requirement's evidence — no new REQ per reader.",
      "requiredStages": [
        "doc",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 612
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/roster.rs",
              "line": 327
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-DEFERRED-DRAIN",
      "title": "Deferred spool rows excluded from the event-stream drain (1.4)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 91
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 327
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 463
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 763
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 877
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 949
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1012
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1033
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DEFERRED-MANIFEST",
      "title": "A pointer-mode (delegated / GhReleaseManaged) adapter whose binary/manifest is not yet extracted is reported with a CLEAR diagnostic, never silently dropped. Today such an adapter reads its manifest LIVE from source_dir (registry.rs manifest_dir ~146/149); a deferred / un-extracted install makes load_manifest fail → registered() (~410, filter_map(.ok())) SILENTLY DROPS the row → downstream ADAPTER_UNRESOLVED + a cryptic os-error-2 on `spt adapter use`. FIX: surface a clear diagnostic at the resolver + at `adapter use` (name the adapter + the deferred/missing-manifest cause + the fix), not a silent filter-drop and not a bare os-error-2; consider an eager manifest copy at register time so host_binaries survive before the binary download completes. doyle Finding A. (post-v0.10.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 463
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 507
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1119
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DEFERRED-SURVIVE-DRAIN",
      "title": "Deferred rows survive poll drain (4.4)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 356
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 446
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 904
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 985
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DELIVERY-STARVATION",
      "title": "A message that has REACHED a node's spool (WAN-arrived or locally spooled-while-active) is NEVER dependent on an adapter HOOK-POLL cadence for its eventual delivery to an spt-hosted (relay-less) endpoint — the daemon itself drives delivery on the events it owns (WAN ingress + the ACTIVE→IDLE edge). Hazard class: delivery starvation. Without this, cross-node and post-active messages to an spt-hosted perch strand indefinitely whenever the adapter's hooks are quiet (idle session, no user turns), presenting as 'sent but never lands' with a healthy binary and an idle perch (F-023). Guarded by REQ-WAN-SPT-HOSTED-DELIVERY (WAN ingress leg) + REQ-MSG-IDLE-EDGE-DRAIN (idle-edge drain). (F-023)",
      "requiredStages": [
        "doc",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 519
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 696
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 107
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 314
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 247
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2876
            },
            {
              "path": "crates/spt/tests/idle_edge_drain_e2e.rs",
              "line": 88
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-DETACHED-DAEMON-STDIO",
      "title": "A daemon DETACHED-IN-FACT (no interactive console, or an inherited stderr PIPE nobody drains) that never nulled its std handles will BLOCK on stdio writes when the pipe fills, and/or pop a visible conhost window (REQ-HAZARD-WMI-DAEMON-WINDOW is a covered surface of this hazard). detach_console nulls the 3 handles only under the --detached flag; a rung that omits it (the bare line-82 elevated->deelevated respawn; a STALE installer at-logon task registered as bare `daemon run`, confirmed live field-drift on ENLYZEAM) is exposed. FIX: (load-bearing) inside `daemon run`, null the 3 std handles when stderr GetFileType==FILE_TYPE_PIPE — a pipe is the ONLY std sink that BLOCKS the daemon when it fills; catches every rung whose inherited stderr is an undrained pipe, independent of whether each caller passed --detached, while a FILE (2>run.log AND every int-test Stdio::from(file) brain-log capture), a CONSOLE (scrolls), and a NULL/absent handle (DETACHED_PROCESS rungs, already discard) all SURVIVE. DELIBERATELY NOT gated on GetConsoleWindow==NULL: a CREATE_NO_WINDOW daemon has no console window yet a drained FILE stderr — nulling it would blank the capture for ZERO safety gain (a file never blocks) and mass-red the int-test brain-log assertions. (belt) pass --detached on the bare line-82 respawn; (drift nag) parse the schtasks /Query action argv and LOUDLY nag when the at-logon task is the stale bare `daemon run` form (manual/installer re-registers; the daemon must NOT self-elevate to rewrite it). Defense-in-depth — no current spt Windows spawn path was proven to yield a BLOCKING inherited pipe (all rungs null-discard or scrolling-conhost), so this is hardening, not a confirmed incident root.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 973
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 991
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 217
            },
            {
              "path": "crates/spt-daemon/src/stderrlog.rs",
              "line": 24
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1220
            },
            {
              "path": "crates/spt-daemon/src/service.rs",
              "line": 334
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DETACHED-PIPE-INHERIT",
      "title": "Windows detached long-lived children must not inherit a captured caller's pipe: every detach-spawn of an immortal child (daemon, shell binary) runs bInheritHandles=FALSE, or a caller capturing output anywhere up the process chain hangs forever on a pipe that never EOFs — std-handle flag stripping is NOT sufficient (grandparent strays still flow) (5.6)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 206
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 698
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 798
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1182
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 184
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1258
            },
            {
              "path": "crates/spt/tests/notify_shell_e2e.rs",
              "line": 44
            },
            {
              "path": "crates/spt/tests/shell_actgate_e2e.rs",
              "line": 52
            },
            {
              "path": "crates/spt/tests/shell_e2e.rs",
              "line": 57
            },
            {
              "path": "crates/spt/tests/shell_sleepwake_e2e.rs",
              "line": 54
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DIRECT-WRITE-PRECEDENCE",
      "title": "Direct-write precedence marker (with node id) guards stale overwrite (6.5)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 26
            },
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 135
            },
            {
              "path": "crates/spt-store/src/contextmark.rs",
              "line": 26
            },
            {
              "path": "crates/spt-store/src/contextmark.rs",
              "line": 237
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 161
            },
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 170
            },
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 179
            },
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 190
            },
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 199
            },
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 216
            },
            {
              "path": "crates/spt-live/src/context.rs",
              "line": 242
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 397
            },
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 244
            },
            {
              "path": "crates/spt-store/src/contextmark.rs",
              "line": 265
            },
            {
              "path": "crates/spt-store/src/contextmark.rs",
              "line": 293
            },
            {
              "path": "crates/spt-store/src/contextmark.rs",
              "line": 317
            },
            {
              "path": "crates/spt-store/src/contextmark.rs",
              "line": 327
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 540
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DRIVEN-BY-IDLE-REMOTE-EVICT",
      "title": "An spt-hosted endpoint driven by a REMOTE controller whose remote is gone but whose broker connection stays OPEN (a wedged/lost pump that never delivers the detach) AND whose session is IDLE (no output) stays latched ONLINE+CONTROLLED forever: the W1 drain-evict only fires on OUTPUT (CONTROLLER_WRITE_DEADLINE on a backed-up write), a clean disconnect self-heals via detach_if→clear_controller, but an idle session with a half-open/wedged controller connection produces neither signal. PROVED repro-first on a real broker (v0.13.0 W5, inject_control_wedge.rs w5_a2): controller_by STAYS Some(origin) and driven_by STAYS Some after the remote is abandoned without a clean EOF on an idle session — so the brain reconcile CANNOT detect it from KIND_SESSIONS controller_by (the broker still reports it controlled). FIX DIRECTION (doyle ruling 2026-06-19, broker-side single-writer — the broker owns driven_by/clear_controller): wire the EXISTING D4c NetPresence connection-disconnect event → clear_controller for any session whose controller identity == the dead origin (become_controller already stores Some(origin); presence events already exist — modest wiring, NOT a new probe). The liveness ORACLE is QUIC's own keepalive/idle-timeout: a presence-disconnect IS a real QUIC conn close, already tolerant of transient blips within the keepalive window, so NO heavy partition ADR is needed UNLESS the QUIC timeout proves too slow for the UX (then mint an ADR for a faster controller-heartbeat + its false-evict bound). Composes with W1 (output path) + W5 Gap B (no-session) — this is the third, idle-remote, leg. (v0.13.0 follow-up)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-DRIVEN-BY-SELFHEAL",
      "title": "An spt-hosted endpoint's ONLINE+CONTROLLED state (`driven_by`) must CLEAR even when the detach IPC is lost — do NOT rely on the detach signal (same lesson as REQ-HAZARD-HOSTED-LIVENESS-RECONCILE B2): the reconcile loop clears `driven_by` when the endpoint has no live controller/session. Today a wedged or lost pump never delivers the detach, so the endpoint stays latched CONTROLLED forever. Composes with W1 (the wedge no longer blocks the detach) and rides the same pull-primary reconcile substrate as B2. (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 735
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 797
            },
            {
              "path": "crates/spt-daemon/tests/driven_by_selfheal.rs",
              "line": 21
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/driven_by_selfheal.rs",
              "line": 238
            },
            {
              "path": "crates/spt-daemon/tests/driven_by_selfheal.rs",
              "line": 401
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2233
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2411
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1173
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-DROP-FILE-SINGLE-WRITER",
      "title": "Drop files are daemon-owned single-writer (6.4)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 25
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 26
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 198
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 222
            },
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 274
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 225
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-EBUSY-RENAME",
      "title": "tmp-write + atomic-rename + retry on Windows EBUSY (5.2)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 57
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 73
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 92
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 144
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 161
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 232
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 245
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 320
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 338
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 351
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ECHO-BEFORE-SIGNOFF",
      "title": "Echo-commune fires before INIT_SIGNOFF on orphan teardown (3.3)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1235
            },
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 26
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 150
            },
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 208
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-EFFECT-JOURNAL-PTY-WEDGE",
      "title": "The effect journal serializes EVERY PTY effect under one mutex held ACROSS two fsyncs AND the blocking PTY write — so interactive input stutters and ultimately wedges the daemon hard. ROOT (doyle /diagnose, code-grounded + MEASURED on the operator's real Windows box, 2026-06-19): EffectJournal::apply_once (effect.rs:168-188) takes `inner.lock()` and holds it across `write_line(PENDING)` → `effect()` → `write_line(DONE)`, where write_line (effect.rs:235-239) does flush()+sync_all() (a full FlushFileBuffers) — so each effect pays TWO fsyncs under a GLOBAL lock, and the closure `effect()` (the actual PTY write, broker.rs:1257 EffectKind::PtyWrite via attach.rs:197 send_effect) runs while the lock is held. Two operator-visible facets, ONE root: (A) STUTTER/LAG — every keystroke is a PtyWrite effect = 2× sync_all serialized; measured fsync on %LOCALAPPDATA%\\spt-core = median 6.5ms, spikes to 198ms (C: was recently at 100%), so ~13ms+ per keystroke best case, hundreds under contention → 'many but not all keypresses take 100s of ms, choppy, worsens with volume'. (B) HARD PERMANENT WEDGE — when a PtyWrite `effect()` blocks (ConPTY input buffer full / harness not draining stdin), the journal lock is held INDEFINITELY → the single-threaded inbound-stream dispatch (dispatch.rs serve_attach, which both applies input effects AND opens attaches) can never progress → EVERY subsequent attach (`spt rc --view`/`--take`) fails with 'attach request: brain IPC read deadline elapsed' (confirmed: two retries deadline identically; broker control-plane KIND queries still answer — different thread). This REFUTES the W2-deferred ruling that park-(b)/(c) is 'Windows-benign because ConPTY absorbs 4MiB' — on the real box the input path wedges regardless. DISTINCT from W1 (REQ-HAZARD-INJECT-CONTROL-COEXIST = the OUTPUT drain, correctly fixed @8b5583e; output uses broker.rs:1106 append, NOT the fsync journal). This is the INPUT/effect-journal path W1 never touched, and it is THE wedge the operator hits with --take/--view. FIX DIRECTION (candidates, repro-first — extend inject_control_wedge.rs to a REAL backed-up-PTY-consumer + a real rc-client attach assertion, the gap W1's gate missed): (1) do NOT hold the journal lock across effect() — reserve the key + fsync PENDING under lock, RELEASE, run effect(), re-acquire to fsync DONE + mark applied (preserve crash-idempotency via the per-key reservation, not a global hold); (2) bound/fail-fast the PtyWrite itself (the W2-deferred park bound — write_input must never block indefinitely, DSR-answer must not hold the writer mutex across a blocking write); (3) drop per-keystroke fsync on the interactive path — PtyWrite effects are EPHEMERAL (a keystroke lost on a broker crash is retyped; PTY state is not reconstructed from keystroke replay), so in-memory applied-set dedup suffices (the broker survives the brain — that IS the dedup anchor), with async/batched fsync or no-fsync for EffectKind::PtyWrite while durable kinds (NetSend/NetDial/Registry/Spool) keep their fsync. Combine (1)+(3) at minimum. Add a KNOWN-HAZARDS.md entry on landing. (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 120
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 415
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 873
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 822
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 881
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ELEVATED-DAEMON-SPAWN",
      "title": "The daemon always runs unelevated in the invoking user's universe, regardless of which command spawns it: an elevated spawner de-elevates (Windows: UAC linked token via CreateProcessWithTokenW; Linux: drop to SUDO_UID/SUDO_GID + the invoker's HOME) — an elevated daemon's pipes deny unelevated clients (every later spt reads not-running→spawn→bind Access-denied) and a sudo'd daemon roots the user's state universe (5.7)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 214
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 56
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 587
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 36
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 59
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 83
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 140
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 159
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 384
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 535
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 581
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 300
            },
            {
              "path": "crates/spt/src/main.rs",
              "line": 86
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 813
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 854
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 928
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ENDPOINT-RUN-ATTACH-OUTPUT",
      "title": "A clean `spt rc` attach to a LIVE spt-hosted (`endpoint run`) harness must DELIVER the harness's PTY output. KEYSTONE — the operator's central 'attach shows no output' symptom, reproduced on the real dummy-harness fixture (v0.12.1 Wave 1) with NO death and NO wedge: bringup succeeds (online, harness pid alive + heartbeating, psyche hosted), the attach CONNECTS (PUMP_IPC_READER spawned, no RC_FAIL, holds the full window) — but receives EXACTLY 0 bytes over 10s of the harness's flushed [session.self] stdout. DISTINCT from REQ-HAZARD-VIEWER-CLOSE-DETACH (death) and REQ-HAZARD-ATTACH-WEDGE (dead-child backpressure): here the harness is ALIVE and the attach is a clean first subscribe. This BLOCKS the 'view is independent' invariant — re-attach is meaningless if a live endpoint-run harness shows nothing. KNOWN-GOOD (rules out 'no drain'): attach.rs `local_attach_via_loopback_conn_rides_the_same_pump` + `broker_spawns_the_pty_child_in_the_requested_cwd` prove the broker DOES drain+fan a `spawn_session` PTY child to a loopback attach over the SAME transport rc uses. Both spawn_session and endpoint-run's spawn_session_pid send KIND_SPAWN → the same dispatch_spawn (broker.rs:706/835) which starts the per-session drain+OutputLog — so the gap is NARROWER than 'no drain', endpoint-run-specific. Root candidates: (a) spawn_session_pid's SpawnReq stdio/env/cwd differs so the dummy's stdout isn't the captured ConPTY; (b) the harness stdout WRITE BLOCKS because the ConPTY buffer fills (drain not reading THIS pty) — explains alive-but-0-bytes; (c) ConPTY reader-park (KH 7.6) on this path; (d) `spt rc` resolve_session/subscribe for an endpoint-run session subscribes to the wrong/empty log. (v0.12.1)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 233
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/dummy_harness_e2e.rs",
              "line": 311
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 468
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ENV-SUBST",
      "title": "`spt endpoint run` HONORS manifest [env.<VAR>] direction=inject values (with {key} substitution) on the spt-hosted spawn. Today only the [session.self] command ARGV is {id}-substituted; the [env] inject value is NEITHER substituted NOR applied — manifest.schema.json promises EnvVar.value = 'Value to inject (with substitution)' but prepare_harness_spawn fills only argv and SpawnReq carries no env, so a [env.SPT_ENDPOINT_ID].value='{id}' arrives EMPTY. A FLAGLESS harness (bare `claude`, no argv slot for {id}) then routes the id via [env] → empty → SessionStart sees empty $SPT_ENDPOINT_ID → seeds-by-PPID instead of binding → ZERO perch → NO_PERCH (the actual wall-b bind blocker; perri hard-repro'd). SILENT failure (empty inject, no error). FIX (doyle ruled a): fill every [env] inject value from the SAME {key} catalog as argv/role (mirror F-009 TEMPLATE fill, whole-string fill_template for an env value), thread it through SpawnReq.env → the broker sets it on the spawned PTY child. Correctness fix — schema already promises it, NO manifest change, NO new binary. PAIRS with REQ-SEND-SPT-HOSTED to make endpoint run fully work. doyle F-013. (post-v0.10.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 159
            },
            {
              "path": "crates/spt-term/src/pty.rs",
              "line": 134
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 322
            },
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 543
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 449
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ENVELOPE-CR-LINESAFE",
      "title": "Envelope CR-linesafety (4.1): the line-framed EVENT codec must neutralize raw carriage returns — `event_body_escape` folds CRLF/lone-CR to the codec's representable linebreak (`\\n`→`<br>`) BEFORE framing, so a body carrying `\\r` (Windows `echo`/CRLF text crossing nodes) cannot survive into the single-line envelope and trigger a receiver terminal CR→col0 overwrite that corrupts the frame. Robustness on unrepresentable input, NOT a wire-format change (decoder untouched, amp-last invariant held). Belt-and-suspenders: `spt send`/`ring` also trim stdin (parity with `notify`).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 31
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 181
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ENVELOPE-DECODE-ORDER",
      "title": "Envelope decode order, ampersand decoded last (4.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 49
            },
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 81
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 156
            },
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 173
            },
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 196
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ENVELOPE-PARSER-SAFE",
      "title": "Two-slice envelope parser is panic-free and tolerant (4.2)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 120
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 212
            },
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 221
            },
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 229
            },
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 239
            },
            {
              "path": "crates/spt-proto/src/envelope.rs",
              "line": 249
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-EPHEMERAL-CLEANUP",
      "title": "Ephemeral perch cleanup on every ring exit path (3.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 14
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 63
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 168
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 202
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 224
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-EPOCH-RESET",
      "title": "Advertisement-epoch reset strands a node: peers' higher last-seen epoch drops the reset node's fresh advertisements as Stale until the counter outruns history. Common case (full reinstall/re-pair) is mitigated by REQ-SUBNET-7's ceremony eviction (peer-side epoch memory dies with the deleted row — acceptance-verified); the residual narrow slice (epoch file lost, identity kept) is documented, guard deferred to a field hit (4.11)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 165
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-EPOCH-SINGLE-WRITER",
      "title": "The canonical identity/epoch has exactly one live writer: all live-brain mints funnel through the single Arc<RegistryHost> Mutex<EpochSource>; any non-brain minter (broker D6 rollback notif, CLI) runs only in brain-dead windows or behind a lock",
      "requiredStages": [
        "doc"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 309
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-EVENTPART-REASSEMBLY",
      "title": "EVENT-PART split/reassembly is byte-exact; orphan parts dropped silently",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 76
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 167
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 233
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 272
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 321
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 329
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 356
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 395
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 406
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 418
            },
            {
              "path": "crates/spt-proto/src/chunk.rs",
              "line": 442
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-GEN-START-NOW",
      "title": "gen_start = now() on cold-start and handoff (2.4)",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 22
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/handoff.rs",
              "line": 18
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-GRACE-BEFORE-SIGNOFF",
      "title": "Grace-period wait completes before composing INIT_SIGNOFF (1.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1234
            },
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 27
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2527
            },
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 181
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-HANDOFF-ARGV-COMPAT",
      "title": "Broker/brain IPC + handoff argv version-tolerant (2.3)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 73
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1039
            },
            {
              "path": "crates/spt-daemon/src/frame.rs",
              "line": 20
            },
            {
              "path": "crates/spt-daemon/src/frame.rs",
              "line": 100
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 775
            },
            {
              "path": "crates/spt-daemon/src/transport.rs",
              "line": 68
            },
            {
              "path": "crates/spt-daemon/src/transport.rs",
              "line": 80
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/n1_pairing.rs",
              "line": 44
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1252
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1268
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4486
            },
            {
              "path": "crates/spt-daemon/src/frame.rs",
              "line": 152
            },
            {
              "path": "crates/spt-daemon/src/frame.rs",
              "line": 175
            },
            {
              "path": "crates/spt-daemon/src/frame.rs",
              "line": 186
            },
            {
              "path": "crates/spt-daemon/src/frame.rs",
              "line": 202
            },
            {
              "path": "crates/spt-daemon/src/frame.rs",
              "line": 216
            },
            {
              "path": "crates/spt-daemon/src/transport.rs",
              "line": 137
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13405
            },
            {
              "path": "crates/spt/tests/n1_compat.rs",
              "line": 30
            },
            {
              "path": "crates/spt/tests/n1_compat.rs",
              "line": 73
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-HOSTED-LIVENESS-RECONCILE",
      "title": "B2 KEYSTONE: a daemon-hosted (spt-hosted) endpoint's info.json status is RECONCILED to real liveness, not left latched online. The broker exit-waiter (broker.rs:889-910) reaps its in-mem session table + emits ExitEvent but NEVER touches info.json; lifecycle::mark_offline only fires on Psyche teardown — so a dead/exited harness (operator closed the tab) stays status=online forever (is_perch_alive returns ONLINE for daemon-hosted, liveness.rs:80-93). FIX (doyle ruled PULL-PRIMARY — the live-status analog of REQ-HAZARD-ROSTER-GHOST): the livehost reconcile loop (reconcile_once livehost.rs:226-313) queries the broker's live session set (KIND_SESSIONS) each tick and, for any status=online live_agent perch PAST the boot grace whose endpoint has NO live broker session, marks it offline (lifecycle::mark_offline → status=offline → is_perch_alive=false). GATED on spt-hosted (controllable==Some(true)) so a HARNESS-HOSTED relay live agent (api listen, legitimately online with no broker session) is NEVER mis-marked. Crash-robust + self-healing on the next tick (clear-on-event is not crash-robust alone). PUSH (brain ExitEvent→mark_offline) is an OPTIONAL fast-path only if the daemon brain is reliably subscribed to all hosted sessions; correctness rides the pull. Broker stays stateless (ADR-0004 §B — brain owns the info.json write). (v0.12.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 672
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1024
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1444
            },
            {
              "path": "crates/spt/tests/attach_wedge_e2e.rs",
              "line": 315
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1105
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ID-CHARSET",
      "title": "Addressable-id charset reserves :/@ delimiters; validated at every creation seam (4.6)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 133
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 65
            },
            {
              "path": "crates/spt-proto/src/id.rs",
              "line": 17
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 146
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 413
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 551
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 53
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 68
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1805
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10260
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10561
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/id.rs",
              "line": 94
            },
            {
              "path": "crates/spt-proto/src/id.rs",
              "line": 111
            },
            {
              "path": "crates/spt-proto/src/id.rs",
              "line": 124
            },
            {
              "path": "crates/spt-proto/src/id.rs",
              "line": 134
            },
            {
              "path": "crates/spt-proto/src/id.rs",
              "line": 144
            },
            {
              "path": "crates/spt-proto/src/id.rs",
              "line": 156
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 746
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 309
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-IDLE-SILENT-NONDELIVERY",
      "title": "An idle delivery to a session whose translation binary is in a FAILED STATE — absent (none declared), spawn-failed, FAULTED, or its inject-worker channel gone — must SPOOL (delivered=false), never raw-inject a pseudo-delivery reported as delivered. The GUARANTEE is the STEADY STATE (the failed-binary state), not every in-flight message (see the fault-transient carve-out below). ROOT (F-019 post-mortem, ADR-0022 amendment): the v0.11.0 path raw-injected `payload+\\r` into the PTY whenever no working translation binary handled an inbound message (none declared, spawn-failed, FAULTED, or its inject-worker channel gone) AND acked `delivered=true` — but a bare `payload+\\r` does NOT submit on a modern TUI (Claude Code), so the message was TYPED but never sent: a silent pseudo-delivery reported as success. That silent degrade-to-raw-inject is exactly what MASKED F-019 through a multi-hour black-box hunt. FIX (operator-ruled, doyle-scoped): idle delivery is translation-binary-ONLY — `dispatch_endpoint_input` with no working binary replies `endpoint_injected_envelope(ep, delivered=false)` (the caller `try_broker_inject`→`cmd_send` then falls through to `deliver::send` = SPOOL, poll-fed, never lost) and writes NOTHING to the PTY, LOUDLY (eprintln names the absent/faulted/worker-gone cause). A failed binary becomes a VISIBLE no-delivery (spooled + honest QUEUED report), never a confident-but-false 'Sent'. The raw-inject fallback (`input.enqueue`) is REMOVED from the no-binary, worker-dropped, AND post-fault paths. OUT OF SCOPE (doyle ruling, follow-up note only): broker-side auto-redrive of already-spooled inbound the instant a live-update binary spawns (ordering/exactly-once hazards; the poll substrate + subsequent sends cover re-delivery). NOT COVERED — the FAULT-TRANSIENT (the STATE-vs-transient precision): a delivery landing in the worker's commit window — BEFORE `event_rx` is dropped / `faulted` is set — can be optimistically enqueue-acked (`delivered=true` the instant `event_tx.send` succeeds) then DROPPED when the worker faults+returns. That is a SEPARATE, PRE-EXISTING hazard: raw-inject removal did not touch it (the old code dropped that queued event too) — v0.14.3 is a strict improvement that makes nothing worse. It is tracked for v0.15.0 under REQ-MSG-DELIVERY-AXES (the spool-centric delivery redesign: ack-on-SPOOL replaces ack-on-enqueue, which closes the optimistic-ack drop naturally). v0.14.3 guarantees only the steady FAILED state → spool (faulted is MONOTONIC — set once, never respawns — so it converges deterministically; the g2 gate asserts the steady state via bounded-retry-until-spool, not a single-shot ack). EPHEMERAL CARVE-OUT (v0.15.0 W3, ADR-0028): `--ephemeral` is the SOLE sender-opted-in exception — an ephemeral message MAY drop silently if it cannot deliver in its accepted window (at window-open with no live carrier, or at TTL). Every NON-ephemeral path still spools + reports `delivered=false` (the guarantee is unchanged for the default durable path). v0.15.0 realizes the ephemeral drop for the spt-hosted-binary no-carrier-at-window leg + TTL; the harness-relay no-live-listener leg is a documented partial (CONTEXT.md §persistence). KNOWN-HAZARDS class (rule 4). (v0.14.3; ephemeral carve-out v0.15.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 510
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3510
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 198
            },
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 544
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 480
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1480
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1267
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INBOX-NO-DOUBLE",
      "title": "No double-delivery via legacy inbox (4.5)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 128
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 248
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INFO-JSON-TORN-READ",
      "title": "State-file reads tolerate concurrent writes (1.2)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 530
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 565
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 583
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 608
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 629
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 1142
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 1153
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 1166
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INFO-RMW-LOST-UPDATE",
      "title": "Concurrent info.json writers must serialize under the per-perch lock (5.16): an unlocked whole-record write racing a locked RMW is a silent lost update",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 278
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 268
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 327
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 532
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 546
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 54
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 1203
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INJECT-CONTROL-COEXIST",
      "title": "SPINE INVARIANT (v0.13.0 keystone): the broker must accept INJECTED keystrokes into an spt-hosted PTY (the v0.11.0 raw direct-inject today; the ADR-0022 translation-binary choreography tomorrow) WHILE a live `spt rc` controller is attached to the SAME PTY, without (a) the operator losing control, (b) the endpoint latching ONLINE+CONTROLLED, or (c) the broker wedging. The injection inlet is PERMANENT — spt-claude-code requires keystroke injection — so this is root-caused + fixed at the PTY-injection layer, IN STEP with the ADR-0022 delivery redesign that formalizes the inlet. REOPENS the wedge facet of REQ-HAZARD-ATTACH-WEDGE: the v0.12.1 prove-don't-change covered only DEAD-CHILD backpressure, NOT the injection trigger (operator's signal — one injected keystroke succeeds, the next wedges → the single-threaded broker parks on a blocking PTY/loopback write after injection-induced harness output). REPRO-FIRST on the real dummy-harness fixture (NO theory): instrument to nail the exact blocking call before any fix. Fix candidates: non-blocking/fail-fast PTY write, split input/output, bounded-evicting. Mechanism shared with W2 — spt-core owns EVERY PTY write and applies an injected sequence ATOMICALLY (controller input buffered during the sequence, flushed after) so a stash/restore can't be clobbered. CONFIRMED ROOT (doyle /diagnose 2026-06-19, code-grounded): Broker::append (broker.rs:205-227) fans each live output chunk to the CONTROLLER on a SYNCHRONOUS BLOCKING write_frame held inline in the session's drain thread (the 'authoritative, advances delivered_through' path, D4-1), while VIEWERS use a dedicated writer thread + bounded evicting sync_channel (add_viewer:273 / viewer_writer) that can never stall the drain. So a slow/backed-up controller socket — or the full 64KB loopback duplex (the ATTACH-WEDGE buffer) — BLOCKS the drain thread → output stalls → keystroke echoes stall (PERCEIVED input lag) → unrecoverable wedge when the consumer never drains. TRIGGERS ON NORMAL INTERACTIVE rc USE under heavy harness output (TUI redraw), NOT only message injection — same root, wider repro. FIX DIRECTION: move controller delivery off the drain thread onto a dedicated writer (the viewer_writer pattern) BUT preserve the authoritative cursor — block the WRITER thread (not the drain), bound the wedge (deadline → detach/mark-gone, never park forever), never silently evict the operator's authoritative view. (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 729
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1414
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2038
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2102
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 353
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4614
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INJECT-SETTLE-REARM",
      "title": "post-0.29.0 (KNOWN-HAZARDS 7.37): the Layer-1 settle-gate must RE-ARM before every delivery on an OBSERVABLE (echoing/interactive) PTY — a mid-session reader reattach re-creates the head-swallow window. ROOT (field-confirmed on 0.29.0, doyle diagnosis + perri screenshot): the shipped W5-A settle-gate (REQ-INJECT-MULTILINE-INTEGRITY) gated Layer 1 behind a worker-local ONE-SHOT (`settled_once`) on the false premise that the head-swallow race is STARTUP-only (reader not attached after spawn). A mid-session `/clear` re-enters the harness's raw-mode input reader, re-creating the pre-settle window — but the one-shot already fired at spawn, so `settle_before_inject` is SKIPPED and the head is eaten again (a checkpoint-wake payload injected right after `/clear` lost its head, mid-path `spt/Cargo.toml)`); echo-verify (Layer 2) is default-OFF for that session, so it is silent + unrecoverable. FIX (doyle ruling): re-settle before EVERY delivery on an observable PTY; latch-skip the steady-state settle ONLY where the probe is UNOBSERVABLE (non-echoing ConPTY — no reader-reattach race to guard, and each settle burns the full deadline). The settle's own bool return (observed vs timed-out) discriminates the class; a re-drive (attempt>1) ALWAYS settles. `settled_once: bool` one-shot → `probe_unobservable: bool` latch driven by the first-attempt settle outcome.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 632
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1948
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4951
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INJECT-WORKER-POISON",
      "title": "The per-session inject-worker floor Mutex is SHARED by the inject worker (open/flush) and the controller-input path (dispatch_input Layer C buffer_if_held); a panic under the lock on EITHER poisons it, and a bare .lock().unwrap() at the next site then panics too — a panic in the inject WORKER kills its thread WITHOUT reaping the translation child, orphaning a live binary while event_tx.send fails, so force-native reports 'worker-gone' delivered=false FOREVER (the F-e generic-miss shape). HARDENING, NOT the F-e incident root (perri's matrix exonerated poison under thrash/dormancy/churn): (i) poison-tolerant floor lock (unwrap_or_else into_inner) at all 3 sites so one panic can't cascade the session's delivery dead; (ii) a panic-resilient inject worker (catch_unwind -> fault+terminate the child on a worker panic) so a dead worker never orphans a live binary + strands delivery. Poison-tolerance class of REQ-HAZARD-EFFECT-JOURNAL-PTY-WEDGE / bug #16.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1704
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1888
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4771
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5027
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INPUT-ACK-BACKPRESSURE",
      "title": "A FLOOD of operator input on one brain↔broker connection deadlocks the broker PERMANENTLY (entire broker — no new/existing attach; the controller stays latched because the per-conn handler can't process the detach). ROOT (doyle /diagnose, code-grounded + HITL capture, the v0.13.0 P1 ctrl+V re-open): `serve_attach` processes a whole `NetStreamData` batch of N operator `Input` records in its inner `for rec in decoder.push()` loop, calling `brain.send_effect(op_id, &bytes)` N times WITHOUT returning to `read_event()` — so the brain writes N `KIND_INPUT` frames back-to-back and drains nothing. The broker's single-threaded per-conn handler answers EACH with `send_frame(applied_envelope)` on the SAME conn (B5 exactly-once ack, KNOWN-HAZARDS 7.2). With the brain not reading, the broker→brain return direction fills (~10 frames = the IPC pipe buffer) → `send_frame` BLOCKS → the handler stops reading → the brain's writes block too → mutual full-duplex DEADLOCK. Capture pinned it: 11 input frames, write_input 11/11 (P0 holds — the PTY write is fine), ack send START=11 / END=10 (frame #11's applied-ack never returns). Same class as the v0.12.1 L0 two-conn split. Windows Terminal's ctrl+V paste accelerator was the trigger (injects the clipboard as a char-by-char key flood) but the deadlock is generic to ANY input flood, NOT ctrl+V-specific and NOT a P0 (PTY-write) or W1 (output-drain) regression. The applied-ack is load-bearing ONLY for `shellchan` (one-at-a-time spool delivery WAITS on `BrokerEvent::Applied`); `serve_attach` DISCARDS it (the operator/rc path is fire-and-forward, op_id for dedup only, never gates on the ack). FIX (doyle-approved): CONDITIONAL ACK — `InputReq` gains `ack: bool` (serde default = true, N-1-safe: an older brain's input still acks = today's behavior). `serve_attach`'s operator path calls `send_effect_no_ack` (ack=false) → `dispatch_input` writes NO applied frame → the per-conn handler never writes back while servicing the flood → it always drains → no deadlock (cures ANY input flood). `shellchan` keeps `send_effect` (ack=true) and its `Applied`-wait. Exactly-once PRESERVED: the broker still dedups by (session, op_id) at the applied-set regardless of the ack. N-1 caveat: an OLD resident broker (self-update window) ignores `ack=false` → still acks → the deadlock persists until a broker restart (inherent KNOWN-HAZARDS 7.9 broker-resident-wire-change class). (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 483
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 397
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 525
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3327
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 425
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 776
            },
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 893
            },
            {
              "path": "crates/spt-daemon/tests/input_ack_deadlock.rs",
              "line": 269
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1307
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1341
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-INSTANT-UNDERFLOW",
      "title": "Scheduling never subtracts a Duration from Instant::now() (underflow-panics on a host booted more recently than the offset); 'due now / never run' is Option<Instant>=None gated on forward duration_since only (5.9)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 767
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 881
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-LISTEN-ORPHAN",
      "title": "W4 (LIFECYCLE-TRUTH, KNOWN-HAZARDS): `api listen --parent-pid N` watches parent liveness and exits loud on parent death. ROOT (mobile-gw RCA): --parent-pid is auth-anchor ONLY — no liveness watch; host death orphans the listener forever -> perch held alive (false ONLINE), EVENTs stream to a dead stdout, dead-owner rebind BLOCKED (recorded pid = the live orphan). FIX: listener watches --parent-pid liveness (Windows: job object or poll; Unix: PDEATHSIG or poll) and exits loud on parent death. flynn's job-object guard (spt-mobile side) stays regardless; filed SPT-CORE-NEEDS §5. Unit: parent-death -> listener exits within one poll window.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 369
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 376
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 393
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 523
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 669
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 713
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-LIVEHOST-BOOT-LIVENESS-GATE",
      "title": "B5: `spt daemon start` does NOT revive phantom Psyches for dead-but-online-latched perches. Today reconcile_once (livehost.rs:285) spawns a Psyche per status=online live_agent perch at boot WITHOUT verifying the harness child / {id}-psyche is actually alive — so a Cold start after an unclean stop revives N psyches for N dead-but-latched perches (3 psyches for 3 dead perches). FIX: gate the boot psyche-spawn on real child-liveness — a perch with NO live broker session (the B2 reconcile signal) is marked OFFLINE at boot instead of hosted, so a dead-harness perch is never revived. Shares the B2 reconcile loop (this is its boot-gate arm); composes with B2's honest latch. Also closes wall-a's psyche_host_error gap (residency-confirm does not run at boot tick-1, livehost.rs:395-441 / 257-263). (v0.12.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1025
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/livehost_bootgate_e2e.rs",
              "line": 24
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1257
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-LIVEHOST-BOOT-RACE",
      "title": "The brain's daemon-hosted Psyche lifecycle surfaces a host-FAILURE on the live perch (harness-diagnosable) and runs net-INDEPENDENTLY. When reconcile_once→host_one→spawn_psyche fails for a state=live_agent+status=online endpoint (e.g. the adapter's psyche binary absent from its install dir, REQ-INSTALL-11), the failure MUST be written to the perch info.json as a CURRENT-STATE field (reason + ts + attempt count; overwritten each 5s retry, CLEARED on successful host) and surfaced by `spt endpoint list`/status — never left as an eprintln on the brain's invisible stderr where a harness reading only perch state is blind. status=online stays authoritative (agent reachable; only the Psyche is missing — brain-restart rehydrate legitimately has online-without-Psyche windows), so this is a SEPARATE psyche-host-health field, never a status de-stamp. Net-independence is a locked-in invariant: spawn_live_host (brainproc.rs:230) reaches the reconcile and hosts the Psyche on a net-less/unpaired/peer-pump-STALLED node, proven by a REAL detached-daemon E2E (real broker→brain-child, real api seed+listen, real install-dir psyche binary). spt-core SURFACES the failure; the adapter owns fixing its packaging.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 450
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2932
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6012
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 991
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13058
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-LIVEHOST-NONRESIDENT",
      "title": "A daemon-hosted Psyche that spawns then EXITS IMMEDIATELY is a host failure, surfaced like a spawn failure (closes the v0.8.1 residual masking): the REQ-HAZARD-LIVEHOST-BOOT-RACE signal stamps `psyche_host_error` only when `spawn_psyche` returns Err, NOT when the detached spawn() returns Ok but the child dies within moments (e.g. a bad-argv child exiting 2 — the F-009 case). That leaves the residual 'online + no Psyche + no cause' gap: the nested `{id}-psyche` info.json is written status=online with a real-but-DEAD pid and the PARENT perch carries NO psyche_host_error (perri's F-010: tasklist showed 0 host procs across the window while info.json read online). The host MUST confirm RESIDENCY — a hosted child not alive (or whose `{id}-psyche` perch never re-registers / has a dead pid) within N seconds of spawn is treated as a host failure: stamp the parent perch `psyche_host_error{reason:\"host not resident within <n>s (psyche perch missing/dead pid)\"}` (and do not leave a phantom online nested perch). Closes the last masking gap the v0.8.1 fix left open. perri's F-010 (v0.8.1 dogfood). Sibling of REQ-HAZARD-LIVEHOST-BOOT-RACE.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-LOCAL-API-AUTH",
      "title": "Every local `api` mutation authenticated to an endpoint/session (codex #13)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 14
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 621
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 260
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 268
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 276
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 284
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 292
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 300
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PAIR-RATE-LIMIT",
      "title": "Subnet-global pairing rate limit: one active ceremony per subnet, shared attempt counter, exponential backoff — a public pre-trust relay + multiple seed-holders otherwise enables distributed SPAKE2 guessing (and ±1 TOTP window triples the valid-password space) (ADR-0005 #11)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 34
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 188
            },
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 200
            },
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 211
            },
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 253
            },
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 277
            },
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 300
            },
            {
              "path": "crates/spt-net/src/net/pairing/ratelimit.rs",
              "line": 316
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PAIR-SEED-ROTATION",
      "title": "Removing a node rotates the subnet seed (epoch bump) so an old node/old seed cannot rejoin; trust-store delete alone is NOT revocation because the seed is replicated to every trusted node (ADR-0005 #10)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 29
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 174
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 194
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 222
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 329
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 344
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 417
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 433
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 492
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 506
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 517
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 528
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PAIR-TRANSCRIPT-BIND",
      "title": "Pairing transcript binds roles, both node pubkeys, subnet ID, seed epoch, TOTP time-step, and confirmation MACs — or unknown-key-share/reflection/wrong-subnet/replay pairing remain possible (ADR-0005 #12)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 27
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 110
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 153
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 182
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 31
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 113
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 138
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 261
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 276
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 293
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 310
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 327
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 366
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 179
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 194
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 204
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 259
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 269
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 283
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PARENT-PID-PREFER",
      "title": "Prefer stable parent PID / broker handle over ephemeral PID (2.1)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-PERCH-RECORD-POWER-LOSS",
      "title": "Authoritative/identity records fsync data before the rename (5.13): a hard reset must not resurrect a full-length NUL-filled record — SCOPED, not a blanket fsync",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 257
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/machineid.rs",
              "line": 131
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 93
            },
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 99
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 531
            },
            {
              "path": "crates/spt-store/src/nodeid.rs",
              "line": 94
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 257
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PSYCHE-OUTBOUND-PROXY",
      "title": "Psyche outbound captured + sanitized: the live-Psyche turn driver captures stdout (never Stdio::null), and the daemon strips/re-stamps Psyche-supplied from=/target and constrains routing (reply→__REPLY_TO__ sender, notify→own user/subnet) (7.3)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 26
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 95
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 166
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 19
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 50
            },
            {
              "path": "crates/spt-live/src/turn.rs",
              "line": 18
            },
            {
              "path": "crates/spt-live/src/turn.rs",
              "line": 71
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 87
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 289
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 314
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 350
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 418
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 429
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 460
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 471
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 77
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 97
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 112
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 123
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 130
            },
            {
              "path": "crates/spt-live/src/outbound.rs",
              "line": 145
            },
            {
              "path": "crates/spt-live/src/turn.rs",
              "line": 115
            },
            {
              "path": "crates/spt-live/src/turn.rs",
              "line": 130
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 428
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PSYCHE-RESIDENCY-EXPECTATION",
      "title": "W3 (F030 hazard; paid-for: hall-bf churn ordinal 6491+ + adapter v0.13.2 bad-ship brick 2026-07-04): a psyche failure of ANY shape must NOT remove or alter the parent endpoint's ready/hosted state, and hosting must NOT churn-respawn. The v0.13.2 shim-exit tripped the residency machinery (confirm_residency_or_unhost) which tore down the endpoint's hosted state — ready marker removed, never re-stamped, every force-native gated leg=cli-gate-not-hosted PERMANENTLY (field brick). FIX: residency machinery retires with the resident child; the teardown that touches parent hosted state is DELETED — psyche trouble stamps psyche fields only. REQ-HAZARD-LIVEHOST-NONRESIDENT's spirit transfers to the W1 failure budget (its entry gets a SUPERSEDED pointer here, LIVENESS-DECAY→SUPERSEDED pattern from C-1). Conformance int = the hall-bf shape: multi-subnet home, live endpoint, failing psyche → parent stays deliverable, no rehost churn, error stamped (the wave's heart).",
      "requiredStages": [
        "doc",
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 584
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 706
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 71
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1183
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 184
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 633
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/psyche_residency_expectation_e2e.rs",
              "line": 43
            },
            {
              "path": "crates/spt-daemon/tests/psyche_residency_expectation_e2e.rs",
              "line": 118
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1835
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PTY-INPUT-WRITER-WEDGE",
      "title": "Pasting into an `spt rc` session WEDGES the broker — after a paste the operator can no longer type AND can no longer attach to NEW or EXISTING sessions (`brain IPC read deadline`). ROOT (doyle /diagnose, code-grounded): the operator-keystroke path rc -> net-stream Input -> serve_attach (attach.rs:197 brain.send_effect) -> KIND_INPUT -> broker dispatch loop (broker.rs:1091) -> dispatch_input (broker.rs:1459) -> session.write_input(&bytes) runs SYNCHRONOUSLY on the broker request-handling thread. W1b (REQ-HAZARD-EFFECT-JOURNAL-PTY-WEDGE) released the journal lock across the effect (fix 1) + made PtyWrite ephemeral/no-fsync (fix 3) but EXPLICITLY DEFERRED fix (2) — bound/fail-fast the PtyWrite itself. A single keystroke never fills the ConPTY input buffer; a PASTE BURST does -> write_input blocks -> the dispatch thread cannot service the next frame (a re-attach subscribe, a become_controller restore-write, an inject-floor flush) -> wedge. Not a bug-2 regression (the byte path funnels to the same write_input; paste just reliably fills the buffer). FIX (doyle design, docs/V0.13.0-P0-PTY-INPUT-WRITER-DESIGN.md, CONTEXT L33 broker-owns-PTY/minimal + L435 SessionSurface + single-writer pattern): one dedicated per-session INPUT-WRITER THREAD = the SOLE caller of the blocking write_input, fed by a BOUNDED FIFO channel; every caller (dispatch_input, serve_attach->send_effect, inject-floor flush) ENQUEUES + returns immediately, never blocks. A blocked/slow harness blocks ONLY its own writer thread, never the broker dispatch. Backpressure (operator ruling): queue full => DROP excess input + stamp the session INPUT_BACKPRESSURE (visible health signal); the daemon NEVER wedges; a merely-slow harness self-heals as the writer drains. Exactly-once preserved (PtyWrite ephemeral: apply_once effect = the non-blocking enqueue => Applied; ack now means accepted+ordered, benign — rc does not gate on landing); order preserved (single FIFO + single writer); inject-floor (W2 Layer C) choreography moves to the lone writer. Completes the W1b-deferred fix (2), cross-platform (cfg(unix) forkpty park folds in). (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1640
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 413
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2762
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2802
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4658
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4722
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5096
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-PUMP-IPC-DEADLINE",
      "title": "The single-threaded peer pump's brain-IPC reads are deadline-bounded (PUMP_PEER_IO_TIMEOUT, total-wait per call); a TimedOut read POISONS the client and escalates to a SUPERVISED RESTART, never a per-peer retry — a black-holed peer must never wedge the whole pump",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 402
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 223
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 339
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 604
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 619
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1530
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 446
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 593
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 734
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1163
            },
            {
              "path": "crates/spt-daemon/tests/pumpdeadline.rs",
              "line": 30
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-RC-ATTACH-FAILFAST",
      "title": "B1: `spt rc <id>` to a DEAD or non-streaming session fails fast with a clear message, never an INFINITE blank screen. Today rc.rs run_attach (209-231) + pump spawns PUMP_IPC_READER and blocks: the poll times out each slice but the stream never produces output, so the operator sees a permanent blank (operator: fresh wall-f attached, closed tab, then `spt rc wall-f` HUNG — the broker still resolved a session for it). FIX: (a) once B2 lands, gate attach on is_online/status — an offline endpoint yields a clean 'endpoint offline, start it' not an attach; (b) fail-fast — if the attach-open ack / first output does not arrive within a bound, surface a clear message, never an infinite blank; (c) the broker EOFs the attach stream when the session's child is dead, so rc's existing PumpEnd::BrokerGone graceful path (REQ-HAZARD-RC-EOF) catches it. PIN the exact sub-mechanism with a repro test FIRST (dead-session-lingers-in-broker vs reaped-but-rc-waits vs alive-resting-no-wake — the wall-f Windows tab-close: child alive-silent vs dead-not-reaped). (v0.12.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1123
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1774
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 432
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2033
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2057
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-RC-ATTACH-ONLINE-RACE",
      "title": "`spt endpoint run` in an ATTACH/VIEW terminal action attaches BEFORE the freshly-spawned endpoint is online, so the attach races (or outright loses to) the harness bind. ROOT (doyle /diagnose, code-grounded): cmd_endpoint_run (cli.rs) does launch_harness_brokered_in -> (if start: return) -> run_attach with NO await-online between them. launch_harness_brokered_in returns once the harness PROCESS is spawned, but the broker-PTY bind (info status -> STATUS_ONLINE + the live session) lands ASYNC. Both picker attach paths route here with start=false (RunMode::Attach -> cmd_endpoint_run start=false,view=false): Start-now catches the endpoint mid-bringup -> run_attach attempts + loses the handshake race; Resume-from-history catches it still fully OFFLINE -> run_attach's status-gate (REQ-HAZARD-RC-ATTACH-FAILFAST) short-circuits 'offline - nothing to attach' and NEVER attempts. SAME root, two faces (the W4 attach-by-default surfaced both; an online endpoint is unaffected - the picker returns Outcome::Attach, not Run). FIX: in cmd_endpoint_run, when the terminal action is attach/view (NOT start), AWAIT the endpoint online between launch_harness_brokered_in success and run_attach - poll spt_store::info read_info().status to STATUS_ONLINE with a bounded harness-boot deadline (~25s) at a tight interval; on online -> run_attach; on timeout -> ENDPOINT_RUN_ONLINE_TIMEOUT err (do NOT attach a dead bringup). (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2357
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2378
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/dummy_harness_e2e.rs",
              "line": 345
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13422
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-RC-EOF",
      "title": "A severed broker stream during a live rc session surfaces GRACEFULLY, never as a raw io error that crashes the PTY. The rc read-loop (rc.rs:352-362) continues only on WouldBlock/TimedOut; ANY other read_event_until error — including UnexpectedEof 'failed to fill whole buffer' — returns Err → RC_FAIL → the PTY 'crashes' from the user's view. Confirmed trigger: a deliberate `spt daemon stop` (broker bounce) severs an active rc (perri stopped the daemon to release owlery watch handles). Same severed-broker-stream EOF class as the v0.9.1 seed fix (seed_fail_message) and the listener-death case — spt-core must classify a broker-gone EOF and (a) surface a CLEAR actionable message ('daemon stopped/restarted — re-run / reconnect'), never the raw buffer error, and ideally (b) AUTO-REATTACH to the same session on the fresh broker (the broker is the daemon-lifetime anchor; it returns on the next `spt api` call). FOLD two side-observations: (1) `spt daemon stop` SILENTLY drops active rc/live sessions — warn ('N active session(s) will drop') or graceful-detach on stop; (2) the daemon holds owlery WATCH HANDLES on perch dirs so a torn-down perch dir stays 'Device busy' until a full daemon stop releases them (perri's rt-* cleanup) — a torn-down perch's handle should release without a daemon stop. doyle Finding C, root-caused. (post-v0.10.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1797
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2598
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-RC-INPUT-KEY-ENCODING",
      "title": "An `spt rc` session forwards the Backspace key as the VT DEL byte (0x7f), so the hosted TUI (Claude Code) deletes ONE character — never a whole word. SYMPTOM (operator dogfooding): Backspace in an rc session always behaves like ctrl+Backspace — deletes the entire last word. ROOT (doyle /diagnose, code-grounded, byte PENDING HITL confirm): rc is a RAW VERBATIM byte pump — spawn_stdin_reader (rc.rs:152) reads std::io::stdin() bytes under crossterm raw mode and forwards them unchanged (parse_stdin_chunk only intercepts the ctrl-b detach prefix); there is NO key-event encoding and NO 0x08↔0x7f normalization ANYWHERE in the tree (grep: zero SetConsoleMode / ENABLE_VIRTUAL_TERMINAL_INPUT). On Windows, crossterm enable_raw_mode does NOT set ENABLE_VIRTUAL_TERMINAL_INPUT, so the LEGACY console delivers ^H (0x08, ctrl+h) for Backspace instead of VT DEL (0x7f); Claude Code maps ^H → backward-kill-word → the observed whole-word delete. CONFIRM-FIRST (build the loop): an env-gated hexdump in spawn_stdin_reader (SPT_RC_DEBUG_KEYS) prints the forwarded byte; operator presses Backspace + ctrl+Backspace in a real rc session. FIX CANDIDATES: (a) enable ENABLE_VIRTUAL_TERMINAL_INPUT on the rc stdin console on Windows so the console emits proper VT (Backspace→0x7f, arrows/Home/End as CSI) — cleanest, fixes the whole key map not just Backspace; (b) narrow normalize bare 0x08→0x7f in the rc input path (riskier — a real ctrl+h is also 0x08). Prefer (a) unless it regresses other keys. Add a KNOWN-HAZARDS.md entry on landing. (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 524
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2055
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2711
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2713
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-REGISTRY-CONCURRENT",
      "title": "Concurrent SQLite openers (registry/spool) must not fail with 'database is locked' (4.7)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 139
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/db.rs",
              "line": 29
            },
            {
              "path": "crates/spt-store/src/db.rs",
              "line": 67
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 101
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 30
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 99
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 162
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-REGISTRY-DIR-CREATE",
      "title": "SQLite store opens create their parent dir themselves — a fresh-home registry op must not SQLITE_CANTOPEN (4.9)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 151
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 22
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 298
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-REGISTRY-EPOCH-LEASE",
      "title": "Registry merge ordered by per-node monotonic epoch, never wall-clock — a stale Active can't clobber a newer Offline (4.8, red-team #8)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 145
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/update.rs",
              "line": 160
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 200
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 455
            },
            {
              "path": "crates/spt-store/src/epoch.rs",
              "line": 20
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1193
            },
            {
              "path": "crates/spt-daemon/tests/replicate.rs",
              "line": 89
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1285
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1304
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 290
            },
            {
              "path": "crates/spt-store/src/epoch.rs",
              "line": 82
            },
            {
              "path": "crates/spt-store/src/epoch.rs",
              "line": 99
            },
            {
              "path": "crates/spt-store/src/epoch.rs",
              "line": 119
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-REGISTRY-GHOST-ROWS",
      "title": "Registry rows must decay (no immortal rows) via TWO triggers: (a) NODE-SILENCE — evict rows whose author node has not been heard (admitted inbound feed) within the eviction window, so a vanished node's rows stop poisoning bare-id resolution with phantom AcrossNodes ambiguity; AND (b) per-row OFFLINE-TTL — evict rows that have been non-routable (Offline) beyond the per-row grace even while the author node is alive, because purge/erase leaves an immortal Offline row otherwise (ghost-heal re-advertises Offline ONCE with a fresh epoch, and whole-node eviction never fires for a still-alive author) so Offline ghost rows accumulate unbounded on a remote viewer under purge/erase churn (#2-secondary). Both keyed on RECEIVER-observed state (heard-map recency / a sticky receiver-observed offline_since, NOT the gossip epoch — an epoch-keyed clock would be reset by ghost-heal's fresh-epoch re-advertise); own rows never decay; a revived/re-flapped row re-inserts (or clears its offline_since) from its durable epoch within one pump cadence (4.10)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 157
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 137
            },
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 146
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 620
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 627
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 664
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 671
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 322
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 365
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 2003
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 2068
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 2107
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1317
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1363
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1393
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1423
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1457
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-REGISTRY-STALE-CLEAN",
      "title": "Stale registry entries degrade to fallback, never hard-fail (4.3)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 15
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 55
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 66
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 115
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 138
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 618
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 624
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 638
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 647
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 195
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 208
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 271
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 290
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 319
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-RESTART-IDEMPOTENT",
      "title": "Idempotent/exactly-once delivery across brain restart at every broker boundary (codex #14)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 512
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1201
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1251
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1280
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3258
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3657
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3907
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3962
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 67
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 414
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 235
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 374
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 417
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/idempotent.rs",
              "line": 27
            },
            {
              "path": "crates/spt-daemon/tests/netbroker.rs",
              "line": 149
            },
            {
              "path": "crates/spt-daemon/tests/netstream.rs",
              "line": 214
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 636
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 668
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 724
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1367
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 772
            },
            {
              "path": "crates/spt-daemon/tests/wanmsg.rs",
              "line": 290
            },
            {
              "path": "crates/spt-daemon/tests/xfer.rs",
              "line": 231
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1042
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1072
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ROLLBACK-STATE-COMPAT",
      "title": "A brain must not irreversibly migrate durable state before update ready-promotion: the readiness-gated auto-rollback (ADR-0018 Q7) spawns the N-1 binary against durable state the new brain may have written, so every pre-ready write must stay N-1-readable (schema migrations gated behind ready-promotion, or written N-1-tolerant/additive). Else the first in-place schema migration silently bricks rollback (KNOWN-HAZARDS 6.8). Free now — a 2026-06-09 audit confirmed zero state-migration code exists; unmintable retroactively once a migration ships.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 342
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/rollback_compat.rs",
              "line": 33
            },
            {
              "path": "crates/spt-daemon/src/rollback_compat.rs",
              "line": 39
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/rollback_compat.rs",
              "line": 95
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-ROSTER-GHOST",
      "title": "A LOCAL subnet roster entry whose backing perch is erased does NOT keep advertising Active (no phantom perch-less endpoint). `api session-end <id> --erase` removes the perch (owlery dir gone) but the subnet roster (identity/registry/<subnet>.json) keeps the endpoint's instance row ACTIVE with no backing perch; `endpoint stop` says 'address unregistered' yet the line persists; no CLI verb forgets a roster entry, and a hand-edit is re-added by the single-writer daemon advertiser. FIX: daemon-side self-heal — the advertiser DROPS/forgets a LOCAL roster entry whose backing perch no longer exists (stops advertising it Active), and/or a `forget`/evict verb; verify whether the epoch lease eventually evicts it (slow-self-heal) vs a real leak and scope accordingly. doyle secondary finding (perri). (post-v0.10.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 534
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1847
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-SEEDMAP-CONNECT-UNBOUNDED",
      "title": "SEED (doyle-filed, 2026-07-05, from the REQ-HAZARD-DAEMON-STOP-BARRIER B2 fix): the PRODUCTION seedmap connect callers (put / take / is_running) inherit the SAME interprocess WaitNamedPipeW-forever hazard the stop path just bounded — a Windows named-pipe connect to a name that EXISTS but has NO accepting instance parks in NMPWAIT_WAIT_FOREVER, so a slow / half-dead seed daemon could wedge a live `api seed` / `api listen` / `daemon start`. UPDATE (2026-07-05, doyle reversed the stop-path scope-guard): request_stop's OWN initial connect became load-bearing (a stop-guard re-dialing an already-dying name parked forever, resurrecting the convoy) → it is now bounded via connect_bounded under REQ-HAZARD-DAEMON-STOP-BARRIER (every dial on the STOP path is bounded). REMAINING deferred here = the put / take / is_running production clients. FIX (deferred, needs its own ruling): a shared bounded seed-control connect for those — but a 2s-style cap on a legitimately slow daemon-start connect is a real behavior change (a slow-but-fine start could become a spurious failure), so the timeout + degrade semantics need design first. NOT built — activate when scoped.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-SELF-ELEVATE",
      "title": "Self-elevation (REQ-ELEVATE-1) re-runs the EXACT original invocation with the binary's ABSOLUTE exe path — never widening privilege scope, never adding/altering args, never via a PATH-resolved bare name, never via a shell-interpolated command string (argv-array only, no `sh -c`); the elevated child drops state back to the user (composes with the 5.7 de-elevation) and NEVER re-elevates (loop-safe: decide_elevation_path returns AlreadyElevated whenever the process is already Elevated, on every OS). The user's UAC/polkit/sudo prompt is the only consent gate — we never bypass it; the print-hint floor prints the absolute-path command too. The unprivileged parent never depends on (pipes/captures) the privileged child's stdout.",
      "requiredStages": [
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6358
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6410
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6455
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 92
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 148
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 192
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 200
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 211
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 265
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 279
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 419
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 470
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 499
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 526
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-SESSION-PIN-WEDGE",
      "title": "A perch PINNED to a DEAD session-id self-heals instead of wedging forever. authenticate() (spt/src/api/auth.rs:78) gates api poll/state/boundary on proof-sid == info.json.session_id; if ONE boundary rotation is lost (transient env corruption kills the /clear-era hook), the perch stays pinned to the dead sid and EVERY id-scoped hook call refuses — INCLUDING boundary itself (it presents the new sid), a permanent strand (ready:false, stale .idle, drain no-ops, WAN spool sleeps forever; AUTH_REFUSED is stderr-only = invisible inside a hook). FIX: authenticate() gains a DEAD-OWNER fallback — when the sid MISMATCHES AND the perch's recorded pid is dead (proc::is_process_alive==false), ACCEPT the caller's sid and RE-PIN (rotate session_id + log SESSION_REPIN loud). Same trust model as establish_perch's conflict gate (api/startup.rs:207-210), which already allows rebind exactly when owner_alive==false (an orphaned perch accepts a new LOCAL owner). A LIVE-owner mismatch STILL refuses (squat protection UNCHANGED). ADDITIVE to token auth — the existing token-auth recovery path is UNTOUCHED; the new branch fires only on (no token) AND (sid mismatch) AND (owner dead). COVERAGE SPLIT (explicit, perri clean-room 2026-07-02 — the wedge latches on /clear even in a CLEAN env, so the corruption domino was sufficient but NOT necessary): the dead-owner re-pin rescues CRASHED/DEAD sessions ONLY; a LIVE-pid rotation (/clear, /compact — same process, new sid) is CORRECTLY refused without the departed session's prior-sid proof and MUST NOT be widened to live owners. The live-rotation contract is adapter-side: the adapter PERSISTS the prior sid across rotation and PRESENTS it as boundary proof (perri's state-file pattern = the reference); a silent boundary skip on an unresolvable id, or a boundary call with NO auth proof, strands the perch (perri's court). Core rescues only the dead-owner orphan; live-rotation proof is the harness-contract's job (see the harness-contract boundary section, which cross-refs this hazard). PARKED (not this wave, logged): pid-ancestry self-proving rotation (core walks the caller's real ancestry vs info.json.pid) — needs an ADR + Windows parent-spoof caveats. (F-024C, F024C-AUTHWEDGE-ADDENDUM + F024D-DOCSCOPE)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 545
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 700
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 109
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 307
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 330
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 352
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-SINGLE-PATH-SOURCE",
      "title": "Single path/registry source of truth; no layout ambiguity (6.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 62
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 71
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 80
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 88
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 33
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 65
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 74
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 93
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 102
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 111
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 122
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 140
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 153
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 163
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 172
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 183
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 191
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 200
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 209
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 218
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 230
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 237
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 246
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 253
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 320
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 332
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 421
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 544
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 585
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 598
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 684
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-SOFT-CLEANUP",
      "title": "Soft-cleanup preserves state, removes only the ready marker (6.2)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 194
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 224
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 316
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1221
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1234
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-SPOOL-SENTINEL-CREATE-FAIL",
      "title": "A persistent failure to (re)create the spool has-messages sentinel is SURFACED, never silently swallowed. touch_has_messages (spt-store/src/spool.rs:147) does `let _ = File::create(...)` — a live field defect on ENLYZEAM left a stale .has-messages (2026-06-29) beside a fresh spool.db insert (06:59:17Z) in ONE directory, i.e. the create silently failed while rows accumulated (suspected read-only-attrib / share-lock). FIX: on File::create failure emit a LOUD-ONCE-per-perch stderr diagnostic naming the concrete io::Error (self-identifying regardless of kind); do NOT make it fatal (spool writes still proceed). (F-024C item 2, doyle)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 167
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 179
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1310
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-STALE-INDEX-LOCK",
      "title": "Sweep stale lockfiles on daemon boot (1.3)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 119
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 560
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 739
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-STALE-SIGNOFF-SENTINEL",
      "title": "Stale signoff sentinel does not kill a fresh start (3.2)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1321
            },
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 28
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 229
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-STDIN-SESSION-ID",
      "title": "Stdin session_id precedence over env (2.2)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-STOP-PATH-PSYCHE-ORPHAN-REAP",
      "title": "Endpoint-stop and brain-death reconcile MUST reap a brain-less perch's orphan detached Psyche via the cmdline-scoped guard (`psyche_orphan_should_reap`) — the handle-reap (`LiveSet::stop_host`, REQ-HAZARD-UNHOST-PSYCHE-REAP) CANNOT, because the owning brain is gone (its `psyche_child` handle died with it), and the brain-start scoped-reap (REQ-HAZARD-BRAIN-RESTART-PSYCHE-DUP) never fires for a perch being STOPPED rather than re-hosted. So the live-host calls the scoped reap after `stop_host` at the reconcile stop-side AND in `confirm_residency_or_unhost`. Preserves fail-safe-decline (pid-alive AND exe-basename==psyche-program AND cmdline contains `<id>-psyche`; any unreadable signal DECLINES — a missed dup is bounded, a wrong-kill is catastrophic). This is the orphan-leak half of the perri F-010xF-015 field bug (the unsupervised install-dir Psyche that locked an update); the other half is the psyche own-copy (ADR-0025 amendment). (v0.13.2 W3 (a))",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 694
            },
            {
              "path": "docs/adr/0025-live-daemon-coordinated-adapter-update.md",
              "line": 45
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-STORE-INIT-RACE",
      "title": "Concurrent first-touch of ONE fresh BranchStore must ALL succeed, never a hard error. BranchStore::open_or_init (spt-store/src/branchstore.rs:47) is a TOCTOU: it gates on HEAD.exists() then runs a NON-ATOMIC init (`git init --bare` + `git config core.autocrlf false` + best-effort worktree.useRelativePaths). Two processes that both observe !HEAD.exists() on one fresh store race the `git config` step, which takes git's per-repo config.lock — the loser fails with 'could not lock config file …/config: File exists', an io::Error that strands the caller (the G3-gate pump.rs:442 flake, doyle-ledgered). FIX: make init race-tolerant — `git init --bare` is idempotent, and `git config` is idempotent (same bytes), so tolerate a concurrent winner (open-after-lose: if init errors but HEAD now exists, proceed as opened) and retry a transient config.lock collision a bounded number of times so the required core.autocrlf=false is guaranteed set. N concurrent open_or_init on ONE fresh dir must ALL return Ok. (F-025 wave, doyle Item 2)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 552
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 709
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 49
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 72
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 594
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 612
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 651
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 687
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-SUBPROCESS-TIMEOUT",
      "title": "Every harness/git subprocess has a timeout (5.3)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/turn.rs",
              "line": 19
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 856
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 892
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 940
            },
            {
              "path": "crates/spt-store/src/gitrun.rs",
              "line": 15
            },
            {
              "path": "crates/spt-store/src/gitrun.rs",
              "line": 48
            },
            {
              "path": "crates/spt-store/src/gitrun.rs",
              "line": 119
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6823
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1434
            },
            {
              "path": "crates/spt-store/src/gitrun.rs",
              "line": 165
            },
            {
              "path": "crates/spt-store/src/gitrun.rs",
              "line": 175
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-SUDO-SECURE-PATH",
      "title": "Elevation guidance on Unix names the binary's ABSOLUTE path under sudo (a user-local install ~/.local/bin · ~/.cargo/bin is not on sudo's secure_path, so bare `sudo spt` dies 'command not found'); gated commands auto-elevate on an interactive TTY, else print the runnable hint (5.10)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 192
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 279
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 470
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 526
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-TEMPLATE-ARGV-FILL",
      "title": "Command-template substitution fills argv ELEMENTS, not a re-tokenized string: spt-core currently `fill_template`s {key} values INTO the command STRING and THEN `tokenize`s the filled string (runtime.rs:94/122), so a multi-word {key} value whitespace-SPLITS into multiple argv tokens unless the adapter hand-quotes the placeholder, and a value containing a `\"` (or `;`) injects/breaks tokenization (shell-injection-adjacent). A filled value MUST become exactly ONE argv element regardless of spaces/quotes in the value. Fix: tokenize the TEMPLATE into argv FIRST, then `fill_template` EACH token, so a `{key}` slot resolves to a single element and the value never participates in tokenization (no whitespace-split, no quote/semicolon injection); preserve the missing-key / empty-command errors and `{{`/`}}` non-interpretation. perri's F-009 (v0.8.1 dogfood, argv-capture-confirmed): a multi-word `{psyche_prompt}` = \"PSYCHE REVIVAL time: epoch-ms:… incoming event: (none)\" arrived as argv[6..12] (7 stray tokens), the harness runner strict-parsed `--prompt` against the 2nd word, exited 2 within ~1s → phantom hosted perch. Applies to EVERY [session.<role>] template (psyche_init, extractor, notif, …); digest survives today only because its fills ({session_id}/{source}) are single-token.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 152
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 132
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 448
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 231
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 704
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 948
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/psyche_residency_expectation_e2e.rs",
              "line": 44
            },
            {
              "path": "crates/spt-daemon/tests/psyche_residency_expectation_e2e.rs",
              "line": 207
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1238
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1259
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1331
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1349
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1373
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-THRASH-GUARD-BLIND",
      "title": "W3 (F030 hazard; paid-for: evidence #6, hall-bf ~12/min re-host NEVER tripped the C3(b) thrash guard — boot records were not ledger boundaries to the guard): the failure budget must count REAL attempts (ledger-derived: boot/turn records via the psyche perch ledger), not whatever it counted that let 12/min churn run invisibly. Red-first synthetic loop: a 12/min synthetic failure loop MUST trip the budget.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 591
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 708
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1182
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1644
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-TRANSLATE-FAULT-PERMANENT-DEATH",
      "title": "C-1 hazard (F029; paid-for: B6 + three-version checkpoint-wake breakage): a REAL translation fault (binary death — stdin write fail / stdout disconnect — or strike-budget exhaustion) must get a BOUNDED eager respawn (C3(b) give-up budget) instead of permanent death, and must stamp a PERCH-VISIBLE fault surface (mutate_info field, cleared on healthy respawn/commit) — TRANSLATION_FAULT is daemon-stderr-only today (the F-019 unread-channel trap; same honesty rule as F-027 ENDPOINT_SPAWN_FAIL). A real fault legitimately loses in-memory state (the wake is NOT carried across a real fault, unlike a mere commit-miss). See addendum C-1 (3)-(4).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3358
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 429
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1947
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2007
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 1087
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-UNC-PATH-STRIP",
      "title": "Strip Windows UNC prefix on serialized paths (5.4)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 43
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/atomic.rs",
              "line": 364
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-UNHOST-PSYCHE-REAP",
      "title": "On un-host, the detached `{id}-psyche` HARNESS PROCESS is reaped — not just its in-brain pulse-driver thread. Today stop_host (livehost.rs:203) trips the HostedLife stop flag + JOINS the driver thread, but the Psyche is a detached harness process (spawn_psyche → ManifestRuntime detached spawn, runtime.rs:341-356; its pid is untracked in HostedLife though stamped on the `{id}-psyche` perch, where residency-confirm already reads it). So endpoint-stop / mid-life agent-death / a B2/B5 offline-then-unhost leaves the psyche process ORPHANED, alive until the next daemon-stop (where Breap's job/group reaps the whole brain subtree). The Psyche STAYS a harness process by design (CONTEXT.md 97/203/251 — headless harness session, its own perch) — the fix does NOT move it in-brain; it SCOPED-kills the `{id}-psyche` pid on un-host (never machine-wide — shared box). Track the pid in HostedLife at host_one (cleanest) or read the `{id}-psyche` perch pid at stop_host. Composes with H3 (endpoint stop → offline → reconcile un-host → reap) and B2/B5 (the offline arms that trigger un-host). (v0.12.0)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 502
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 539
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 772
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-HAZARD-UPDATE-ROLLBACK",
      "title": "Self-update rejects version rollback; metadata expiry + adapter content signing (codex #5)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 199
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 406
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 477
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 156
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 977
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 991
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1010
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1027
            },
            {
              "path": "crates/spt-daemon/tests/propagate.rs",
              "line": 531
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-VIEWER-CLOSE-DETACH",
      "title": "A VIEW is independent from the endpoint: closing the tab/window where `spt endpoint run` was invoked must detach ONLY the `spt rc` attach pump — the daemon-hosted harness keeps running and stays re-attachable via `spt rc <id>`. ROOT (Windows, v0.12.0 real-harness defect): the daemon never breaks away from the launching terminal's Job Object. Windows Terminal / VS Code place the launched shell AND every descendant into a Job Object with JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE; closing the tab drops the terminal's last job handle → the OS terminates every process still in that job. A child escapes only with CREATE_BREAKAWAY_FROM_JOB — used NOWHERE in the tree. Both daemon spawn paths (daemon.rs:707 detached_no_inherit = DETACHED_PROCESS|CREATE_NEW_PROCESS_GROUP|CREATE_NO_WINDOW; deelevate.rs:519 elevated = CREATE_NEW_CONSOLE|...) drop the CONSOLE but NOT job membership, so the daemon's freshly broker-spawned ConPTY harness subtree is reaped on tab-close. The ConPTY/pseudoconsole isolation itself is CORRECT (portable-pty builds the pseudoconsole in the daemon; no console signal / handle leak) — the leaking lifetime binding is the Job Object, not the console. FIX: add CREATE_BREAKAWAY_FROM_JOB to both daemon spawn paths AND pin each broker-spawned harness into a DAEMON-OWNED Job Object (mirror reap.rs/Breap) as backstop (survives even where a terminal sets SILENT_BREAKAWAY_OK=false). Unix: the daemon's own session detachment (new session, no controlling terminal) already keeps a closing terminal's SIGHUP off its children — verify, add a guard test, no code expected. FIX UPDATE (v0.12.1 L1.5, doyle re-scope operator-approved 2026-06-18): job-neutral daemon launch is now PRIMARY, breakaway DEMOTED to a fallback rung. ROOT reframed — the daemon INHERITS the terminal's Job because spawn_detached runs FROM the terminal-child CLI (DETACHED_PROCESS detaches the console, not the job); breakaway tried to claw back out but a job CAN deny it (the L1 finding). FIX: launch the cold-started daemon via a job-NEUTRAL creator so it is WmiPrvSE/Task-Scheduler-owned, OUTSIDE any terminal job from birth (why Task-Scheduler-autostarted daemons never had this bug). Launcher ladder (first-success-wins, daemon.rs spawn_detached → BOTH cold-start AND `spt daemon start`): (1) WMI Win32_Process.Create via ABSOLUTE powershell -EncodedCommand (KH 5.12 abs path; base64-UTF16LE dodges all quoting; success requires BOTH ReturnValue==0 AND a parsed ProcessId, else fall-through — never a silent launched), forwarding SPT_* env via a `cmd /c set … & start /b` wrapper because a WMI/scheduler child does NOT inherit transient shell env (verified — SPT_HOME would be lost, wrong universe); (2) schtasks one-shot (same env wrapper; best-effort fallback); (3) CREATE_BREAKAWAY_FROM_JOB (the L1 code, reordered below); (4) in-job last resort (logs DETACH_IN_JOB + tab-close caveat). detached_no_inherit (breakaway-then-in-job) is UNCHANGED for its other caller shellhost::launch_shell (a daemon-spawned shell is already job-neutral once the daemon is). The elevated deelevate path keeps its L1 breakaway for now (elevated-case WMI-reparent = FOLLOW-UP). (v0.12.1)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 470
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 430
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 804
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 829
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 846
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 861
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 881
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1026
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1078
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1137
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 527
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/job_escape_e2e.rs",
              "line": 35
            },
            {
              "path": "crates/spt/tests/job_escape_e2e.rs",
              "line": 569
            },
            {
              "path": "crates/spt/tests/job_escape_e2e.rs",
              "line": 590
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1291
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1335
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1349
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1367
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1391
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1618
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-VIEWER-ISOLATION",
      "title": "A slow / dead / hostile VIEWER must NEVER stall the controller, the PTY child, or the session drain thread. The broker drain fans output to the controller on the authoritative blocking bounded path (advances delivered_through) but to each viewer via a bounded per-viewer channel with a dedicated writer thread; the drain `try_send`s under the log lock and a viewer whose bounded queue OVERFLOWS (can't keep up) is EVICTED (queue dropped, writer thread ends, removed from the viewers map) — the drain thread NEVER touches a viewer socket, so no viewer write can backpressure or block it. A soft viewer cap bounds the thread count. Viewer eviction never perturbs the controller stream, the delivered_through cursor, or the child.",
      "requiredStages": [
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 409
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 102
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1199
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4266
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-VIEWER-RING-ROLL-SNAP",
      "title": "A read-only rc --view VIEWER whose serving brain falls behind the live ring under a hard flood and receives a FORWARD Output seq gap (the ring rolled frames out between reads, BEFORE any channel-overflow eviction → NO KIND_VIEWER_EVICTED marker) must SNAP TO LIVE (accept-and-advance via dedup-below + snap-above), NOT fatal with output gap (brain.rs:624/628 legacy reject-gap). ROOT (v0.13.0 forkpty, post-b4+skip-to-live): serve_attach subscribes a viewer via brain.attach_as(Viewer) leaving session_cursors EMPTY → the viewer serve-brain uses the LEGACY reject-gap → a PRE-eviction ring-roll forward-gap FATALS read_event → serve_attach returns → forwarding stops → attach_received_pty_output=FALSE (a_journaled / p0_paste / attach.rs:1071 wedged_viewer, Linux forkpty; Windows ConPTY floods slower → MASKED false-green). DISTINCT from REQ-VIEWER-SKIP-TO-LIVE-ON-EVICT (the POST-eviction re-subscribe-from-floor): this is PRE-eviction gap-tolerance while STILL subscribed. VIEWER-only → B2-SAFE (a viewer never advances delivered_through / is not authoritative); the CONTROLLER keeps strict reject-gap (exactly-once resume). FIX: arm snap-above at initial viewer attach (attach_as_viewer_snap = attach_as(Viewer) + session_cursors.insert(session_id, from_seq)); the two viewer-survival mechanisms COMPOSE — this tolerates pre-eviction ring-roll gaps, REQ-VIEWER-SKIP-TO-LIVE-ON-EVICT recovers post-eviction. (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 385
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 375
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 954
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 890
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2780
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1894
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-VIEWER-STARVE-UNDER-CONTROLLER-BACKPRESSURE",
      "title": "A SLOW controller must not starve a concurrent `rc --view` VIEWER. W1 (REQ-HAZARD-INJECT-CONTROL-COEXIST) moved the controller SOCKET WRITE off the drain thread onto controller_writer, but left the bounded HANDOFF (ControllerJob::deliver) as an INLINE try_send SLEEP-POLL on the drain (broker.rs:1450-1457 → deliver:669-685, up to CONTROLLER_WRITE_DEADLINE=5s). So when a controller drains slower than the PTY floods, its CONTROLLER_CHANNEL_DEPTH(4096) channel fills, deliver() polls inline, and the DRAIN THREAD is throttled to the controller's read rate → OutputLog::append's viewer fan-out (try_send) stops running → a concurrent VIEWER receives only the initial replay then nothing (root 'b4', warm forkpty: a_journaled c1=0/EVICT=0/got_output=FALSE; steady-state-near-full = no recovery; forkpty-only, floods harder than Windows ConPTY). The viewer-not-starved-by-a-busy-session property is legitimate (rc --view of a noisy session must show LIVE output). FIX: the controller becomes a SINGLE NON-BLOCKING try_send (like a viewer), done IN append() under the log lock; deliver()'s sleep-poll DELETED; the drain NEVER sleeps. ControllerSink gains a stateful last_ok deadline → a TRULY-stalled controller (continuous-Full past CONTROLLER_WRITE_DEADLINE) is evicted (bounded-wedge preserved); a slow-but-alive controller DROPS frames + falls behind the ring (resume-from-floor, the existing reconnect case). B2 GAPLESS-HANDOFF PRESERVED via a CONTIGUOUS delivered_through: controller_writer advances the cursor ONLY when the written seq == cursor (next expected); a gap from a drop FREEZES the cursor at last-contiguous so a re-attaching brain's resume_seq never skips a dropped chunk (a high-watermark advance past the gap would be a not-exactly-once resume = B2 violation, doyle's gate). (v0.13.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 730
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1400
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 889
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4517
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4587
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-WAN-ORIGIN-AUTH",
      "title": "WAN-inbound origin is transport truth, never payload: the access gate's subject (ADR-0009 origin-node whitelist) is the QUIC handshake-proven remote node id from the broker's conn/stream table — a forged origin/node field inside record bytes is inert (7.5)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 394
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/access.rs",
              "line": 87
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 232
            },
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 55
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 31
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 447
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 95
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 29
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 105
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 208
            },
            {
              "path": "crates/spt-daemon/src/resthost.rs",
              "line": 28
            },
            {
              "path": "crates/spt-daemon/src/resthost.rs",
              "line": 75
            },
            {
              "path": "crates/spt-daemon/src/serveprobe.rs",
              "line": 32
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 40
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 185
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 64
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 234
            },
            {
              "path": "crates/spt-daemon/src/xfer.rs",
              "line": 224
            },
            {
              "path": "crates/spt-net/src/net/sync.rs",
              "line": 37
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 38
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 36
            },
            {
              "path": "crates/spt-net/src/net/xfer.rs",
              "line": 40
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 212
            },
            {
              "path": "crates/spt-daemon/tests/notifsync.rs",
              "line": 137
            },
            {
              "path": "crates/spt-daemon/tests/propagate.rs",
              "line": 775
            },
            {
              "path": "crates/spt-daemon/tests/sync.rs",
              "line": 225
            },
            {
              "path": "crates/spt-daemon/tests/wanmsg.rs",
              "line": 207
            },
            {
              "path": "crates/spt-net/src/net/notif.rs",
              "line": 112
            },
            {
              "path": "crates/spt-net/src/net/sync.rs",
              "line": 157
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 215
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 177
            },
            {
              "path": "crates/spt-net/src/net/xfer.rs",
              "line": 162
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-WIN-PTY-PROGRAM-RESOLVE",
      "title": "Native-PTY spawn must resolve a bare program name with PATHEXT precedence and run a non-PE target through its interpreter: portable-pty's own `which` takes the FIRST PATH match — an extensionless shebang shim (e.g. a node CLI `ccs` shipped beside `ccs.cmd`) — and CreateProcessW then rejects the non-PE file with os error 193 ('not a valid Win32 application'); spt-term resolves the program itself (PATHEXT order prefers .EXE over .CMD; .cmd/.bat → cmd.exe /d /c, .ps1 → powershell -NoProfile -File) so a bare harness/shell [session.self] command actually launches on Windows. Unix is a passthrough (execve honours the shebang).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 250
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/pty.rs",
              "line": 135
            },
            {
              "path": "crates/spt-term/src/pty.rs",
              "line": 157
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/tests/winspawn.rs",
              "line": 15
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/winprog.rs",
              "line": 233
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-WINDOWS-PID-RECYCLE",
      "title": "Windows PID-recycling false positives guarded (5.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 95
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 117
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 293
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 667
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 777
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 835
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-WMI-DAEMON-WINDOW",
      "title": "`spt daemon start` launches the daemon with NO visible console window. REGRESSION (v0.12.1 L1.5): the WMI job-neutral launch (spawn_daemon_via_wmi) set CREATE_NO_WINDOW on the launching powershell but NOT on the Win32_Process.Create call — Win32_Process.Create does not inherit it, so the spawned cmd.exe env-forwarding wrapper popped a console window on every cold-start (violating REQ-INSTALL-10's v0.7.4 no-persistent-window invariant; the old detached_no_inherit path set DETACHED_PROCESS|CREATE_NO_WINDOW). FIX: pass a Win32_ProcessStartup with CreateFlags=DETACHED_PROCESS (0x8 — no console so no window; CREATE_NO_WINDOW 0x08000000 is NOT a valid Win32_ProcessStartup flag → ReturnValue 21 invalid-param, which is why the naive port fails) + ShowWindow=SW_HIDE(0) belt, via the ProcessStartupInformation argument. (v0.12.2)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 932
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1056
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/job_escape_e2e.rs",
              "line": 187
            },
            {
              "path": "crates/spt/tests/job_escape_e2e.rs",
              "line": 348
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 1295
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13363
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HAZARD-WORKER-PATH",
      "title": "Single source of truth for Worker/Psyche perch location (1.5)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 276
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 321
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 333
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 512
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 556
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HOST-RUN-1",
      "title": "spt-hosted harness bringup: `spt endpoint run` spawns an adapter's `[session.self]` command template into a broker-held PTY (the spawn-session seam, brain.rs spawn_session_pid — same broker path shellhost.rs launch_shell_brokered_in uses for shells, now for kind=\"harness\" self-role), registers the perch under the given endpoint id, returns the id. Reverses today's harness-hosted-only launch (external launcher → `api bind`). Non-interactive flag set (--adapter <a[:profile]> --id <id> --create --resume <session> --attach|--start|--view) covers every terminal action of the W2 interactive picker so shortcuts (cc-<id>) bake fully non-interactive launches; composite adapter:profile resolves via registry::resolve_option leaf-replace overlay.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 30
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 89
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 229
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1636
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 289
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 329
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 513
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 636
            }
          ]
        }
      }
    },
    {
      "id": "REQ-HOST-RUN-2",
      "title": "Project-scoped working directory for spt-hosted bringup: `spt endpoint run` lands the broker-spawned harness PTY in the user's PROJECT cwd, not the daemon's, via an additive `SpawnReq.cwd` field carried through the broker PTY spawn (portable-pty CommandBuilder cwd). N-1-safe wire change (additive, defaulted). Required because the consumer (Claude Code) is project-scoped: broker-inherited cwd = the daemon's cwd = the wrong `.claude`, wrong session history, wrong digest source; `cc <id>` at a project root MUST land the harness in that project. W1 ships broker-inherited cwd as a bringup-proof shortcut only; this REQ must land before the M12 gate (doyle, 2026-06-14).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 230
            },
            {
              "path": "crates/spt-term/src/pty.rs",
              "line": 113
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 714
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/tests/surface.rs",
              "line": 86
            }
          ]
        }
      }
    },
    {
      "id": "REQ-IDLE-PARKED-DELIVERY",
      "title": "W5 (LIFECYCLE-TRUTH): a message QUEUED to an ALREADY-idle spt-hosted endpoint is delivered without an operator poke. ROOT (live during the milestone dispatch 2026-07-07): the idle-edge drain (F-023 leg 2) fires only on the ACTIVE->IDLE transition; no new edge ever comes for a parked session, and the send-time inject didn't carry it — both doyle->todlando dispatches sat delivered=0 in the spool while the endpoint showed ONLINE. FIX: send-time inject fires for an already-idle spt-hosted target (activity sense says idle => inject now, not spool), and/or a bounded spool sweep re-offers pending rows to idle endpoints (piggyback the pulse tick, no new loop). Int: send to a session idle for N minutes -> delivered without any operator poke.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 106
            },
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 161
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 263
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5733
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 3024
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 242
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INFRA-1",
      "title": "GitHub issue tracking for v1; tangled.org as migration target",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INJECT-MULTILINE-INTEGRITY",
      "title": "W5 (LIFECYCLE-TRUTH): the idle-inject TYPED delivery leg delivers multi-line bodies byte-complete. ROOT (4 field instances + spool diff): the typed leg eats HEAD bytes nondeterministically — spool rows complete (1669B) vs ~322B received suffix; mid-turn poll envelopes always intact; a 1854B body later rode the same leg intact => timing race (terminal-readiness / enter-coalescing settle class), NOT a size cap. FIX DIRECTION (todlando proposes on the broker/translate typed-inject seam): settle-before-head, bracketed-paste where the harness supports it, or chunked write with echo-verify. STAKES: live-SENT injects leave NO spool copy — truncation there is unrecoverable. Int: repeated large multi-line injects into a real PTY session arrive byte-complete (loop N times — the race is timing-dependent, single-shot green is not proof).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1918
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1966
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1997
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2037
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2105
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 3130
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 3204
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4918
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4944
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4966
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4979
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5004
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-1",
      "title": "endpoint ID vs instance split (adapter-agnostic ID)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INST-10",
      "title": "Qualified addressing [subnet:]id[@node] + ambiguity forces qualification",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 866
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 907
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 956
            },
            {
              "path": "crates/spt-proto/src/addr.rs",
              "line": 13
            },
            {
              "path": "crates/spt-proto/src/addr.rs",
              "line": 67
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 18
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 619
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1525
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1997
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2008
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2024
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2040
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2062
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2084
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2107
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2128
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2436
            },
            {
              "path": "crates/spt-proto/src/addr.rs",
              "line": 130
            },
            {
              "path": "crates/spt-proto/src/addr.rs",
              "line": 167
            },
            {
              "path": "crates/spt-proto/src/addr.rs",
              "line": 175
            },
            {
              "path": "crates/spt-proto/src/addr.rs",
              "line": 183
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 1206
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-11",
      "title": "spt rename <id> rippled to all instances (collision-checked, 6.5-reconciled)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 730
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 297
            },
            {
              "path": "crates/spt-store/src/rename.rs",
              "line": 59
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8444
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11286
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2236
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2269
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 527
            },
            {
              "path": "crates/spt-store/src/rename.rs",
              "line": 160
            },
            {
              "path": "crates/spt-store/src/rename.rs",
              "line": 190
            },
            {
              "path": "crates/spt-store/src/rename.rs",
              "line": 225
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13244
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-12",
      "title": "Endpoint visibility per-(endpoint,subnet): excluded semantics, OR-of-defaults + override, gates sync",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 782
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 877
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 970
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 96
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 269
            },
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 148
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2311
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2334
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2371
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 457
            },
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 185
            },
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 206
            },
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 232
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-13",
      "title": "Subnet-exclusive sync + per-endpoint subnet-membership list",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 101
            },
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 171
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 261
            },
            {
              "path": "crates/spt-store/src/visibility.rs",
              "line": 279
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-14",
      "title": "Resource advertisement (subnet resource registry): free-text blurb, both-authored, registry projection, visibility/whitelist-gated",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 647
            },
            {
              "path": "docs/STORAGE.md",
              "line": 49
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 402
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 565
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 373
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2514
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1425
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1537
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1816
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 907
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13317
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-15",
      "title": "Immutable home subnet (assigned at creation: auto-if-one/ask-if-many) + spt fork (cross-subnet clone to a new identity, copy-then-diverge, not re-home); adapter chosen at creation from registered hostable adapters, changed only via launch/resume-under-new (ADR-0010)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0010-immutable-home-subnet-fork-not-rehome.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 353
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 60
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 368
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 417
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 19
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 70
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 135
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 175
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 240
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 178
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2406
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 577
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 638
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 299
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 335
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 348
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 482
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 856
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13257
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15357
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-2",
      "title": "Per-node files, synced Psyche mind",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 28
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 98
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 120
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 55
            },
            {
              "path": "crates/spt-live/src/signoff.rs",
              "line": 118
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 323
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 139
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-3",
      "title": "Dormant (warm) / suspended (cold) resting states",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/DORMANCY-BUDGET.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 61
            },
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 516
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 594
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 787
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 821
            },
            {
              "path": "crates/spt-daemon/src/pump/sync.rs",
              "line": 74
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 234
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 396
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 819
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 45
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 132
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 170
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 186
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 196
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 257
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 346
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 370
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 448
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 497
            },
            {
              "path": "crates/spt-daemon/tests/budget.rs",
              "line": 37
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 62
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 359
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3489
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 373
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2374
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2431
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 897
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1022
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1526
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1673
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 675
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 711
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 766
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 1049
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 1296
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 1310
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1978
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 857
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13281
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-4",
      "title": "active to dormant/suspended fires a transition echo commune",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 788
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 249
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 293
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 333
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2426
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 787
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 1015
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 1108
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-5",
      "title": "Two-tier context sync (live to all, project to same-project)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/sync.rs",
              "line": 85
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 69
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 100
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 184
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 315
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 157
            },
            {
              "path": "crates/spt-daemon/tests/pump.rs",
              "line": 145
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 717
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1171
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 553
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 596
            },
            {
              "path": "crates/spt-daemon/tests/sync.rs",
              "line": 220
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-6",
      "title": "Deferred messages not delivered to dormant/suspended instances",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/DEFERRED.md",
              "line": 13
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 427
            },
            {
              "path": "crates/spt-daemon/src/resthost.rs",
              "line": 27
            },
            {
              "path": "crates/spt-daemon/src/resthost.rs",
              "line": 74
            },
            {
              "path": "crates/spt-daemon/src/resthost.rs",
              "line": 183
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 485
            },
            {
              "path": "crates/spt-net/src/net/rest.rs",
              "line": 31
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 217
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 129
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3490
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 333
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 383
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 731
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1216
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 1036
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 716
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 1264
            },
            {
              "path": "crates/spt-net/src/net/rest.rs",
              "line": 66
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 346
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 304
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-7",
      "title": "Subnet registry + bare-id resolution policy",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 472
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 27
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 207
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 344
            },
            {
              "path": "crates/spt-net/src/net/ndjson.rs",
              "line": 59
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 41
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 27
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 124
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 139
            },
            {
              "path": "crates/spt-store/src/registry.rs",
              "line": 139
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/pump.rs",
              "line": 145
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 675
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1066
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1396
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1902
            },
            {
              "path": "crates/spt-daemon/tests/replicate.rs",
              "line": 85
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1154
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1257
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1272
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 177
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 192
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 225
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-8",
      "title": "Remote-control mode distinct from local operation",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 231
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 552
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 613
            },
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 62
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 416
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1130
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 370
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 777
            },
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 128
            },
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 173
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INST-9",
      "title": "Multi-subnet membership (same-user N subnets; cross-user seam)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 665
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2153
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2162
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2178
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2190
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2210
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INSTALL-1",
      "title": "Two install paths; signed one-line script; OS-service registration",
      "requiredStages": [
        "doc",
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 820
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "installer/install.ps1",
              "line": 57
            },
            {
              "path": "installer/install.sh",
              "line": 52
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/oneliner_e2e.rs",
              "line": 21
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INSTALL-10",
      "title": "Windows at-logon autostart runs the daemon in the background with no persistent window: the scheduled task launches `spt daemon start` (which spawn_detaches a console-less DETACHED_PROCESS daemon and exits) rather than the foreground `spt daemon run` — Task Scheduler's interactive ONLOGON launch of a long-lived console process otherwise leaves a visible console window for the daemon's whole lifetime (v0.7.4)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "installer/install.ps1",
              "line": 191
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/oneliner_e2e.rs",
              "line": 211
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INSTALL-11",
      "title": "Adapter command templates resolve their program against the adapter's install dir BEFORE PATH: a `.spt`-shipped binary (dropped to adapters/_github/<safe>/ by --release/--github acquisition, or kept in the source_dir under copy-mode where only manifest+strings/ are copied to adapters/<name>) runs without any PATH placement — a bare-name template token (e.g. `claude-spt-digest ...`) is rewritten to <install_dir>/<program>(.exe on Windows) when that file exists, else left bare for the PATH fallback. Makes a `.spt` self-contained (closes the --release bundled-binary gap perri confirmed) (v0.7.4)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 166
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 536
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 100
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 361
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 281
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 271
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 361
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 422
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 436
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 228
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 351
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 88
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 104
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 129
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 458
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 629
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 710
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 916
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 939
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 954
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 547
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 197
            },
            {
              "path": "docs/F-019-TRANSLATION-BINARY-INSTALL-DIR-RESOLVE-DESIGN.md",
              "line": 38
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 397
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1468
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1480
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1489
            },
            {
              "path": "docs/F-019-TRANSLATION-BINARY-INSTALL-DIR-RESOLVE-DESIGN.md",
              "line": 39
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INSTALL-12",
      "title": "Durable active-profile pointer for bind-time profile selection (ADR-0021): adapters/active-profiles.toml at the registry ROOT (sibling to the per-adapter <name>/ dirs, so adapter add/update/remove — which only rewrite a <name>/ subdir — can never clobber it), a flat host_binary → \"adapter[:profile]\" map. Read at bind as the PRIMARY profile selector; unset → the registered_at_ms fallback (REQ-START-5). Written ONLY by `spt adapter use <adapter>[:profile]` (resolves the adapter's host_binaries → sets each binary→adapter[:profile]); `spt adapter use --clear <adapter|binary>` drops. NEVER auto-written by install/update/adapter add (that is precisely what would let an update silently flip the active profile). A stale pointer (uninstalled adapter / deleted profile) self-heals: ignored, fall back, warn once. Pruned on adapter remove. Atomic write (spt_store atomic). (v0.9.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 213
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 27
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 223
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9091
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/live_resolve_e2e.rs",
              "line": 19
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 395
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 421
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 440
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 475
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14073
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INSTALL-13",
      "title": "Adapter add is non-destructive & idempotent-safe (F-018): `spt adapter add --github|--release` REFUSES when the target `_github/<safe>` home already backs an ACTIVE registered record — emitting an actionable code (ADAPTER_ADD_ALREADY_REGISTERED) that routes to `spt adapter update <name>` (refresh in place) or `spt adapter remove <name>` then re-add (replace) — instead of clobbering the live install (the perri footgun: `add --github` over a `--release` pointer git-cloned a source tree over the extracted built binaries → registered pointer dangled → cryptic `os error 2`). And when it DOES (re)populate the home it STAGES-THEN-SWAPS (clone/extract to a sibling staging dir, swap into place only on success) so a failed fetch/clone never strands the previously-extracted manifest+binaries as a dangling pointer (the os-2 / DeferredManifest class). Mirrors the safe stage-then-swap `adapter update` already uses (REQ-UPD-9, apply_release_crc_swap). (v0.14.1)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 837
            },
            {
              "path": "docs/F-018-ADAPTER-ADD-NONDESTRUCTIVE-DESIGN.md",
              "line": 83
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5194
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8597
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8735
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8767
            },
            {
              "path": "docs/F-018-ADAPTER-ADD-NONDESTRUCTIVE-DESIGN.md",
              "line": 74
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17213
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 17257
            },
            {
              "path": "docs/F-018-ADAPTER-ADD-NONDESTRUCTIVE-DESIGN.md",
              "line": 80
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INSTALL-2",
      "title": "Marketplace-repackaging-friendly install",
      "requiredStages": [
        "doc"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 821
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INSTALL-3",
      "title": "Idempotent + interactive-optional first run",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "installer/install.ps1",
              "line": 100
            },
            {
              "path": "installer/install.ps1",
              "line": 111
            },
            {
              "path": "installer/install.sh",
              "line": 79
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/oneliner_e2e.rs",
              "line": 167
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INSTALL-4",
      "title": "Adapter registration lifecycle: spt adapter add (--github, manifest-first, install-is-first-update) + soft-deregister remove + optional manifest uninstall template; node-local registered-adapter set self-update ripples over",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 165
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 29
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 299
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 417
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 447
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 495
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8614
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 381
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 935
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1058
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1078
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13669
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INSTALL-5",
      "title": "Non-interactive install path: the canonical one-liner doubles as every adapter's pack-in on-demand install (no second mechanism); sha256-verified fetch; user-PATH registration",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "installer/install.ps1",
              "line": 5
            },
            {
              "path": "installer/install.sh",
              "line": 6
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/oneliner_e2e.rs",
              "line": 22
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INSTALL-6",
      "title": "Linux elevation install leg: install.sh symlinks the binary into a sudo-reachable path (/usr/local/bin; graceful print-the-one-liner when unelevated) so sudo spt resolves; first sudo spt detects elevation and prompts ONCE for the default user account — thereafter any elevated daemon launch runs daemon + state under that account, never root (KH 5.7 interplay verified) (M8 decision 8)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 61
            },
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 648
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 191
            },
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 276
            },
            {
              "path": "crates/spt/src/main.rs",
              "line": 87
            },
            {
              "path": "installer/install.sh",
              "line": 104
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/deelevate.rs",
              "line": 894
            }
          ]
        }
      }
    },
    {
      "id": "REQ-INSTALL-7",
      "title": "Windows inbound reachability: the elevated install leg registers the inbound-UDP firewall rule (New-NetFirewallRule); the daemon self-detects blocked inbound and renders it as the no-connection state in subnet status + the coming-online banner (covers user-scope installs that skip the elevated leg — never a silent NO_SEED_HOLDER dead-end) (M8 root cause 3)",
      "requiredStages": [
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6795
            },
            {
              "path": "installer/install.ps1",
              "line": 157
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INSTALL-8",
      "title": "OS-service registration (REQ-INSTALL-1's deferred third leg): Linux systemd USER service + loginctl enable-linger (linger rides the elevated install leg; daemon starts at boot pre-login, user universe per KH 5.7, systemctl --user managed); Windows scheduled task at-logon (interactive session, no stored credentials); a node is reachable after reboot without any manual spt invocation (M8 decision 17)",
      "requiredStages": [
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "installer/install.ps1",
              "line": 184
            },
            {
              "path": "installer/install.sh",
              "line": 121
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-INSTALL-9",
      "title": "Adapter add from a GitHub release archive: `spt adapter add --release <user/repo> [--tag <tag>] [--asset <name>]` fetches a `.spt` tar asset over HTTPS+GitHub trust, extracts it to the durable adapters/_github home, and registers the root — ships built binaries source-free and versioned (the distribution path for an adapter whose dev repo is a monorepo subdir, where --github root-only clone does not fit)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 837
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5029
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5098
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5165
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8878
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8890
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12635
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13699
            }
          ]
        }
      }
    },
    {
      "id": "REQ-JOIN-DEFERRED-ELEVATION",
      "title": "W2 (JOIN-TRUTH, operator UX ruling verbatim): 'if --code was not supplied, don't spawn the elevated subnet-join window until a target machine is discovered → just in time for the code prompt.' When --code is ABSENT and the process is UNELEVATED, run the name prompt + ALREADY_MEMBER check + ensure_daemon + the MEET phase (brain.pair_meet) UNELEVATED; only on MetMember spawn the elevated window via the EXISTING try_auto_elevate machinery (the elevated re-run re-executes the join flow — its second meet is cheap, the member is proven present). A FAILED search must NEVER show a UAC/sudo/pkexec prompt. The --code path is UNCHANGED (gate-first, one-shot). The unelevated phase performs ZERO trust mutation — meet is pre-trust per REQ-JOIN-TWO-PHASE/ADR-0030. RULED OUT (doyle): cross-elevation hold-session adoption (passing the daemon-held pair session_id into the elevated process) — a new security seam we don't need; the elevated re-run re-meets instead. The elevation gate MOVES from command-entry to the enrollment boundary; discovery is read-only pre-trust.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0005-totp-seeded-spake2-node-pairing.md",
              "line": 91
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7851
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7869
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15667
            }
          ]
        }
      }
    },
    {
      "id": "REQ-JOIN-DIAGNOSTICS",
      "title": "`spt subnet join` never fails SILENTLY (ADR-0030; the field incident showed no output at all). (a) LIVE progress during the meet (replace the one-shot \"Searching…\" cli.rs:6268 with periodic elapsed/deadline) so silence ≠ hang; (b) DETAILED failure on meet-exhaustion — rendezvous candidates + families attempted (IPv4/IPv6) + relay-vs-direct + the last concrete error — surfaced BEFORE any code prompt (a dead subnet must not make the user fetch a code); connect_seed_holder (pairhost.rs:437) and dial_via_rendezvous (meet.rs:281) currently swallow per-attempt errors — thread the last error up with attempt context; (c) PROPAGATE the terminal event — brain.rs:1024 `_ => continue` must deliver a daemon NoSeedHolder/PairFail to the CLI as a printed error (this is WHY the user saw nothing); (d) `--verbose`/`SPT_LOG` discovery TRACE (per-probe derived id, discovery path mDNS/n0-DNS/relay, per-family timeouts), opt-in — no such knob exists today. (next milestone)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0030-robust-wan-subnet-join.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1153
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 574
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 452
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8025
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 741
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15548
            }
          ]
        }
      }
    },
    {
      "id": "REQ-JOIN-TWO-PHASE",
      "title": "`spt subnet join` is two-phase (meet-before-code) so the entered code is FRESH at the ceremony regardless of discovery time (ADR-0030). The meet selector is the PUBLIC `(subnet-name, TOTP-epoch)` (rendezvous_token = SHA256(domain ‖ name ‖ totp_step)); the secret TOTP-code is the SPAKE2 password ONLY, never a discovery input — so the code is collected AFTER a member is found. Extend the brain.pair_join event stream (brain.rs:1009): CLI PairMeetReq{subnet} → daemon meets (name, current-epoch) resolving the seed-holder's REAL stable pairing address → MetMember event → CLI prompts the code (cli.rs cmd_subnet_join :6236) → PairCodeSubmit{code} → daemon dials the held real-address on SPT_PAIR_ALPN + SPAKE2 → PairJoined/PairFail. Daemon holds the real-address between phases, bounded by a 5-MINUTE wait-for-code timeout; a wrong-code retry re-runs the CEREMONY ONLY against the held address (no re-search). The non-interactive `--code` path stays one-shot (no prompt; relies on REQ-NET-FAMILY-GATE fast discovery, fails loudly per REQ-JOIN-DIAGNOSTICS on staleness). Security unchanged — the meet is pre-trust/unauthenticated (SPT_PAIR_MEET_ALPN); auth stays in SPAKE2. (next milestone)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0030-robust-wan-subnet-join.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1153
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1177
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3782
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3834
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 846
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 450
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 273
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/pairjoin.rs",
              "line": 82
            },
            {
              "path": "crates/spt-daemon/tests/pairjoin.rs",
              "line": 107
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4291
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1090
            }
          ]
        }
      }
    },
    {
      "id": "REQ-JOIN-VERBOSE-CLOCK",
      "title": "W2/D4 (JOIN-TRUTH): the JOINER side is no longer blind to its own ceremony clock — `spt subnet join --verbose` prints the joiner's derived TOTP step, the applied offset seconds, and the NTP correction state (corrected / uncorrected) per meet sweep; the same triple folds into `meet_failure_detail` so the NO_SEED_HOLDER verbose block carries it. ROOT: diagnosing enlyzeam required shipping a compiled probe over ssh because the member logs PAIR_MEET_UP step=N but the joiner surfaces nothing about its OWN step/offset — the exact asymmetry that hid D1-D3. Extends REQ-JOIN-DIAGNOSTICS's --verbose without a new knob. CLI help changes → xtask docs gen, no internal REQ codes in clap /// (docs-token gate).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 541
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 552
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 574
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 129
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 741
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 775
            }
          ]
        }
      }
    },
    {
      "id": "REQ-KICK-1",
      "title": "Explicit, loud controller displacement: `spt rc kick <target>` / `--take` (Take intent) kicks the incumbent controller and becomes controller; the displaced controller receives a LOUD `Displaced{by}` notice and is FULLY DETACHED (not demoted to a viewer). A default attach to a controlled endpoint is NEVER a silent displace (it is the Control busy-refusal). An old (N-1) rc omits intent → Control, so it can drive a free endpoint but CANNOT `--take` — it can never silently steal, and gets a clean busy-refusal instead. Taking control rides the same access_check(endpoint, origin, Unsolicited) as a normal control attach (if you may drive, you may take — no elevated kick policy). The picker surfaces 'Kick <node> and attach' (Take) only on a controlled (blue ■) endpoint, via the existing attach dispatch (single-bringup-path: intent is a parameter).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 385
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 41
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1081
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1070
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 256
            }
          ]
        }
      }
    },
    {
      "id": "REQ-LIVE-AGENT-NO-INJECT-DELIVERY",
      "title": "F-033 (operator-surfaced 2026-07-08, perri-confirmed): a live_agent endpoint is NEVER a broker-PTY-inject delivery target — it already has its own live reader, so a peer message delivers ONCE via that reader (Monitor relay / translation-binary / hook poll), never ALSO raw-injected into its controllable PTY. ROOT (doyle triage, code-grounded + perri adapter-confirm F-dupmsg-adapter-confirm.md): is_spt_hosted_no_relay (spt-daemon/src/inject.rs:37-49) returns TRUE for a live_agent that is online + controllable:true + has no resolvable relay address — so cmd_send routes it through try_spt_hosted_inject IN ADDITION TO the live-agent's own adapter delivery. The predicate conflates controllable (attach/rc reachability — perri: NOT a delivery channel) with deliver-by-inject, and treats 'no relay' as 'no reader' when state:live_agent ALREADY means a self-delivery reader exists. SYMPTOM (operator): the injected copy TYPES the message into the live Claude Code input but does NOT submit (a bare payload+CR soft-newlines / stalls on the modern TUI — the exact F-019/REQ-MSG-DELIVERY-AXES no-submit failure the translation-binary discrete-Enter was built to REPLACE), so it sits as stuck-unsubmitted duplicate garbage in the input field alongside the real hook/relay-delivered copy. perri: claude-spt delivers to a live agent via ADAPTER channels ONLY and never wants core's raw PTY-inject; controllable:true is attach/rc only; adapter needs NO change — pure core routing fix. FIX (perri-confirmed): exclude state:live_agent (endpoint has a live reader) from is_spt_hosted_no_relay / the try_spt_hosted_inject routing — kills BOTH the duplicate AND the stuck-unsubmitted input garbage in one move. Gate: a send to an online controllable live_agent with no relay delivers via its reader ONCE and does NOT try_spt_hosted_inject (no PTY-type); a genuinely spt-HOSTED endpoint (broker-driven, NO live reader) still injects via its translation binary unchanged; is_spt_hosted_no_relay unit adds the live_agent-excluded case. Secondary note (verify at build, not blocking): whether a raw payload+CR path still fires for a no-translation-binary inject despite the v0.14.3 raw-inject removal (REQ-MSG-DELIVERY-AXES) — the exclude-live_agent fix makes it moot for live agents regardless. Related adapter invariants (perri, for scoping context, no change needed): REQ-SKILL-LIVE-SPT-HOSTED-BRANCH (spt-hosted session must not arm a 2nd Monitor), and adapter self-sends route --force-native through the translate binary stdin.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-MANIFEST-1",
      "title": "Per-adapter manifest with adapter_name and min_spt_core_version",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 19
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 18
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1330
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1712
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1724
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1735
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1752
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1766
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1882
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1897
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2048
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2059
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-2",
      "title": "Adapter profiles — sparse leaf-replace overlays (shipped + local), composite <adapter>:<profile> addressing, shadow-refusal, tighten-only consent floors",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 75
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 82
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 15
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 82
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 100
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 200
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 588
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 614
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 768
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 793
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 816
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 831
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8959
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8973
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9007
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 948
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 228
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 289
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 330
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 342
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 353
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 362
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 378
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 461
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1167
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1191
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1217
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1236
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1267
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 309
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 680
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14018
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14975
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-3",
      "title": "Adapter strings — [strings] KV tree, dot-path get-string resolving through the profile leaf-replace overlay, set-string editing a local profile's [strings] only; data-only (nothing executes a string)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 81
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 92
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 118
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 149
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 638
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 730
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9020
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9068
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 388
            },
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 446
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1291
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14111
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-4",
      "title": "Keyword hints — [[hints]] {keywords (literal/regex), text}; spt api hint --session emits at most one matched hint per message, once per session (seen-set), declaration-order first match; profiles overlay [[hints]] by leaf-replace",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 92
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 100
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 208
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 83
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 744
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 769
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1832
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1865
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1401
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-5",
      "title": "File-backed adapter [strings] (M12-W3-T3.1): a [strings] dot-path value MAY be an inline-table FILE POINTER `key = { file = \"rel/path\" }` resolved to the file's contents at get-string time, keeping large bodies (skill-instructions, hint text) out of the manifest. A value-position table with a `file` key IS the pointer form (reserved — cannot double as data). Per-adapter aux storage `adapters/<adapter>/strings/`; pointers resolve relative to it with CONTAINMENT (reject `..`/absolute escaping the dir). UPDATE-SAFETY: a LOCAL profile's file-pointers resolve relative to the user-owned local-profile dir (NOT adapter-shipped strings/, which adapter updates overwrite), or the local profile inlines. Validate-at-register (fail-fast on a bad/escaping/missing pointer) + LAZY read at get-string (live file edits reflect, no re-register) + skip-diagnostics on missing-at-read (no hard-crash, mirrors [digest]). Rides the same leaf-replace profile overlay as the rest of [strings].",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 83
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 137
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/profile.rs",
              "line": 421
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1364
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1393
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1433
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1448
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-6",
      "title": "Cross-adapter fallback target addressing (M12-W3-T3.2): a cross-adapter fallback target is addressed as `<adapter>:<profile>` (not just a bare adapter_name), resolved through the one composite-addressing resolver (registry::resolve_option) at every adapter-option read site so a fallback may select a shipped/local profile (e.g. a `ccs` profile). CONTEXT.md §cross-adapter-fallback reconciled (\"ccs is a profile; cross-adapter fallback may target <adapter>:<profile>\"). Contract-only this milestone: the node-wide fallback SETTING + its rate-limit invocation are deferred to the consuming milestone (the runtime path does not exist yet); this REQ guarantees the ADDRESSING resolves.",
      "requiredStages": [
        "doc",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 169
            }
          ]
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 1470
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-7",
      "title": "Adapter-declared shortcut basename (M12-W2 follow-on): an optional `[adapter] shortcut_basename` manifest field names the basename the `spt endpoint run` picker bakes into the generated `<basename>-<id>` launcher shortcut (REQ-RUN-SHORTCUT). Absent ⇒ the harness-agnostic default `spt` (→ `spt-<id>`); an adapter sets it to brand its shortcuts (claude-spt → `cc` → `cc-<id>`), so the Claude-Code-ness lives in the PUBLISHED adapter manifest, never hardcoded in spt-core. The picker reads it from the RESOLVED manifest of the selected adapter (registry::resolve_option), falling back to `spt` when absent/empty/unresolvable. Additive + N-1-safe (serde-default Option, omitted from serialization when absent; old manifests parse clean); manifest.schema.json regenerated from the derive (ADR-0001, CI drift-gated). Documented in docs/MANIFEST.md `[adapter]` section + the claude-spt worked example — the adapter-author contract perri builds spt-claude-code against.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 53
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 89
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2065
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-8",
      "title": "[adapter] host_binaries declares the harness executable basenames a kind=\"harness\" adapter hosts agents inside (e.g. host_binaries = [\"claude\"]); bind-time pid→exe-basename match (case-insensitive, .exe-stripped) over the seed's parent_pid selects the candidate adapter set; zero matches → a friendly error naming the binary + the --adapter escape hatch. Additive + N-1-safe: optional Vec<String>, #[serde(default, skip_serializing_if = \"Vec::is_empty\")] (omitted-serialized like shortcut_basename, old manifests parse clean); manifest.schema.json regenerated from the derive (ADR-0001, CI drift-gated). The match-key for ADR-0021 adapter-agnostic bind-time resolution. (v0.9.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 212
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 64
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 222
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 561
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/live_resolve_e2e.rs",
              "line": 18
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 2083
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 316
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 332
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 345
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 677
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 691
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-NODE-KEY",
      "title": "A new session-scoped manifest fill key `{node}` resolves to THIS node's advertised label — available wherever the session-scoped keys ({id}/{session_id}/{session_name}) populate: BOTH topologies' spawn-prep catalogs (harnesshost.rs:111-118 self-spawn guaranteed-fill + lifecycle.rs:280 base lifecycle keys, at minimum [session.self] and [session.resume]) AND lazy [strings] eligibility (ADR-0029 family). VALUE (design-true per CONTEXT §node label / REQ-SUBNET-3): the node's ADVERTISED LABEL — the same value node_label_display renders — read from the label store (NodeLabel, registry.rs:118/220, OS-hostname default re-checked at daemon startup), NOT the pubkey and NOT a fresh gethostname at fill time when the store already holds the refreshed label; fall back to the OS hostname only if no label is known. perri's concrete use: templating `--remote-control {id}--{node}` in the claude-spt launch/resume commands. CAVEAT (documented in the manifest.md key-table row AND here): SINGLE-TOKEN fills only — tokenize-then-fill (REQ post-F-009) cannot produce a space-carrying argv element, so composite display names like `<id> @ <node>` remain adapter-shim territory (claude-spt v0.10.3's launch shim stays the reference for those); {node} COMPLEMENTS the shim for tokenizable args, it does not replace it. Origin: perri fill-catalog-gap finding 2026-07-02, operator-promoted into BUILD-F023-WANIDLE (additive, independent of the delivery legs). (NODEKEY-FOLD)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 181
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 681
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 407
            },
            {
              "path": "crates/spt-store/src/hostlabel.rs",
              "line": 29
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 350
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 375
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1514
            },
            {
              "path": "crates/spt-store/src/hostlabel.rs",
              "line": 79
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MANIFEST-SUBST",
      "title": "Manifest substitution primitives for resolve-not-execute (ADR-0029, supersedes a rejected `spt api run-hook`): (1) two adapter-static substitution keys `{adapter_dir}` (the registry record's precise source_dir — install dir, survives updates, the dir bare-program resolution uses) and `{adapter_name}`, available wherever command/string substitution runs; (2) lazy substitution INSIDE `[strings]` values at `get-string` read time, scoped to those adapter-static keys ONLY (session-scoped {id}/{session_id}/… are NOT available — get-string carries no session; a get-string --session-id is a deferred larger change). Invariant preserved: spt-core never executes a string — it substitutes and returns; the adapter's own wrapper executes the result (e.g. a CC hook dispatcher get-strings its packed binary once per session into an env var, then runs it per-hook, so hook logic rides `spt adapter update`). (v0.16.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 165
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 322
            },
            {
              "path": "docs/adr/0029-adapter-update-arc-resolve-not-execute.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 261
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 144
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 656
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 669
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 680
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 294
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 406
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 641
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 692
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1275
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MESH-1",
      "title": "Membership proof (seed-proof): symmetric current-epoch seed-knowledge replaces is_trusted at EVERY inbound gate (registry apply, WAN receive, sync, notif, connection accept). MK = HKDF(seed, domain ‖ subnet_id ‖ seed_epoch); mutual channel-bound challenge-response at connect (transcript binds both handshake-proven node pubkeys, both nonces, subnet_id, seed_epoch, role); verified once per connection, cached on the broker ConnEntry, kept warm via QUIC keep-alive so re-proof is restart/partition/rotation-only. Exact-epoch match (re-seed is the sole N-1 exception). SECURITY INVARIANTS: channel-bound (no cross-connection replay), mutual, accepts a member it never paired (the mesh property).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 951
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 38
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 161
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 206
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 57
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 24
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 142
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 162
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/seedproofx.rs",
              "line": 67
            },
            {
              "path": "crates/spt-daemon/tests/seedproofx.rs",
              "line": 93
            },
            {
              "path": "crates/spt-daemon/tests/seedproofx.rs",
              "line": 117
            },
            {
              "path": "crates/spt-daemon/tests/seedproofx.rs",
              "line": 134
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 610
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 376
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 412
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 427
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 438
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 449
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 460
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 496
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 519
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 546
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MESH-2",
      "title": "Member roster: node-level union-merge grow-set (per member: pubkey, label, machine_id, last-known address, last-seen — NOT the seed), the discovery directory the mesh dials by. Seeded IN FULL at pairing (seed-holder hands joiner the whole current roster, incl. offline members — folds in deferred pairing-time hostname capture + post-join address seeding); each node authors its own entry stamped with its lease_epoch, merged strictly-greater-wins (the node_label lease); exchanged only over seed-proof'd member connections; forgery-inert (a fake entry names a pubkey that still can't seed-proof). Removal needs a TOMBSTONE — a per-pubkey revoked marker that propagates, dominates the entry, gates admission (seed-proof ∧ ¬tombstoned), and prevents reinsert; cleared by a completed re-pair of that pubkey. Persists through silence (offline member keeps its entry).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 769
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 118
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 347
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 389
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 403
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 647
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 662
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 689
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 207
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 755
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 816
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 869
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 891
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 122
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 44
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 184
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 211
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 251
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 275
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 289
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 300
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 313
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/rosterprop.rs",
              "line": 116
            },
            {
              "path": "crates/spt-daemon/tests/rosterprop.rs",
              "line": 181
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 999
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 1016
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 1024
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 1048
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1499
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 347
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 370
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 407
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 431
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 483
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 499
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 514
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 531
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MESH-3",
      "title": "Mesh row fan-out: registry rows stay OWN-AUTHORED; the only change is the push target widens from directly-paired peers to ALL roster members (a wider DIRECT fan-out, never a third-party relay). Every row/message still arrives from its author over a handshake → KNOWN-HAZARDS 7.5 (origin = handshake node) and 4.10 (eviction lease: any future update comes from that node itself, alive) PRESERVED VERBATIM. Closes the staggered A→B→C repro: C (roster-seeded with A at pairing) initiates to A, seed-proof admits C unpaired, A learns C, both push directly.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 644
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/mesh.rs",
              "line": 373
            },
            {
              "path": "crates/spt-daemon/tests/mesh.rs",
              "line": 436
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 918
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MESH-4",
      "title": "Revoke + timeboxed seed rotation + re-seed grace: `spt subnet revoke <node>...` (list, elevation-gated, revoke-only) writes roster tombstones immediately, then schedules ONE seed rotation (re-mint seed, bump seed_epoch, push new seed CONFIDENTIALLY over member-auth'd TLS connections — never in roster/registry gossip — force-drop revokees) at the close of a coalescing window (default 1h); further revokes in the window join the same rotation (one epoch bump). `--force-rotate-seed` rotates immediately (compromised-node path). RE-SEED GRACE: a node proving the immediately-prior epoch (N-1) AND still on the roster gets a re-seed-only restricted connection (auto-heals a benign offliner); revoked/off-roster denied; ≥2 stale → re-pair.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 33
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 68
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 111
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 462
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 711
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 725
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 132
            },
            {
              "path": "crates/spt-store/src/rotation.rs",
              "line": 26
            },
            {
              "path": "crates/spt-store/src/rotation.rs",
              "line": 97
            },
            {
              "path": "crates/spt-store/src/rotation.rs",
              "line": 119
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 82
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 111
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 232
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 245
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7619
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/reseed.rs",
              "line": 98
            },
            {
              "path": "crates/spt-daemon/tests/reseed.rs",
              "line": 140
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 187
            },
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 251
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 1079
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 1109
            },
            {
              "path": "crates/spt-daemon/src/seedproofx.rs",
              "line": 1129
            },
            {
              "path": "crates/spt-net/src/net/mesh/seedproof.rs",
              "line": 602
            },
            {
              "path": "crates/spt-store/src/rotation.rs",
              "line": 148
            },
            {
              "path": "crates/spt-store/src/rotation.rs",
              "line": 169
            },
            {
              "path": "crates/spt-store/src/rotation.rs",
              "line": 181
            },
            {
              "path": "crates/spt-store/src/rotation.rs",
              "line": 202
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 375
            },
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 407
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15585
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MESH-5",
      "title": "Hard cutover from pairwise trust: delete peers.json + the is_trusted authorization path (no migration — expendable test fleet, re-pairs fresh under the new model, user decision 2026-06-08). Warn-on-change DEMOTED from a gate to an awareness notice anchored on machine_id (not label): 'machine M, last seen as K1, now presents K2' — fires the same event as the REQ-SUBNET-7 re-pair overwrite. The TrustStore/peers.json code and its call sites are removed, not left dead.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 61
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 109
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 104
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 106
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 85
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 250
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 314
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 950
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 102
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 193
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1271
            },
            {
              "path": "crates/spt-store/src/roster.rs",
              "line": 462
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MESH-6",
      "title": "Concurrent liveness probes: `spt subnet status --nodes` fans out its offline/serve-probes (REQ-SUBNET-5) CONCURRENTLY — total wall-time bounded by the single-probe ceiling (~3s), never k×ceiling. The mesh makes a node see ALL members (many possibly offline), so a serial probe loop would be offline_count×3s. (Planning verifies the current REQ-SUBNET-5 probe loop's behavior and fixes it if serial.)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7069
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16489
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16516
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16540
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MIGRATE-1",
      "title": "Auto-detect and migrate a legacy claude_skill_owl install",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-MSG-1",
      "title": "Local message delivery: TCP-first to a registered address, spool fallback when offline; id->address via registry (stale-clean first); reply routing (__REPLY_TO__)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 28
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 94
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 127
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 149
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 174
            },
            {
              "path": "crates/spt-msg/src/listener.rs",
              "line": 18
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 13
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 62
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 13
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/tests/killer_quickstart.rs",
              "line": 9
            },
            {
              "path": "crates/spt-msg/tests/killer_quickstart.rs",
              "line": 56
            },
            {
              "path": "crates/spt-msg/tests/killer_quickstart.rs",
              "line": 113
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 246
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 275
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 320
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 343
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 368
            },
            {
              "path": "crates/spt-msg/src/listener.rs",
              "line": 204
            },
            {
              "path": "crates/spt-msg/src/listener.rs",
              "line": 237
            },
            {
              "path": "crates/spt-msg/src/listener.rs",
              "line": 251
            },
            {
              "path": "crates/spt-msg/src/listener.rs",
              "line": 263
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 166
            },
            {
              "path": "crates/spt-msg/src/ring.rs",
              "line": 246
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 134
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 153
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-2",
      "title": "spt binary CLI surface: send/ring/ready(+--once)/list/stop/whoami, stable arg shapes + exit codes",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11
            },
            {
              "path": "crates/spt/src/main.rs",
              "line": 8
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12870
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12912
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12961
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13011
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15319
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15350
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-3",
      "title": "Ready-agent lifecycle: register perch (info.json + listener + registry address) on ready, drain spooled backlog on startup, clean teardown",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/listener.rs",
              "line": 19
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 21
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 48
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 193
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/tests/killer_quickstart.rs",
              "line": 10
            },
            {
              "path": "crates/spt-msg/tests/killer_quickstart.rs",
              "line": 56
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 247
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 266
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 289
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-4",
      "title": "Listener stream stdout emits EVENT envelope lines (sister-format, ADR-0001): parse the __REPLY_TO__ frame, pass pre-formed typed envelopes through verbatim (no double-wrap), compose <EVENT type=\"msg\" from=…> otherwise, chunk oversized lines into EVENT-PART",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 19
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 46
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 642
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5944
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/quickstart_e2e.rs",
              "line": 98
            },
            {
              "path": "crates/spt/tests/quickstart_e2e.rs",
              "line": 128
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 68
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 79
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 90
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 151
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-5",
      "title": "user-msg envelope kind + daemon identity gate: a Gateway endpoint / the local user's CLI author user-msg (the user's authority); agent-family senders re-stamped to plain msg; identity-gated never payload-trusted (KH 7.3/7.5); wire-additive (N-1 receivers tolerate the new type)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 259
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 63
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 126
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 135
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 149
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 178
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5529
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/gateway_e2e.rs",
              "line": 19
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 380
            },
            {
              "path": "crates/spt-daemon/tests/wanmsg.rs",
              "line": 155
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 122
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 452
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 501
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 517
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 536
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12781
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-6",
      "title": "cross-node Gateway user-msg honored via advertised endpoint_type: a user-msg from a Gateway-typed origin survives the receive_wan funnel as user-msg (vs the fail-closed re-stamp), keyed on the QUIC-handshake-proven origin node (never wire `from`). Trust boundary = subnet membership (operator-ratified 2026-06-13); no defense against an in-subnet member forging the type. Instance.endpoint_type is an additive serde-default field extending REQ-INST-7's data model. Absent/unknown type → re-stamp (N-1 rollout grace)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 262
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 177
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 420
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 485
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 92
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 155
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 2173
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 407
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-CLI-ORIGIN",
      "title": "A bare non-perch CLI `spt send` (no owning perch to name as origin) stamps from = `cli@<node-label>` at compose time (bare `cli` when no node label is known — never a dangling `cli@`), and WAN ingress renders an EMPTY from as the origin node DISPLAY (`node_label_display(origin_node, None)` = the QUIC-proven origin node's key-prefix; never blank) — a delivered message NEVER shows a blank sender. Scoped to `spt send`: a from-less send is LEGAL (stamped, never refused), while `spt ring` keeps its NO_SELF refusal (a ring needs a routable self for the reply leg; `cli@<node>` is a display origin, not a perch address). (F-024C item 3, doyle ruled)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 241
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 295
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5594
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 335
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11478
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-DELIVERY-AXES",
      "title": "Activity-gated inbound delivery + per-message send control as THREE ORTHOGONAL AXES plus opaque metadata (ADR-0028; grilled w/ operator 2026-06-23). SUBSTRATE (the legacy-SPT parity gap, scaffolded-but-unwired today: `delivery::is_idle` + `resolve_inject_methods` exist but the result is discarded `let _methods`, and `broker::dispatch_endpoint_input` injects unconditionally — its comment calls activity-gating 'a deferred follow wave'): an inbound message has an ACTIVE window (endpoint active → spool for the receiver's hook-poll, non-disruptive) and an IDLE window (idle/idle-transition → deliver immediately: translation binary spt-hosted → relay-poll either topology → spool, in fallback order). AXES (each composes; each defaults to its unrestricted value): (1) DELIVERY WINDOW — default (both, first-to-fire) | `--idle-only` (idle window; immediate if already idle) | `--active-only` (active window only, never wakes; the RENAMED `--deferred` — `deferred=1` spool column + `api poll --include-deferred` keep their names). (2) CHANNEL RESTRICTION — unrestricted | `--prefer-native` (translation binary if running else fall back) | `--force-native` (binary ONLY, no fallback/no spool-to-other-method). Native flags do NOT respect the binary's idle-gating: the WINDOW says when, the native flag says through-what (so `--force-native --active-only` = binary injects during the active window, mid-turn-safe via the existing InjectFloor). (3) PERSISTENCE — durable (default; spool until delivered or TTL) | `--ephemeral` (drop if undeliverable in the accepted window — at window-open with no live carrier, or at TTL, whichever first). METADATA (orthogonal): `--json-payload '<json>'` → a single attr-escaped `json=\"…\"` envelope attr ALONGSIDE (not replacing) the body, pure verbatim passthrough across spool/TCP/WAN/EVENT-PART, parsed only by the receiving adapter; collision-proof by construction (structured data lives INSIDE the one `json` value, can never forge `from`/`type`); available to ANY sender (confers no spt-core authority). HAZARD: `--ephemeral` is the ONLY path permitted to drop silently — the sender-opted-in carve-out to REQ-HAZARD-IDLE-SILENT-NONDELIVERY (that hazard gains a '…unless --ephemeral' clause in v0.15.0). (v0.15.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0028-activity-gated-delivery-and-send-modifier-axes.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1366
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2103
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2323
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2337
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3479
            },
            {
              "path": "crates/spt-msg/src/deliver.rs",
              "line": 199
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 339
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 524
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 785
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 36
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 150
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 224
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 248
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 133
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5556
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5646
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5715
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1664
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1732
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2037
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2086
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1267
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1095
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1128
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1159
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 426
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 463
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 493
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12838
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-ENVELOPE",
      "title": "The <EVENT type=\"msg\" from=…>body</EVENT> envelope (spt-proto::event, the ADR-0001 grammar) is the SOLE canonical arriving-message format at EVERY harness arriving-message surface on an AGENT perch — api listen AND api poll/worker-poll, byte-identical (reverses REQ-MSG-4's 'hook drains keep the raw frame by contract'). SCOPE CARVE-OUT: the shell-command relay (api poll <shell-id> --link, cmd_poll_shell) is a distinct internal transport carrying RAW MAC'd stamped frames the shell child consumes verbatim — NOT an arriving-message surface, deliberately EXEMPT from <EVENT> composition (notify_shell_e2e guards this boundary). __REPLY_TO__ — mis-elevated during the clean-room port to a fake ADR-0001 'stable wire format' (spt-msg/wire.rs, lib.rs) — is REMOVED entirely (spool format_row, the spt-msg TCP frame, emit parse_frame); (from, body) carried structurally, <EVENT> composed once at the delivery boundary. No legacy sister-interop (spt-core never required it). Reply-correlation rebinds onto the structural from / <EVENT from=…> attribute (ADR-0009 access-gate + ADR-0012 Psyche/spt-live reply-target). Self-delimiting by construction → finding F-002 (non-self-delimiting multi-message poll) dissolves. ADR-0020.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0020-event-envelope-sole-arriving-format-reply-to-removed.md",
              "line": 47
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 20
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 33
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 47
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 58
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 14
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 27
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 40
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 202
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 149
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 265
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 643
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 124
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5945
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/poll_envelope_e2e.rs",
              "line": 15
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 102
            },
            {
              "path": "crates/spt-msg/src/emit.rs",
              "line": 137
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 98
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 106
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 113
            },
            {
              "path": "crates/spt-msg/src/wire.rs",
              "line": 122
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-IDLE-EDGE-DRAIN",
      "title": "On an endpoint's ACTIVE→IDLE transition the daemon DRAINS its pending spool (deferred AND non-deferred) through the same shared spt-hosted inject leg — closing the SECOND F-023 gap: no idle-edge drain exists anywhere, so an spt-hosted endpoint (which has no api-listen relay to wake it) strands BOTH message classes ('ACTIVE → spool deferred for hook-poll' and 'IDLE+no-binary → non-deferred for a relay that does not exist'). FIX: on the state ACTIVE→IDLE edge, offer the pending spool through the shared inject leg; REUSE the hook-poll drain's take/ack machinery so a concurrent `api poll` cannot double-deliver — ONE drain path, TWO triggers (hook-poll + idle-edge). v0.14.3 LAW holds on BOTH triggers: translation-binary-ONLY, a no-binary idle drain SPOOLS LOUD, never writes the PTY. (F-023, BUILD-F023-WANIDLE)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 596
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 654
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 246
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/idle_edge_drain_e2e.rs",
              "line": 87
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1200
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1240
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1276
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-IDLE-TRANSLATION-BINARY",
      "title": "spt-hosted idle message delivery via an adapter TRANSLATION BINARY (ADR-0022). New opt-in manifest section `[message-idle-translation-binary]` = a TABLE carrying a `path` scalar (doyle OPT-B ruling: modeled as a table, not a bare top-level scalar, so a preceding section cannot silently absorb it + N+1 extensible; spt-core does NOT deny_unknown_fields, so a future key degrades gracefully); spt-core LIFECYCLE-manages it (spawn when the endpoint comes up, terminate when it goes down). The binary is a PURE stdin→stdout filter; spt-core owns EVERY PTY write. stdin (JSON-lines): `{type:\"init\",endpoint_id,node}` first · `{type:\"event\",envelope:\"<EVENT…>\"}` per inbound message (ADR-0020 envelope) · `{type:\"input\"}` content-free ping on each operator keystroke (binary tracks user-idle for its own idle-gated buffering; PTY input content NOT duplicated). stdout (JSON-lines): keystroke-commands `{key:…}`/`{delay_ms:…}`/`{text:…}` (extensible). spt-core applies the emitted sequence to the broker PTY ATOMICALLY (the W1 coordination — REQ-HAZARD-INJECT-CONTROL-COEXIST). The daemon poll feed is the ONE idle substrate for both topologies (Q1=A): harness-hosted consumer = the Monitor child, spt-hosted consumer = this binary; spt-core PREFERS a perch's poll listener if one exists (so spt-hosted can run a listener AND keep `spt rc`). Idle-only; busy/mid-turn = adapter hook-injection. Closes the current grounding gap: `api bind` registers no listener port → a listener-less spt-hosted perch SPOOLS inbound (only spooling+adapter-poll works today) → this delivers real inbound into the PTY. AMENDED v0.14.3 (ADR-0022 amendment, raw-inject removal): idle delivery is translation-binary-ONLY — the v0.11.0 raw `{text:payload}{key:enter}` inject is NO LONGER a delivery path; with no working binary (absent/spawn-failed/faulted/worker-gone) the inbound SPOOLS (delivered=false, poll-fed, LOUD), never a raw PTY pseudo-write (which did not submit on a modern TUI — the silent degrade that masked F-019). See REQ-HAZARD-IDLE-SILENT-NONDELIVERY. (v0.13.0, amended v0.14.3)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/manifest.md",
              "line": 313
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 341
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1790
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2101
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3429
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3509
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 23
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 92
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 242
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 308
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 332
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 60
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1054
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 197
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1332
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1479
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1555
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1648
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 469
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 371
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 425
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 455
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 484
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1520
            }
          ]
        }
      }
    },
    {
      "id": "REQ-MSG-SELF-DETECT-ANCESTRY",
      "title": "#9 (F026, operator field bug): a perch-owned `spt send` from an endpoint's OWN session must self-identify, not mis-stamp `cli@<node>` (whose replies bounce NO_PERCH). ROOT: roster::detect_self_id (roster.rs) was ENV-ONLY — OWL_SESSION_ID matched to info.session_id, else SPT_AGENT_ID — but an agent-session Bash child often carries NEITHER (the env export is spawn-path-dependent), so a perch-owned sender was classified bare-CLI and REQ-MSG-CLI-ORIGIN stamped it cli@<node> (the stamp works as designed on a wrong premise; that REQ's evidence stays intact). FIX: detect_self_id gains leg (c) PID-ANCESTRY fallback AFTER the env legs — walk THIS process's ancestry, match a live non-corrupt roster perch's recorded harness pid (info.json.pid Numeric, alive-gated via is_process_alive, corrupt/BUSY skipped), first match = self. from-LABEL / routing default ONLY, NOT authentication — authenticate() is untouched (pid-ancestry-for-AUTH stays parked per F-024 with its Windows pid-spoof caveats; a display/routing stamp has no such bar). Best-effort: a broken ancestry walk degrades to None → cli-stamp, never errors the send.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 306
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 394
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 137
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 183
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/roster.rs",
              "line": 269
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 296
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/roster.rs",
              "line": 237
            }
          ]
        }
      }
    },
    {
      "id": "REQ-NET-1",
      "title": "WAN messaging first-class, behind default-on net feature flag",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 54
            },
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 630
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 233
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 97
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 281
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 297
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 312
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 430
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 489
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 495
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 501
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 517
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 537
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 35
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 115
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 375
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5774
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 17
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 342
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 685
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1075
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 706
            },
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 741
            },
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 1092
            },
            {
              "path": "crates/spt-daemon/tests/wanmsg.rs",
              "line": 202
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 691
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 705
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 724
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 156
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 217
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 1046
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 854
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 1314
            }
          ]
        }
      }
    },
    {
      "id": "REQ-NET-2",
      "title": "n0 relay default + self-host knob + plain-language disclosure",
      "requiredStages": [
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 57
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 71
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 81
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 281
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 297
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 312
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 415
            }
          ]
        }
      }
    },
    {
      "id": "REQ-NET-3",
      "title": "Cross-node Psyche sync over P2P replaces gh-repo-sync",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 39
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 183
            },
            {
              "path": "crates/spt-daemon/src/sync.rs",
              "line": 334
            },
            {
              "path": "crates/spt-net/src/net/sync.rs",
              "line": 36
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 211
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 291
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 312
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 370
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 389
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 427
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 472
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 485
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 29
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 72
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 123
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/sync.rs",
              "line": 224
            },
            {
              "path": "crates/spt-daemon/tests/sync.rs",
              "line": 352
            },
            {
              "path": "crates/spt-daemon/tests/sync.rs",
              "line": 517
            },
            {
              "path": "crates/spt-net/src/net/sync.rs",
              "line": 93
            },
            {
              "path": "crates/spt-net/src/net/sync.rs",
              "line": 142
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 315
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 355
            },
            {
              "path": "crates/spt-store/src/syncmerge.rs",
              "line": 494
            }
          ]
        }
      }
    },
    {
      "id": "REQ-NET-FAMILY-GATE",
      "title": "spt-core binds only IP families that are actually REACHABLE (ADR-0030), so a half-broken family (e.g. IPv6 whose AAAA resolves but whose path is dead) never silently consumes connection/discovery time. At NetEndpoint::bind (endpoint.rs), probe each family's reachability ONCE and bind only the working ones: dual-stack when both healthy; IPv4-only when IPv6 is dead; IPv6-only when IPv4 is dead (drop the DEAD family — NOT a fixed prefer-IPv4; IPv6-only networks must keep working). Re-evaluated on daemon restart (once-at-bind, no live re-eval in v1). Explicit overrides SPT_DISABLE_IPV6 / SPT_DISABLE_IPV4 force a family off (escape hatch + determinism + testing, mirroring SPT_NTP_SERVER); a forced-off family is never bound regardless of the probe. Reusable beyond join — every spt connection benefits. (next milestone)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0030-robust-wan-subnet-join.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 210
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 255
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 625
            },
            {
              "path": "crates/spt-net/src/net/endpoint.rs",
              "line": 675
            }
          ]
        }
      }
    },
    {
      "id": "REQ-NODE-IDENTITY",
      "title": "Ed25519 identity primitive: keypair, detached sign/verify, stable pubkey<->hex",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 60
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 68
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 86
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 120
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 127
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 143
            },
            {
              "path": "crates/spt-store/src/nodeid.rs",
              "line": 16
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 199
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 218
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 234
            },
            {
              "path": "crates/spt-proto/src/identity.rs",
              "line": 256
            },
            {
              "path": "crates/spt-store/src/nodeid.rs",
              "line": 127
            },
            {
              "path": "crates/spt-store/src/nodeid.rs",
              "line": 143
            },
            {
              "path": "crates/spt-store/src/nodeid.rs",
              "line": 158
            }
          ]
        }
      }
    },
    {
      "id": "REQ-NOTIF-1",
      "title": "Notification primitive: per-subnet replicated spool, seen/dismissed, resurface-at-boundary, subsumes update+consent prompts",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 550
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 30
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 69
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 93
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 107
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 142
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 187
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 258
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 380
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 487
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 24
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 34
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 60
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 82
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 94
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 96
            },
            {
              "path": "crates/spt-daemon/src/pump/notif.rs",
              "line": 44
            },
            {
              "path": "crates/spt-net/src/net/notif.rs",
              "line": 20
            },
            {
              "path": "crates/spt-net/src/net/notif.rs",
              "line": 30
            },
            {
              "path": "crates/spt-net/src/net/notif.rs",
              "line": 50
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 28
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 126
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 161
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 202
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 213
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 238
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 261
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 124
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 286
            },
            {
              "path": "crates/spt-daemon/tests/pump.rs",
              "line": 145
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 694
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1204
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 580
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 644
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 754
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 786
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 854
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 912
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 1187
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 157
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 250
            },
            {
              "path": "crates/spt-daemon/src/notifsync.rs",
              "line": 273
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 355
            },
            {
              "path": "crates/spt-daemon/src/psyrelay.rs",
              "line": 392
            },
            {
              "path": "crates/spt-daemon/tests/notifsync.rs",
              "line": 132
            },
            {
              "path": "crates/spt-net/src/net/notif.rs",
              "line": 72
            },
            {
              "path": "crates/spt-net/src/net/notif.rs",
              "line": 97
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 379
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 417
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 433
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 472
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 489
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 517
            },
            {
              "path": "crates/spt-store/src/notif.rs",
              "line": 548
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1071
            }
          ]
        }
      }
    },
    {
      "id": "REQ-NOTIF-2",
      "title": "spt notify (agent-issued subnet notif) + notif_command manifest seam (harness + shell adapters)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 559
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 189
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 287
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 301
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 326
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 264
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 133
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4278
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4327
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4428
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4484
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 820
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1447
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 1036
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 1104
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13465
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13531
            }
          ]
        }
      }
    },
    {
      "id": "REQ-OPID-MINTER-NAMESPACE",
      "title": "A-4a (REMOTE-TRUTH triage §A + ADR-0034 Decision 1 + Amendments 1 & 2): the broker effect journal's dedup key gains a minter dimension so ops minted by independent counters can never collide. ROOT (high, ground-truthed vs HEAD): the journaled-op producers key into ONE journal namespace (NET_EFFECT_SESSION|shell_sid, op) at broker.rs (EffectKey=(u64,u64)); a CLI wake op colliding with an already-journaled daemon op reproduces the typed 'already applied … retry with a fresh op_id' with NO broker restart (field-hit: spt endpoint wake id@node WOKE_FAIL). Same latent class: nethost dial_ops/stream_ops HashMap<u64,u64> ('Shares the one net op-id namespace') would re-clobber even after the journal separates them; AND shellchan::deliver_stdin_pending journals (shell_sid, row_id) so an rc operator's ops on the same shell_sid collide with spool row ids (dropped keystroke OR dropped spool row). Amendment 2 corrected the minter set: the REAL journal minters are {cli, pump, rc, shell} + legacy — psyche/epoch are the EpochSource notif/lease counter domain, NEVER submit to apply_once, DROPPED from the journal enum (a tag with no stamp site = doc'd-but-dead knob). FIX (Decision 1 + Amdt 2): ONE canonical Minter enum {Legacy, Cli, Pump, Rc, Shell, Wake} — Legacy reserved for pre-upgrade lines + untagged wire, monotonically shrinks; enum is the single source for the TEXTUAL journal-line token (self-describing during recovery). EffectKey becomes (effect-class, minter, op); recover() DUAL-PARSES (old shorter line → minter=Legacy, new longer line → parsed tag) so old journals need no migration and old-shape keys can never equal new-shape (migration-free). A MintedOp{minter, seq} newtype REPLACES bare op_id:u64 through the brain/daemon THREADING paths so forgot-to-stamp is UNCOMPILABLE (row_id stays the shell seq — never re-minted, the durable spool exactly-once identity). Wire keeps an additive optional minter field (serde default absent ⇒ Legacy materialized at broker decode; serde_json no deny_unknown_fields ⇒ NO wire version bump); the newtype is NOT forced into wire structs. nethost op-maps re-key by (minter, op). Red-first: mint an rc op == a journaled shell/pump/daemon op int on the same session → pre-fix the second dedups/clobbers (WOKE_FAIL class); post-fix both are distinct keys, both Applied.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0034-per-minter-op-id-namespacing.md",
              "line": 70
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 134
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 995
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1024
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1094
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1148
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1383
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1339
            }
          ]
        }
      }
    },
    {
      "id": "REQ-OPID-TRACING-RETRY",
      "title": "A-4b (REMOTE-TRUTH triage §A + ADR-0034 Decision 2): the tracing-only op families auto-retry ONCE with a fresh op on the typed no-longer-held error, so a broker-restart-dropped conn/stream self-heals instead of surfacing core lingo to the user. ROOT: net/rest.rs declares rest op-ids 'tracing/correlation only … redelivery needs reporting, not dedup', yet the journal enforced exactly-once on them — a rest/attach op whose conn the broker no longer holds (post-restart) returned the typed 'already applied … no longer held … retry with a fresh op_id' (broker.rs:2796 net-dial / 3047 stream-open) straight to the user (WOKE_FAIL / rc attach fail). FIX (Decision 2, scoped): the rest family (request_rest) + rc attach stream-open (request_attach_endpoint) — and ONLY those — catch the typed no-longer-held error INTERNALLY and re-issue ONCE with a FRESH op minted from the SAME minter (A-4a MintedOp; same producer, new seq). sync/update pull families (request_sync/request_update, durable open_op) are NOT wrapped — their exactly-once dedup is load-bearing (negative control). The typed op error becomes internal-only; if the retry ALSO fails, the user-facing line names the observable situation + next action in operator language, ZERO journal/op/brain lingo (F-1 public-error rule applies early — this string is user-facing). Red-first: mint a colliding op → assert the retry succeeds + the user sees NOTHING; NEGATIVE CONTROL — a durable family's no-longer-held stays a hard error, no silent retry.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0034-per-minter-op-id-namespacing.md",
              "line": 136
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 212
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 219
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 227
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 238
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 260
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 287
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 377
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1198
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1240
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1262
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1284
            },
            {
              "path": "crates/spt-daemon/src/effect.rs",
              "line": 1312
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-1",
      "title": "TOTP-seeded SPAKE2 pairing",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 27
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 88
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 110
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 153
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 182
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 29
            },
            {
              "path": "crates/spt-net/src/net/pairing/transcript.rs",
              "line": 31
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 44
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 171
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 376
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 655
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 989
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 236
            },
            {
              "path": "crates/spt-net/src/net/pairing/spake.rs",
              "line": 349
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 194
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 216
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 230
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 242
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 256
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 270
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 277
            },
            {
              "path": "crates/spt-net/src/net/pairing/totp.rs",
              "line": 295
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 968
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1051
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1121
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1182
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1238
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1457
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-2",
      "title": "Local trust store with TOFU + warn-on-change",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PAIR-3",
      "title": "Fetch current pairing code from any paired node",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6097
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6166
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6547
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8077
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15490
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15766
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16732
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16751
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16775
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16794
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16807
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16816
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-4",
      "title": "Subnet naming on first pairing",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/subnet.rs",
              "line": 174
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1294
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-5",
      "title": "Multi-subnet pairing: subnet-name discovery input, create-new-names-up-front, rendezvous-token hashing",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 44
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 96
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 107
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 124
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 155
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 195
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 251
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 273
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 33
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 45
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 59
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 376
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 989
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 360
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 311
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 322
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 424
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 72
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 82
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 100
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 110
            },
            {
              "path": "crates/spt-net/src/net/pairing/rendezvous.rs",
              "line": 125
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1044
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1110
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1357
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-6",
      "title": "Elevation-gated per-subnet code fetch (UAC/root or elevated agent; else authenticator app)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6166
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6547
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 18
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 49
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 318
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16829
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16846
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 383
            },
            {
              "path": "crates/spt/src/elevation.rs",
              "line": 392
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-7",
      "title": "Subnet icon (inline image metadata, GUI-only consumer)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PAIR-8",
      "title": "NTP TOTP offset: the pairing ceremony queries NTP at ceremony time (both sides) and applies the derived offset to the TOTP calculation in-process only; system-clock fallback when NTP is unreachable (offline LAN pairing unaffected — NTP failure never blocks a pairing that succeeds today); never sets the OS clock; no background sync loop (M8 decision 18; field trigger: enlyzeam clock >1 min off exceeds the ±1 window)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 732
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 34
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 101
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 363
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 375
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 428
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 444
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-NTP-LOUD-FAIL",
      "title": "W1/D2 (JOIN-TRUTH): total NTP failure (no server on any family answered) is LOUD, not silent — a node running the ceremony on its raw skewed system clock must be visible. ROOT: current_offset_secs (ntp.rs) does `query_offset_secs().unwrap_or(0)` and eprintln's ONLY on a nonzero success, so an all-servers-unreachable refresh is indistinguishable from 'clock agrees'. Fix: log the TRANSITION into all-servers-failed once per refresh (suggested `NTP_TOTP_UNCORRECTED: all NTP servers unreachable — ceremony clock = raw system clock`) and the recovery transition back to corrected; the OFFSET_TTL already bounds refresh cadence so no per-call spam. Fallback behavior (offset 0 → system clock) is UNCHANGED — this adds observability only.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 138
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 214
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 458
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PAIR-NTP-MULTIHOME",
      "title": "W1/D1 (JOIN-TRUTH): the ceremony NTP query reaches a server on EITHER IP family — `query_unix_secs` (ntp.rs) must iterate every address `to_socket_addrs()` resolves (not just the first) and bind a socket of the matching family per candidate (IPv4 addr → bind 0.0.0.0:0; IPv6 addr → bind [::]:0), first successful answer wins. ROOT (proven 3/3-FAIL via our exact code on enlyzeam): today `UdpSocket::bind((\"0.0.0.0\",0))` is v4-only and `send_to(&packet, server)` sends ONLY to the FIRST resolved addr — time.google.com resolves 4×AAAA before any A on a v6-first dual-stack box → the primary server is PERMANENTLY unreachable via our code (w32tm reaches it over v6), silently halving NTP redundancy (pool.ntp.org v4 carried everything; a DNS rotation making BOTH v6-first would zero it). Fix keeps the lazy-cache/TTL/fallback contract of REQ-PAIR-8 unchanged — only the socket/resolve leg changes.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 262
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 276
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 284
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 302
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 391
            },
            {
              "path": "crates/spt-net/src/net/pairing/ntp.rs",
              "line": 410
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PEER-PUMP-CHURN-STALL",
      "title": "B5 (F028, perri F-a; DEFECT daemon, OBSERVED-ONCE, HIGH): the peer pump STALLS under rapid rc attach/EOF-detach/--take churn. Fresh 0.22.0 daemon ~10min after restart, during rapid rc cycling: `peer pump: STALLED (last tick 122s)`; while stalled `spt rc --view` -> `RC_FAIL: attach request: brain IPC read deadline elapsed` (repeatable) and controlled-clear stopped propagating. Daemon restart recovered + endpoints auto-revived. Prior class: REQ-HAZARD-PUMP-IPC-DEADLINE (reader-thread+channel carrier), REQ-broker-QUIC-deadline (bounded_block_on) — something in the rc-churn path can still wedge the pump tick. perri holds exact timestamps + a repro candidate (rapid attach/detach/take against one endpoint) — REQUEST before RCA. See triage B5.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PICKER-1",
      "title": "The picker renders a FOUR-state endpoint status (extending the W2 online/offline duality): the list-item square AND a color-coded STATUS line at the top of the pick-existing right-side details both show — gray OFFLINE; green ONLINE (online + PTY-controllable spt-hosted, not controlled); amber 'ONLINE - HARNESS ONLY' (online but NOT broker-PTY-controllable = harness-hosted, no broker PTY seat — today mis-shows green); blue 'ONLINE + CONTROLLED' (online + driven_by.is_some()). Derived on EndpointRow from {offline | controllable | driven_by} with precedence offline→gray, else driven_by→blue, else !controllable→amber, else green (driven_by outranks harness-only; mutually exclusive in practice — a harness-only endpoint has no broker PTY to control). The controllable discriminator is a NEW InfoJson.controllable: Option<bool> (serde-default, N-1-safe), stamped at the establish seam — cmd_listen (harness-hosted relay, no broker PTY) → Some(false); cmd_bind live_agent (spt-hosted broker PTY) → Some(true); absent → not-controllable (amber) default (harness-hosted is the common mis-reported case; one bind self-corrects). Store-projection-only (no live daemon query — doyle ruling). (v0.10.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 266
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 633
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 670
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 919
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2022
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 708
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-2",
      "title": "The picker's project-history loader reads the git-backed context store, not the bare working tree: data.rs project_history_for enumerates an endpoint's projects via the BranchStore branch set (the context store keeps per-project context in git branches — contextstore::project_branch(project_id), checked out to projects/<project>/<id>/ only on-demand) instead of raw std::fs::read_dir over the empty working tree (which returned empty for ALL rows incl wall-a — the operator bug). Ordered newest→oldest by branch commit recency; degrades to empty (informational pane), never fails. (v0.10.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 236
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 492
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 853
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-3",
      "title": "A self-owned subnet row reconciles its status to the LIVE roster: a Subnet-category row whose endpoint_id overlaps a local (is_local) roster id is self-owned (this node hosts it), so its status square is OVERRIDDEN with the live roster status — the WAN registry snapshot (wansend::load_snapshots) is a periodically-advertised, independently-stale projection, while the local roster (p.alive) is ground truth for an endpoint this node hosts. One status square per endpoint (CONTEXT.md:348-350 — nothing licenses opposite squares for one endpoint across its Local vs Subnet listings). A reconcile pass in data.rs after the local_rows + subnet_rows gather; BOTH category listings are preserved (Local + Subnet are legitimately distinct views — you are in your own subnet), only the STATUS is unified. (v0.10.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 159
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1014
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-4",
      "title": "The picker's Subnet category renders the canonical node LABEL, not bare key-hex: a subnet row's node renders as 'LABEL (keyprefix…)' (e.g. 'HFENDULEAM (bcead52b…)') per CONTEXT.md:650 + Instance.node_label, NOT the raw node key-hex (SPT_DEV:14efb80cb… — a picker-only regression because resource_projection→ResourceRow drops node_label, so data.rs subnet_rows uses the raw row.node). Thread node_label into the picker subnet path (ResourceRow gains node_label, or subnet_rows looks it up via the registry's node_labels) and REUSE the one canonical render (format!(\"{l} ({}…)\", key_prefix) — cli.rs / wansend.rs), never a re-implementation. (v0.10.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 551
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 140
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1863
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1184
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-5",
      "title": "`spt endpoint list` (bare/subnet view) renders an ALIGNED table with canonical node labels: cmd_endpoint_list prints subnet rows with `\\t` TAB separators (cli.rs:~1651-1662) so variable-width endpoint_ids snap fields to different tab-stops → a RAGGED status column (operator screenshot: X/help statuses misaligned vs rt-*/sptc-*/wall-a); and it calls the node renderer with no label → bare key-hex for every row (SAME ResourceRow-drops-node_label root as REQ-PICKER-4). FIX: max-width per-column padding (mirror render_node_rows' pad, pad by char count not byte len — '…' is multibyte) replacing the tabs, and render the node via the shared node_label_display now that ResourceRow carries node_label (REQ-PICKER-4). Extract a pure row-formatter seam so the alignment+label is unit-testable. ALSO: the bare list is the SUBNET view (a just-run LOCAL perch is invisible cross-subnet until the next advertise tick), so emit a `--local` hint line so a freshly-run endpoint isn't perceived as lost. (v0.10.0; operator-flagged + doyle dispatch 2026-06-17)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3199
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3271
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12105
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12280
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-ADAPTER-DESCRIPTION",
      "title": "The Create-new adapter-CHOICE screen of `spt endpoint run`'s picker shows a right-hand Description panel (like the Pick-existing endpoint picker's two-pane) surfacing per-adapter detail: install date, last-updated, adapter TYPE / the endpoint types it hosts, and the adapter description — so the user can see WHAT each adapter is before choosing it (today the selector lists bare names). DEFERRED fast-follow to v0.12.0 (operator 2026-06-18). (post-v0.12.0)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PICKER-BACK-NAV",
      "title": "C-4 (REMOTE-TRUTH triage §C-4 #9): Backspace is a back() ALIAS across the picker — one keypress backs out one screen along the SAME reverse map Esc walks (model back(), complete for all screens incl. the C-3 ConfirmPurge), and from the kind layer it cancels the picker (Esc parity) — EXCEPT the two text-edit contexts, where Backspace stays CHAR-DELETE: CreateId entry (id_backspace) and the pick-list filter mode (filter_backspace). DELIBERATE: no empty-buffer fallthrough to back() in the text contexts — mixing delete and nav on one key invites miskeys mid-typing; Esc already backs out (the triage's optional extra, declined). Pure key routing in handle_key (picker/mod.rs) ahead of the per-screen arms; zero model change (the reverse map pre-existed). Red-first: Backspace on Confirm → PickExisting (pre-fix: dead key); on CreateId with a buffer → buffer shortens, screen unchanged; empty buffer → STILL no nav.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 197
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 556
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 575
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-CHANGE-ADAPTER-FLOW",
      "title": "B-2 (F029, operator; LARGEST item): `ConfirmOption::ChangeAdapter` wrongly routes into the CREATE flow (Screen::CreateAdapter → CreateId → CreateHome → START, reenter_create(true)) — it re-prompts id + home and then STARTS the endpoint. Required: prompt ONLY the harness-adapter pick, apply the change to the perch record (update info.json.adapter via the existing write seam; an `<adapter>:<profile>` pick stamps the full option, composing with A-4), then RETURN to the endpoint's Confirm menu — NO id prompt, NO home prompt, NO start. FIX: a return-to-Confirm mode on the adapter-pick screen (flag or dedicated Screen::ChangeAdapterPick) skipping CreateId/CreateHome + the launch outcome. Unit the flow-state transitions + the record write. Shared-seam: touches picker flow state — run the full picker cluster. See triage B-2.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 386
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1578
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1596
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1606
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1846
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 953
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-CHOOSE-DEDUP-ALL",
      "title": "A4 (F028, operator #5): choose-project duplicate rows. model.rs:314-337 build_project_choices dedups the `Here: <run_cwd>` row only against the HEAD ref's dir (line 324) — an OLDER history ref with the SAME dir still renders, giving `Here: C:\\...\\projects` + `projects` as two rows for one project (operator screenshot). FIX: dedupe `Here` against ALL history dirs, and skip rest-rows whose dir == run_cwd when Here is present. Extend the model.rs:1847 choose-project test. See triage A4.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 360
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2488
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-CONTROL-LINE-STATUS-GATE",
      "title": "A2 (F028, operator #2): the picker confirm-panel 'controlled locally' line renders for OFFLINE endpoints. view.rs:425-436 builds control_line from ep.controlled with NO status gate; an offline endpoint with a stale controlled stamp shows 'controlled locally' (operator screenshot: hall-a offline + controlled locally). RENDER HALF (this REQ): control_line MUST be empty when status != Online. The upstream STICKY-stamp half (stamp survives client SIGKILL >=5min) is B3/REQ-PRESENCE-CONTROL-REAP-ON-EXIT. FIX: gate the render. See triage A2(a).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 550
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 780
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-CONTROLLED-LOCAL",
      "title": "#3 local half: a LOCALLY-controlled endpoint renders CONTROLLED in its own node's picker. display_status() (crates/spt/src/picker/model.rs:415) derives Controlled ONLY from driven_by.is_some(), but driven_by is REMOTE-only by design (KH 7.15) — a locally-controlled endpoint has driven_by=None + controlled=true, and local_rows (data.rs:220) never threads controlled into EndpointRow, so a locally-RC'd endpoint shows plain ONLINE in its own picker (remote rows are fine — gossip stamps controller_node=self, REQ-GOSSIP-CONTROLLED-ANY; the asymmetry is the bug). Fix: EndpointRow gains controlled:bool (local: rec.controlled; remote: controller_node.is_some()); display_status -> Controlled when driven_by.is_some()||controlled; desc pane says 'controlled locally' when the driver is unnamed. See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #3.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3113
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 271
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 606
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 658
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1995
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 744
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 760
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-CURRENT-DIR-LABEL",
      "title": "A-2/A-3 (F029, operator, semantic pair): the Choose-project rows must self-identify the CURRENT DIR. build_project_choices (picker/model.rs:322-352). A-2: when the run cwd IS already a history dir the `Here:` row is (correctly) suppressed by the dedup (REQ-PICKER-CHOOSE-DEDUP-ALL), but the matching history row rendered bare `r.display` with no cwd affordance — mark it `<display> (CURRENT DIR)`. A-3: the not-in-history current-dir row changes from `Here: <run_cwd>` to `CURRENT DIR --> <project>`, deriving the display the SAME way the history refs do (folder tail; honest fallback to the raw path when underivable). `cwd` payload unchanged. Grep-tests rule: 3 `starts_with(\"Here: \")` asserts (model.rs) + a `Here: /here` render assert (view.rs) are behavior assertions on the OLD label. See triage A-2/A-3.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 385
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 398
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2461
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-FORK-LABEL-CWD",
      "title": "B-3 (F029, operator): the confirm-panel `Fork endpoint` option label is static and says nothing about WHERE the fork lands. A fork runs in the picker's launch cwd (run_cwd); the label must state that dir honestly: `Fork endpoint here --> <current dir>`. Anchor picker/view.rs confirm_option_label (was `fn(opt)->&'static str`). Make the label model-aware for the dir-relative options. See triage B-3.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 482
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 1000
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-HISTORY-FRESH",
      "title": "The `spt endpoint run` picker shows project history for FRESH endpoints (operator-raised v0.12.0 real-harness finding). Symptom: a fresh endpoint shows no project history in the picker. ROOT TBD — investigate the project-history loader (v0.10.0 PICKER-2, picker/data.rs) before fixing: distinguish a real loader bug from 'fresh = no history yet' semantics. (v0.12.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 412
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1118
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-KEY-GATE-LAUNCH-CAPABLE",
      "title": "B-1 (F029, operator): the `h` (headless start) / `s` (shortcut) keybinds fire from broad picker contexts (mod.rs handle_confirm_key / ChooseProject / Resume) regardless of whether the highlighted row would LAUNCH the endpoint. Restrict both to launch-capable highlights: (a) `Start now` in the immediate-start case (should_offer_project_choice == false), (b) a Choose-project row, (c) a Resume-from-history row. The footer hint line must render `h`/`s` ONLY when actually live (hint truth = availability truth). FIX: gate the key handlers on (screen, highlighted-option), unit the gate as a pure matrix. See triage B-1.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1296
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1474
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1491
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1774
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 972
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-NODE-GROUPING",
      "title": "Bug #13: the endpoint run Subnet tab shows a machine once PER shared subnet (subnet_rows data.rs:253 iterates per-subnet, groups by subnet:node, no cross-subnet dedup). Fix: dedup by (node, endpoint_id) across the subnet loop, collect the set of shared subnet names per endpoint, emit one group per MACHINE (group = node_display) with its shared subnets listed beneath the machine name; reconcile per-endpoint status across subnets (most-alive). Couples REQ-ENDPOINT-LIST-PALETTE (both edit subnet_rows). See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #13.",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 354
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 324
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 947
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PICKER-OFFLINE-NO-VIEW",
      "title": "A3 (F028, operator #3): 'View now (read-only)' is offered for OFFLINE endpoints. model.rs:1030 offline branch of confirm_options is vec![Start, View] — View is meaningless with no live PTY. FIX: offline set = [Start] (+ the existing Resume/ChangeAdapter/Instantiate/Fork/Shortcut tail). Update the view.rs options tests. See triage A3.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1247
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 922
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-ONLINE-ACTION",
      "title": "The `spt endpoint run` picker shows the correct action for an ALREADY-ONLINE endpoint — Attach, NOT 'Start now' (operator-raised v0.12.0 real-harness finding). Symptom: the picker offers 'Start now' for endpoints that are already online. ROOT TBD — investigate the status→action mapping (v0.10.0 PICKER-1 four-state status, picker/model.rs): is it reading live/online state correctly, or rendering stale/wedged broker state (i.e. partly a symptom of the broker wedge / status=online latch)? Fix so online → Attach. (v0.12.1)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1252
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2302
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2316
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-PROJECT-DISPLAY-NAME",
      "title": "A1 (F028, operator #1/#4/#6-display): `github-com-*` 'ghost' project entries are NOT phantoms — project_id_for_dir (spt-store/src/project.rs:64) derives ids from the git remote slug BY DESIGN (REQ-STORE-1 cross-machine sync): `github.com/SaberMage/spt-core` -> `github-com-sabermage-spt-core`. The ref is truthful; the BUG is presentation — the raw slug renders as the DISPLAY NAME everywhere (confirm-panel history view.rs:415-419, choose-project labels model.rs:314-337, resume-row titles, endpoint-list project column via latest_project_ref data.rs:417), which no operator recognizes as 'spt-core'. FIX: keep the slug as the KEY, render a friendly display name — the repo tail (spt-core) reusing the disambiguate_project_ids (model.rs:346) suffix mechanism for collisions. One shared display-name seam across all four surfaces. See triage A1.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/project.rs",
              "line": 92
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 22
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 32
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 68
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 281
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 416
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 829
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 534
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/project.rs",
              "line": 194
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 649
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1136
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1705
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1721
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 928
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-PROJECT-HISTORY-TRUTH",
      "title": "#1: picker project history is derived from sessions.log cwds (newest->oldest, deduped by project_id_for_dir) UNION context-store branches, EXCLUDING owlery-internal paths (any cwd under spt_home()/owlery) everywhere a project is displayed or inferred. Fixes three stacked defects (crates/spt/src/picker/data.rs): (1a) project_history_for (data.rs:372) reads ONLY context-store p-* branches, which are empty on this box -> history []; (1b) the fallback origin project (data.rs:207) is derived from info.json.cwd = latest-boot-cwd (rewritten every rebind), not origin; (1c) psyche-host sessions bind owlery-internal cwds that pollute history. Full DIRS stay available in the model (feature #5 needs them). PROJECT REPRESENTATION RULING (operator 2026-07-03): project IDs ONLY, EVERYWHERE incl local display; on ID collision disambiguate minimally via a PURE disambiguate_project_ids(entries)->display-names fn (append one-level-up parent folder and/or root drive letter, e.g. 'spt-core (projects)' vs 'spt-core (D:)'). See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #1.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 412
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1094
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-PURGE-SHORTCUT",
      "title": "C-3 (REMOTE-TRUTH triage §C-3 #8): the pick-existing list gains an `x` purge shortcut — on an OFFLINE LOCAL highlight, `x` opens a small in-TUI confirm screen (Screen::ConfirmPurge, the B-2 ChangeAdapterPick shape) and Enter purges via the ONE existing purge core `cmd_endpoint_purge(id, yes=true, force=false)` — NEVER the core's stdin [y/N] (it fights the picker's raw mode; the confirm screen IS the confirm). The shortcut INHERITS both purge gates (offline-only + node-local, cli.rs cmd_endpoint_purge / CONTEXT:189): gated-off presses stay on the list and FLASH WHY (online → offline-only, remote → local-only). force=false is deliberate — the model gate is advisory; the core's own offline check is the authority, and a race to online between gate and purge must REFUSE, never stop-then-purge. After a successful purge the picker STAYS (inline outcome, like Shortcut/ChangeAdapter): the row leaves the in-memory list (remove_endpoint, cursor re-clamped) + flash PURGED:{id}. Hint truth (B-1/F029 discipline): the pick legend renders `x purge` ONLY when purge_key_live() — the same predicate the handler gates on. Red-first: purge outcome reachable ONLY from an offline LOCAL highlight (online/remote → no screen change + why-flash).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 164
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 261
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 305
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 803
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1162
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1170
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1186
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1195
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 359
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 382
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2733
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2775
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2791
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-REMOTE-WAKE",
      "title": "C-2 (REMOTE-TRUTH triage §C-2 #4 + addendum @3442ce5): a REMOTE suspended picker row offers `Wake now` — waking the endpoint THROUGH its owning node's rest edge (the A-2 daemon resume leg) — instead of a bare `Start now` that silently cold-starts a COLLIDING LOCAL instance of a remote id (node-anchored identity violation, ADR-0003/0023). ROOT (certain): confirm_options collapsed Suspended into the offline action set = [Start,…]; on a REMOTE row `Start` bakes Outcome::Run with NO node → picker dispatch → cmd_endpoint_run creates a fresh LOCAL perch of the remote id (model.rs confirm_terminal / mod.rs dispatch). Remote rows are only Online/Suspended, so remote+offline == remote-suspended. FIX: confirm_options splits the offline arm on is_local — remote → vec![Wake] (a new ConfirmOption::Wake), local → vec![Start] UNCHANGED; confirm_terminal(Wake) → a new Outcome::Wake{id,node} carrying the RAW node hex; dispatch routes crate::cli::cmd_endpoint_wake_remote(id,node) → cmd_rest(id@node, RestEvent::Wake) = the EXISTING WAN rest arm (dispatch_wan_rest → wan_rest), and A-2's resume leg revives the session async (the full loop the operator wanted). `Instantiate locally` stays the separate deliberate-copy verb. ADDENDUM correction (a): EndpointRow.node is the LOSSY DISPLAY string (node_label_display = 'LABEL (prefix…)'), which node_qualifier_matches (full-hex-prefix|exact-label) CANNOT match — a dead Wake; so a NEW EndpointRow.node_key: String carries the raw ResourceRow.node hex (empty for local rows — Wake is remote-only) threaded through from_resource_row + the 4 literal ctors. CO-GATE (b, addendum): ChangeAdapter (was `offline`-gated) is gated `offline && is_local` — write_adapter_change → resolve_perch_path(Infer) → mutate_info rewrites a LOCAL perch record, so offering it on a remote suspended row is the SAME colliding-local-write-for-a-remote-id class (the Start twin); a remote node's adapter is not ours to rewrite from here. Red-first: a remote suspended row → confirm_options has Wake NOT Start NOT ChangeAdapter, and confirm_terminal(Wake) → Outcome::Wake{node==raw hex} (never a local Outcome::Run); a LOCAL offline row is UNCHANGED (Start + ChangeAdapter).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3498
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 253
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 486
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 583
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1242
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1265
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1370
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/twohost_cli.rs",
              "line": 780
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2331
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2353
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2373
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-RESUME-CONTEXT-PANEL",
      "title": "#6: the 'Resume from history' view keeps the endpoint's 'Confirm selection' top panel and swaps ONLY the bottom panel to 'Resume from a prior session' — the user stays contextually informed about what they're picking (today the resume view replaces the whole screen). crates/spt/src/picker/view.rs (resume screen) + model screen state. See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #6.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 636
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 1080
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-SHORTCUT-LABEL-FILENAME",
      "title": "B-4 (F029, operator): the confirm-panel shortcut option label is a static `New/Update spt-<id> shortcut (s)` placeholder — it should name the REAL file it writes: `Set shortcut here --> <current dir>/<shortcut-name>` where <shortcut-name> is the EXACT on-disk filename (incl. extension). The name must be produced by the SAME function that names the file in shortcut creation (picker/shortcut.rs shortcut_filename over the manifest-resolved basename) so label and writer can NEVER drift. Anchor picker/view.rs confirm_option_label. See triage B-4.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 482
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 1000
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-START-PROJECT-CHOICE",
      "title": "#5: after 'Start now' in the endpoint picker, swap the bottom Options panel to a 'Choose project' list: (1) the endpoint's most recent project dir, (2) 'Here: <dir>' — the spt endpoint run cwd (only if different), (3) all other project-history dirs newest->oldest. Fire the step ONLY when (A) the run cwd mismatches a singular history entry, or (B) history has >1 entry; otherwise start immediately (today's behavior). Depends on REQ-PICKER-PROJECT-HISTORY-TRUTH (needs full DIRS from sessions.log, owlery-internal exclusion applies). Start-now is local-only (no gossip). See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #5.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1514
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1537
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2436
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2461
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2503
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 1029
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PICKER-UX-V013",
      "title": "`spt endpoint run` picker UX (v0.13.0 operator dogfooding): (1) SKIP the first screen — open directly on 'Pick existing'; `n` jumps to 'Create new'. (2) AUTO-ATTACH after both Start-new AND Resume-from-history (both currently don't attach and show no stdout); add an `h` shortcut to run headless (no attach). (3) 'controlled by' shows the node NAME (node_label_display), not the raw hex. (4) Clean up Start-new output — drop the Rust `pid=Some(142748)` leak and the 'harness binds its perch on startup' internals; user-friendly, not a process log. (v0.13.0)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PICKER-WINDOW-TITLE",
      "title": "B-5 (F029, operator): `spt endpoint run`'s interactive picker window/tab is untitled — hard to find among many terminals. Set the window/tab title to `SPT Endpoint Picker`. Anchor picker/mod.rs:88 setup_terminal (crossterm SetTitle in the execute! chain). Set-only is acceptable (crossterm can't cheaply read the prior title to restore). Applies ONLY to the interactive picker path — non-interactive/headless `endpoint run` (REQ-HOST-RUN-1) must NOT retitle the operator's terminal. See triage B-5.",
      "requiredStages": [
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 103
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PLATFORM-MUSL",
      "title": "MUSL-TIER W2 (register the musl platform, self-IDENTIFY): add x86_64-unknown-linux-musl to the W1 registry — a current_platform() cfg arm (target_arch=x86_64, target_os=linux, target_env=musl -> the musl triple, NO more 'unknown' fallback), asset name spt-x86_64-linux-musl, triple-map entry. PROVEN (doyle /diagnose 2026-07-08, backlog #14): the current tree builds+runs static musl with ZERO source changes (rustls not openssl; aws-lc-sys+bundled-sqlite clean under musl-gcc; openpty; DNS/HTTPS works statically) — so W2 is registry DATA + cfg + asset map, NO dependency changes. Gate: a musl-built spt self-reports x86_64-unknown-linux-musl (not 'unknown'); registry-membership unit (the cfg arm is cross-target, unit the registry not the arm); build the musl target in-gate (kitsubito toolchain) and assert current_platform.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 210
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 255
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 724
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 739
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PLATFORM-REGISTRY",
      "title": "MUSL-TIER W1 (target-triple centralization, behaviour-NEUTRAL refactor): ONE authoritative platform registry from which current_platform(), KNOWN_TARGET_TRIPLES, the applyhost cross-platform 'other' logic, and the asset-name<->triple map all derive. ROOT: the target triple x86_64-unknown-linux-gnu + the implicit 'exactly 2 platforms' assumption are hardcoded across ~6 sites (release.rs current_platform cfg + KNOWN_TARGET_TRIPLES, applyhost.rs:740-743 win/linux binary if/else, xtask asset map, release.yml), so adding any platform (musl, future arm64) is a scattered edit. FIX: a data-driven registry (candidate: SUPPORTED_PLATFORMS const table of {triple, asset_name}) + generalize applyhost 'other' to 'every registered platform except current_platform()'. gnu+windows behaviour BYTE-IDENTICAL — the existing release/update/apply/propagate suites stay green (that is the gate). DESIGN FORK (doyle rules pre-dispatch): enum vs const-table; applyhost N-platform generalization; current_platform stays cfg->triple but output must be a registry member, loud 'unknown' fallback kept.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 191
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 200
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 222
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 240
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 597
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 709
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 719
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 724
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PRES-1",
      "title": "Presence resolution: the presence datum (last_active_node, last_active_endpoint, ts) gossiped subnet-wide via the agent-interaction heartbeat (rides registry distribution, visibility-gated) + one first-class most-recently-active resolution API consumed by notif first-fire, update-consent delivery, consent escalation, and shell wake resolution (M5 scope decision 1: resolution only — the PresenceChannel endpoint stays deferred)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/DEFERRED.md",
              "line": 11
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 551
            },
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 603
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 188
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 214
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 28
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 105
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 161
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 180
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 413
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 289
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 336
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 362
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 100
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 703
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 757
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1267
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 682
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 244
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 275
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 311
            },
            {
              "path": "crates/spt-daemon/src/presence.rs",
              "line": 342
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1479
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1768
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PRESENCE-CONTROL-REAP-ON-EXIT",
      "title": "B3 (F028, hall-b diagnosis + deferred #11 seed; BROADENED perri F-b CONFIRMED): dead-pid ONLINE decay window + sticky CONTROLLED stamp. Repro: /exit -> all endpoint processes dead -> `endpoint list` stays ■ ONLINE for a decay window before OFFLINE. Sticky CONTROLLED: perri confirmed controlled=true + attached_node SET while alive=false/OFFLINE, persisting >20min AND ACROSS A DAEMON RESTART (hall-b) — worse than the SIGKILL>=5min original (CAVEAT still: may reflect claude's --remote-control channel not the PTY attach — DISAMBIGUATE first). This is the deferred #11; RCA belongs to this wave. FIX: reap must clear presence AND control stamps promptly across FOUR paths — (i) clean exit, (ii) serve conn-drop, (iii) session-died-without-exit (crash/bounce), (iv) a BOOT-TIME sweep so a restarted daemon does NOT resurrect control stamps for endpoints it can see are dead. Int tests per edge. Closes A2(b). See triage B3 (broadened).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 699
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/control_stamp_lifetime.rs",
              "line": 321
            },
            {
              "path": "crates/spt-daemon/tests/control_stamp_lifetime.rs",
              "line": 413
            },
            {
              "path": "crates/spt-daemon/tests/control_stamp_lifetime.rs",
              "line": 430
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1202
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1217
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PRESENCE-LIVENESS-TRUTH",
      "title": "A node's gossiped per-endpoint registry Status reflects real liveness, so a remote viewer never paints a DEAD endpoint as ONLINE. ROOT (confirmed + gated vs CONTEXT.md): registryhost.rs:397-405 advertises a NOT-alive perch as Status::Dormant (the `else` of is_perch_alive), re-stamped every gossip round (never ages to Offline). Design intent GATED vs resting.rs + CONTEXT.md: active/dormant is the MULTI-INSTANCE routing differentiator (active = the bare-id routing target; dormant = a WARM non-target sibling — 'driving ling@laptop makes ling@desktop dormant', resting.rs:97; transitions active→dormant on AttentionShift/Detach). suspended = COLD (session closed, resumable-on-wake) while its NODE is UP. offline = NODE DOWN — NEVER self-gossiped (RestState has no Offline; a live node only ever gossips active/dormant/suspended), remote-inferred via epoch-lease eviction. So labeling a NOT-running perch Dormant is the DEFECT (dormant requires warm/running). PRIMARY FIX (registryhost `else`, not-bound-alive): live-but-UNBOUND (has a live broker session; is_perch_alive is bound-gated) → Active/Dormant (still warm); else (cold, no live session, but its node is up because this very daemon is gossiping) → SUSPENDED — NOT Dormant, NOT Offline (the node is UP; Offline is never self-gossiped). This alone removes the false-ONLINE. dormant keeps gossiping (routing/MRA needs it) but RENDERS as its online flavor (no distinct glyph; the dormant→suspended auto-suspend timer disambiguates recency). The DISPLAY of these states (incl Suspended=gray-filled) is REQ-SUBNET-DISPLAY-PARITY. Design: docs/design/subnet-presence-display.md §A. (next milestone)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 396
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 819
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 765
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1734
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-CONTEXT-FILE-INDIRECTION",
      "title": "W4 (F030; doyle Q2 ruling + perri file-always freeze, 2026-07-04): the composed psyche mind ({psyche_context}) rides the SHIM argv today — a real ~20KB doyle psyche-download exceeds the win32 CreateProcess lpCommandLine ~32k cap → the shim spawn BRICKS. FIX (file-always, replaces {psyche_context} outright — no size-branch, no argv cliff, one path): core writes the mind to a file in the psyche's NESTED perch dir BEFORE each turn spawn and fills a single {psyche_context_file} = that PATH (argv-cap-immune). The soft fresh/continue discriminator moves from KEY-presence to FILE-CONTENT: FreshWithPreload writes the composed mind NON-EMPTY (the <fresh-psyche/> never-empty guarantee carries to the file content); ContinueExisting writes it TRULY 0-BYTE (perri BINDING PIN 1 — NO sentinel/placeholder EVER, else her non-empty=fresh discriminator misfires a spurious --session-id adopt). Core owns the file lifecycle: write-before-spawn each turn, overwrite in place, persists between turns in the nested perch (debuggability); never deleted per turn. perri shim delta: --psyche-context-file <path> arg, read-file prefix, TRIM-based emptiness (her tolerance, NOT core's license — core writes exactly 0 bytes on continue, PIN 2), read-failure = generic fail NEVER 95, never writes/deletes the file. Red-first: a ~40KB mind → the old {psyche_context}-on-argv path BRICKS the win32 shim spawn; the file path succeeds (shim reads the full mind from file).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 129
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 95
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 171
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/psyche_context_file_e2e.rs",
              "line": 28
            },
            {
              "path": "crates/spt-daemon/tests/psyche_context_file_e2e.rs",
              "line": 120
            },
            {
              "path": "crates/spt-daemon/tests/psyche_context_file_e2e.rs",
              "line": 188
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1698
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1802
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-CRASHLOOP-BACKOFF-SHUTDOWN",
      "title": "C3 (F028, perri F-h): psyche wrapper crash-loop has no backoff, and `endpoint shutdown` misses a wedged wrapper. A probe psyche crash-looped ~3 boots/sec for ~30min (CC died instantly on the untrusted owlery cwd; ledger hit ordinal 5358) — SILENTLY; and `spt endpoint shutdown` did NOT tear the looping wrapper down (docs say shutdown tears the Psyche with the perch; manual kill was required). FIX: (i) bounded backoff + loud give-up on a psyche boot loop (the psyche_host_error surface already exists), (ii) shutdown must cover a wedged/looping wrapper. See triage C3.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 422
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 495
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 534
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 766
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 785
            },
            {
              "path": "crates/spt-store/src/proc.rs",
              "line": 830
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-EPHEMERAL-DRIVER",
      "title": "W1 (F030, design §3): each psyche-relevant event runs exactly ONE bounded per-event turn through the existing driver stack (psyche_turn_and_relay for outbound-intent events / resume_psyche for session-custody transitions / run_psyche_turn for pure merges) — no resident psyche process exists between events. host_one (livehost.rs:518) STOPS spawning spawn_psyche_owned; the pulse loop stays as the daemon-side scheduler (thread + stop-flag + drop-dir watch correct) but a fire now invokes one bounded turn, daemon-driving every substitution key from daemon-known context (child never self-resolves home/subnet/perch — direction-(a) multi-subnet churn impossible by construction). Turn failures consume a bounded failure budget (C3(b) shape): N consecutive failures → psyche_host_error stamp + cooldown, reset on success; no respawn storm (nothing resident to respawn). Red-first: fire an event on a hosted live endpoint → assert one turn ran (SIDE-EFFECT PROOF FILE — transcript-jsonl asserts are structurally blind, 2026-07-04 rig lesson) and no {id}-psyche process survives the turn.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 239
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 123
            },
            {
              "path": "docs/adr/0025-live-daemon-coordinated-adapter-update.md",
              "line": 69
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 128
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 135
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 645
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 721
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 899
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 909
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 992
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1082
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1181
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 632
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 154
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/psyche_event_turn_e2e.rs",
              "line": 22
            },
            {
              "path": "crates/spt-daemon/tests/psyche_event_turn_e2e.rs",
              "line": 80
            },
            {
              "path": "crates/spt-daemon/tests/psyche_event_turn_e2e.rs",
              "line": 144
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1559
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1586
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1599
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-LEGACY-RESIDENT-SWEEP",
      "title": "W5 (F030; doyle+perri 2026-07-04): a dirty daemon upgrade from <=v0.24.0 strands a RESIDENT psyche wrapper the OLD daemon spawned — and F-030 W4's nested-`ready` resolution fix CONVERTED that wrapper's accidental self-reap into a permanent HANG. The pre-W3 wrapper's only spt IPC is `spt ready <parent>-psyche --once` (BLOCKING, no internal timeout); pre-W4 that hit READY_FAIL on a multi-subnet home → the wrapper exit-4'd (accidental reap). Post-W4 the nested id resolves cleanly → the wrapper REGISTERS then BLOCKS FOREVER on its first post-upgrade poll: no exit, no psyche_host_error, no CPU (KH 2.6 invisible-loop class, one level up). Post-W3 core has no residency machinery to reap it. FIX: a ONE-SHOT legacy-resident sweep at BRAIN START (never per-reconcile/periodic — burying residency-era machinery, not resurrecting it). GUARD = adapter-AGNOSTIC (glue-model): resurrect the retired reap_orphan_psyches LOGIC — for each self-perch live-agent id derive `<id>-psyche` and kill iff (a) exe basename == the adapter's MANIFEST-declared psyche program (normalize_basename, never a hardcoded adapter name) AND (b) cmdline contains the id marker `<id>-psyche` AND (c) pid alive; any unreadable signal → DECLINE + loud log (fail-safe-decline, positive-match-only; infra never-kill inside the sweep). FRATRICIDE is closed by TIMING (perri-confirmed from the owning side): the ephemeral shim is daemon-spawned per-event, bounded, exits at turn end — at brain start BEFORE the first reconcile/pulse no current shim is resident, so any `<id>-psyche` psyche-program process alive then is unambiguously stranded-legacy. RESIDUE (doyle PIN 3): the hung wrapper REGISTERED a `<parent>-psyche` ready perch before blocking; killing the pid alone leaves a phantom ready-record with a dead pid (the REMOTE-TRUTH presence-lie class) — the sweep MUST also clear that stale registration or prove the existing stale-perch cleanup reaps it. No field window pre-W6 (nothing releases). (F-030 W5)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 769
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 787
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 820
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 838
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 907
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 988
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/legacy_resident_sweep_e2e.rs",
              "line": 30
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1773
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1836
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-NESTED-RESOLUTION",
      "title": "W4 (F030, design §3; F-017 sibling, general not psyche-only): nested {parent}/{nested} ids resolve under the PARENT's home — subnet-less resolution for nested perches (the home-ASSIGNMENT seam, not perch-path which is already subnet-less) — so child-side verbs acting on nested perches need no --subnet the child cannot know. ROOT: home::assign_home returns Ambiguous on a multi-subnet node w/o --subnet; a nested id must instead derive home from its parent perch. Additionally expose a SINGLE {subnet} base_keys fill WHEN KNOWN (own_subnet = home-subnet label, 'local' when unhomed; absent → LOUD missing-key fail, the {node} precedent). NO {home} key (doyle W4 Q1: the endpoint home subnet is ONE concept per CONTEXT.md:640, and 'home:' is already the subnet-name qualifier position CONTEXT.md:652 — a {home} template key invites meaning-drift). Red-first = evidence #3's exact repro: 2-subnet home, nested-id verb, must succeed (was: `spt ready <id> --once` → exit 1 READY_FAIL … pass --subnet).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 132
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 88
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 101
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 122
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 204
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/nested_resolution_e2e.rs",
              "line": 22
            },
            {
              "path": "crates/spt/tests/nested_resolution_e2e.rs",
              "line": 73
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1762
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 528
            },
            {
              "path": "crates/spt-store/src/home.rs",
              "line": 563
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-ROLE-OPTIONAL-SKIP",
      "title": "W1 (LIFECYCLE-TRUTH): a manifest with NO [session.echo_commune] role SKIPS commune-sync (debug-level note, no strike) instead of hard-failing the turn. ROOT (perri filing, recovered): missing role -> commune-sync hard-fails -> 3-strike stamps the host ('manifest declares no [session.echo_commune] role') while the published contract presents the role as an optional template. FIX: missing OPTIONAL role = skip, not a turn failure.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 283
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 847
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2210
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-SID-CUSTODY",
      "title": "W2 (F030, design §3): the psyche mints and keeps its OWN session id, stored in the nested {id}-psyche perch record — {session_id} in psyche role templates becomes the psyche's sid, never the parent's (today's fill at livehost.rs:518 is the PARENT's — the custody bug). Parent boundary (/clear, /compact) does NOT rotate the psyche sid (the psyche's conversational thread survives parent resets — its job). resume_psyche validates the custody key before spawn (resume.rs:183). Reseed path: psyche session lost/invalid → ResumeMode::FreshWithPreload (download_psyche_context composes role/live/project into {psyche_context}, resume.rs:100) + LOUD PSYCHE_RESEED:{id} marker (custody-loss loop visible; W1 budget bounds it). If the parent sid is still needed by a template it gets its OWN explicit key {parent_session_id} — never aliased. Red-first: parent `api boundary clear` → nested perch sid UNCHANGED (today it is the parent's — guard-revert reproduces).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 126
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 135
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 155
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 170
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 993
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1033
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1102
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1124
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1154
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 26
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 56
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 65
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 83
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 97
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/psyche_sid_custody_e2e.rs",
              "line": 28
            },
            {
              "path": "crates/spt/tests/psyche_sid_custody_e2e.rs",
              "line": 237
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1698
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1867
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1893
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 110
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 131
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 152
            },
            {
              "path": "crates/spt-store/src/psyche_custody.rs",
              "line": 173
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-SPAWN-ENV-PARITY",
      "title": "P-2 (WORKER-TRUTH triage addendum, perri-filed field finding 2026-07-06): the per-event psyche_resume spawn threads the perch record's CAPTURED read_env stamps into the spawn ENVIRONMENT — the F-027 Half-B env-parity contract (BINDING, design-frozen: read_env captured at creation + stamped on the record + threaded IDENTICALLY to every session spawn; the spawn never reads its own process env for a stamped var) extended to the psyche role the design predates. Field driver: flynn (claude-spt:ccs) — the ccs wrapper relocates the account root via CLAUDE_CONFIG_DIR at PARENT launch and the perch record correctly captured it, but the daemon spawns psyche_resume with bare env → default ~/.claude root → headless 'Not logged in' exit-1 → strike loop; psyche + parent land in DIFFERENT account roots (auth AND root-scoped continuity both break). Core stays harness-agnostic (threads whatever [env] direction=read captured — knows nothing of CLAUDE_CONFIG_DIR). Scope note: this is the URGENT psyche leg of F-027 Half B; the full pre_spawn seam + endpoint-session env threading stays design-parked (F-027-ENDPOINT-SPAWN-FAIL-DESIGN.md) unless operator pulls it forward.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 653
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 736
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1466
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1167
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1195
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PSYCHE-STAMP-CLEAR-ANY-SUCCESS",
      "title": "W1 (LIFECYCLE-TRUTH): EVERY successful psyche operation clears psyche_host_error — not just the pulse-loop leg. ROOT (three field confirmations, perri): the stamp clears only via note_turn_outcome's Ok leg (lifecycle.rs:1101); a SUCCESSFUL psyche op via checkpoint/wake bypasses it -> stale FAILED stamp sits over a healthy psyche. FIX: event turn, checkpoint/wake synthesis, and signoff echo all clear the stamp on success.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 882
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 892
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1190
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 2174
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PUBLIC-ERROR-SURFACES",
      "title": "F-1 (REMOTE-TRUTH triage §F-1, Q4 UX rule, operator-ruled): CLI stderr a non-developer can hit names the OBSERVABLE SITUATION + the NEXT ACTION — never journal/op/brain/store lingo. The sweep's named offenders: (1) `RC_FAIL:{id}: … brain IPC read deadline elapsed` — the brain transport error surfaced RAW through rc's residual Err arm (rc.rs run_attach_inner); operators read 'brain IPC' where the situation is 'the daemon didn't answer in time'. (2) `WOKE_FAIL:{id}: info.json absent or unreadable — not a hosted perch` (resting.rs apply_event miss) — store-file lingo in the one rest-verb line a stale remote row still surfaces cross-node (the qualified-arm D6 case; the A-3 bare-id local path already routes instead). The miss stays SINGLE-SOURCED from NOT_A_HOSTED_PERCH_MARKER (in-process discriminant, resting.rs — reword is compat-safe per its own doc; the drift-pin unit keeps builder+matcher fused). (3) translation_fault never human-rendered (F-030 post-release seed): a broker-stamped input-translation fault (e.g. 'inject worker panicked') was invisible in `endpoint list`/`whoami` while keystrokes silently degraded — rendered now as a SELF-pin annotation exactly like the psyche_host_error pattern (REQ-HAZARD-LIVEHOST-BOOT-RACE), human line + additive skip-if-none JSON field. Kin to banked patterns: public --help no internal codes; 'Updated' not 'trial'. The A-4b retry terminal + B-3 give-up line + A-3 routing strings shipped F-1-clean already — this REQ sweeps the stragglers and is the home for future sightings (extend, don't multiply).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 268
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2718
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6041
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1323
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13097
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2575
            }
          ]
        }
      }
    },
    {
      "id": "REQ-PUMP-DIAL-FASTFAIL",
      "title": "PUMP-TRUTH W1 (tactical, RCA-complete + fix): a peer pump dial to an offline-but-RESOLVABLE iroh peer (discovery TXT present, endpoint dead) must fast-fail within the broker QUIC-op bound as an ORDINARY per-peer error (surfaces to peer_outcome's non-TimedOut arm -> PUMP_PEER_FAIL -> drop conn + redial, round CONTINUES, heartbeat advances), NEVER the brain's own 30s PUMP_PEER_IO_TIMEOUT read-deadline (the A-half TimedOut poison -> supervise_pump doubling-backoff restart). ROOT PUZZLE: the broker-side 10s bound already SHIPPED v0.8.3 (REQ-HAZARD-BROKER-QUIC-DEADLINE, KNOWN-HAZARDS 7.8) wrapping NetHost::dial's endpoint.connect()+prove_membership in tokio::time::timeout(10s) (nethost.rs:882-919) -- 10s<30s so the broker should always reply first -- YET on 0.29.x (which HAS the bound) the field shows the 30s brain deadline firing with ZERO PUMP_PEER_FAIL fast-fails. So the shipped bound provably does NOT bite a resolvable-offline peer. RCA-FIRST (do not fix blind): confirm WHY (candidates: dropping the timeout future doesn't cancel iroh's in-flight relay/holepunch connect; a discovery-resolve span outside the bounded_block_on; runtime time-driver starvation under serial fan-out), then the minimal fix. TEST-GAP that let it ship: the v0.8.3 hermetic test uses an UNREACHABLE addr (fast refuse) + set_quic_op_timeout(150ms), the A-half test simulates broker-never-replies -- neither exercises a resolvable-offline iroh peer. Gate: a test dialing a resolvable-offline peer returns within the bound as PUMP_PEER_FAIL, the round completes + heartbeat advances (asserted, not the unreachable proxy); happy path (live peer) unchanged, zero added latency; KNOWN-HAZARDS 7.8 extended with the resolvable-offline mode. Resident-broker path (reaches fleet via broker-update only).",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-PUMP-PEER-ISOLATION",
      "title": "PUMP-TRUTH W2 (architectural, operator ruling 2026-07-08): one peer must NOT block or poison all others -- peer discovery is async / per-peer-independent. Two coupled defects in run_peer_pump: (1) SEQUENTIAL fan-out (for peer in fan_targets dials one-at-a-time, each up to the bound -> peer N+1 waits behind peer N); (2) WHOLE-ROUND POISON (peer_outcome(...)? -- one TimedOut aborts the ENTIRE round via ? -> supervise_pump doubling-backoff restart, resetting ALL conns). FIX: per-peer concurrency + fault isolation -- the pump issues non-blocking dial requests; the broker (already async tokio+iroh) returns connection/presence results as async events (the D4c presence seam), no serial per-peer block; a peer TimedOut drops + reschedules ONLY that peer, NEVER aborts the round or restarts the pump. Supervised-restart is RESERVED for a dead BROKER conn, not a dead peer (the single-thread+bounded-read A-half REQ-HAZARD-PUMP-IPC-DEADLINE was defensive -- it stopped the infinite wedge but coupled every peer's fate; this decouples). Gate: a mixed roster (1 live + N offline peers) -- the live peer connects AND this node advertises presence in the SAME round the offline peers fail; heartbeat advances every round; no PEER_PUMP_RESTART from a dead peer. Depends on W1 (a fast-failing dial is the precondition for clean per-peer scheduling).",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-RC-1",
      "title": "`spt rc <id>` — user CLI attaching a local terminal to a broker-held PTY, reusing the cross-node attach machinery (attach.rs request_attach → send_attach_input pump, spt-net AttachRecord codec); local attach is the degenerate single-node case of the cross-node path (rides REQ-TERM-3 byte-stream streaming). Read-only `--view` (watch, no stdin forwarded). Clean detach that does NOT terminate the broker-held session (KNOWN-HAZARDS: PTY ownership stays with the broker; no termination on detach). Explicit detach keybind that cannot collide with harness passthrough input (legacy capsule used a ctrl-b prefix); documented. ConPTY DSR auto-answer in the attach reader (hazard 5.5).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1234
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3719
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 996
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1030
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 22
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1081
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1388
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 262
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 289
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 417
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1428
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2619
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2648
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2661
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-CROSS-NODE-ATTACH",
      "title": "Bug #4: spt rc to a remote endpoint fails with 'no live session' though endpoint list shows it Active — rc.rs:1063 resolves only the LOCAL broker session table and always dials loopback, never consulting the registry or dialing the owning node (the cross-node attach transport exists in the broker; only the client leg is missing). Fix: on a local resolve miss, resolve the owning node from the registry (reuse resolve_across_visible), net_dial that node, and run a remote session-resolve + serve_attach round-trip (mirror the wansend resolve-dial-round-trip pattern). Shares the resolve-owning-node primitive with REQ-WAN-SEND-DELIVERY. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #4.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 625
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 201
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 234
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 357
            },
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 571
            },
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 79
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1388
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1760
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 115
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 525
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 1388
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 209
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 1348
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-IDENTITY",
      "title": "`spt rc` overlays a persistent endpoint-identity marker so the operator always groks which endpoint they control: a reserved TOP status row via a DECSTBM scroll-region (shrink the PTY's reported rows by 1, own the row), right-aligned `SUBNET : ENDPOINT_ID @ NODE`, CYAN text. Re-assert the margin + repaint on alt-screen enter / DECSTBM reset / resize (output-scanning, like the existing mouse_scanner). NO window title (the harness, e.g. CC, owns it for busyness — OSC dropped). Resolve subnet/node/id once at attach (perch/registry read) and thread into the pump; subnet = the endpoint's home/primary (\"local\" if none). The literal floating rounded-rectangle corner box is DEFERRED to the future web-based GUI (not a grid-model rc — that lift is better spent on the GUI). (v0.16.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 226
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 240
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 254
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 276
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 287
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 305
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 317
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 351
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 405
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3151
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3016
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3034
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3052
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3088
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3095
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3108
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3136
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-IDMARKER-DISABLE",
      "title": "Bugs #14 + #7/#8 (marker half): feature-flag the top-right StatusRow endpoint-id marker OFF (rc.rs:198-307). It is a one-shot absolutely-positioned paint that scrolls off-screen and is not re-stickied (#14), and its DECSC/clear/SGR injection splices into the harness in-flight drawing causing residual artifacts (#7/#8). Ship disabled next release (operator: save the concept for a future web SPT GUI); revisit as a proper per-frame sticky overlay only once REQ-BROKER-SCREEN-GRID provides the screen model. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #14.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 213
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1201
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 3006
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-KEY-VT-TRANSLATE",
      "title": "On Windows, `spt rc` translates CONSOLE KEY EVENTS to standard xterm VT so ALL keys reach the hosted harness — arrows/Home/End/PgUp/PgDn/Insert/Delete/F-keys, every modifier combo, Backspace/Ctrl+Backspace — not just the byte-emitting ones. ROOT (operator HITL, doyle /diagnose): `spt rc` reads raw STDIN BYTES (spawn_stdin_reader, std::io::stdin().read); on the Windows LEGACY console (no ENABLE_VIRTUAL_TERMINAL_INPUT) the special keys produce console KEY_EVENTs, NOT stdin bytes, so the byte-pump sees nothing → those keys are DEAD. Enabling ENABLE_VIRTUAL_TERMINAL_INPUT was rejected (W7 dc07c39): on Windows Terminal it yields harness-specific win32-input-mode + broke ctrl-b detach. FIX (agnostic, full fidelity): on Windows, replace the stdin byte-read with a crossterm EVENT source (crossterm 0.28 already a dep; the picker already reads events) and translate each KeyEvent → STANDARD xterm VT bytes via a PURE translate_key_event(KeyEvent)->Vec<u8> (copy a known-correct xterm table verbatim, ADR-0001 spirit), forwarded through the SAME rc pump — the harness receives ordinary xterm VT (harness-AGNOSTIC, no win32-input-mode). Press-only (drop Repeat/Release). Detach stays the ctrl-b+'d' PREFIX, event-sourced (doyle Option B): Ctrl+B arms; armed+plain-'d'⇒Detach; armed+Ctrl+B⇒emit literal 0x02; armed+other⇒0x02 then translate(other). Non-tty stdin (piped/tests) → FALL BACK to the byte-read path (keeps e2e byte-injection working). UNIX UNCHANGED (its raw-mode byte stream already delivers proper VT; cfg-split, zero Unix regression). SUPERSEDES the W7 normalize_key_byte swap on Windows — the translator emits 0x7f for Backspace and 0x08 for Ctrl+Backspace natively (REQ-HAZARD-RC-INPUT-KEY-ENCODING folded in). NO int (a live interactive console can't be driven in CI — HITL, REQ-RUN-PICKER/RC-1 precedent); the exhaustive non-vacuous translate_key_event mapping unit + the event-detach unit ARE the surface. (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 388
            },
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 469
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 486
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 545
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 560
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 575
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 624
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2676
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2791
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-MOUSE-FORWARD",
      "title": "On Windows, `spt rc` must FORWARD scroll-wheel events to the harness when the harness has mouse reporting on. ROOT (operator HITL): P1's RawGuard EnableMouseCapture (added for right-click paste, REQ-RC-WIN-PASTE) makes Windows Terminal forward ALL mouse — including the scroll wheel — to rc instead of scrolling its own buffer, but the rc mouse handler dropped everything except right-button-down → scroll DIED (and WT's native scrollback is stolen by the capture). Operator ruling: keep mouse capture + right-click bracketed paste AND forward scroll to the harness. FIX (doyle design, cfg(windows), folds into the rc mouse handler): TRACK the harness's mouse-reporting mode by scanning its OUTPUT stream for the DECSET set/reset — ESC[?1000h/1002h/1003h (mouse on) + ESC[?1006h (SGR ext) and their ...l (off) — into a shared MouseMode{enabled,sgr} (pump writes from output, stdin reader reads); the scan survives a sequence SPLIT across output chunks (a bounded carry buffer). The mouse handler: right-button-DOWN -> bracketed clipboard paste (unchanged, REQ-RC-WIN-PASTE); ScrollUp/Down -> translate to an xterm SGR mouse report (ESC[<64;col+1;row+1M up / ESC[<65;..M down, 0-based crossterm -> 1-based xterm) and forward ONLY when enabled && sgr (else DROP — a legacy X10 report the harness may not parse is garbage); Moved/drag/left/middle -> DROP (scroll is the operator's need; click-forward risks garbage, no click-to-position). Unix UNCHANGED (no capture; the terminal scrolls natively). (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 490
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 681
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 697
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2926
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2945
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2957
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2985
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-RECONNECT",
      "title": "B-3 (REMOTE-TRUTH triage §B-3, the operator-asked UX): the rc attach viewport RECONNECTS on a severed transport instead of print-and-exit. Pre-fix rc was one-shot (resolve→dial→attach→pump→parting line); FAULT-MATRIX row 9 over-promised. FIX: the establish sequence (daemon ensure → broker conn → session resolve local-first/cross-node → dial → attach-open w/ A-4b tracing retry → subscribe) is factored into establish_attach and run_attach_inner wraps establish+pump in a loop. RECONNECTABLE class = severed transport ONLY: PumpEnd::BrokerGone (broker-conn EOF class, broker bounce) + the NEW PumpEnd::Severed (serve-side stream EOF AFTER rendered output = remote conn drop — pre-fix MISLABELED as 'detached — still running'; a nothing-rendered EOF stays the honest NoLiveSession refuse). FINAL ends (Exited/Detached/Displaced/Stalled/NoLiveSession) never re-drive — re-attaching a deliberately-ended session is wrong. On sever: full-screen centered 'Reconnecting to {target}…' banner (pure byte-emit like StatusRow; target = owning-node label or 'local daemon'; Q4 UX rule — operator language, internal sever detail never paints), then re-drive establish_attach every RECONNECT_PAUSE (1s) inside RECONNECT_WINDOW (30s, generous for a daemon bounce); a Detach keypress mid-window aborts honestly to [detached]; window expiry → PumpEnd::ReconnectGaveUp with a plain-language give-up line naming the cause, the window, and the retry action (never op/read-err lingo). Per re-establish: fresh OpMinter (ADR-0034 rc tracing per viewport), fresh initial resize (PTY matches the CURRENT terminal), pump-local render cursor resets so the re-serve ring replay REPAINTS the screen the banner cleared. FAULT-MATRIX row 9 made TRUE (F-3), not edited down. Red-first: serve-EOF-after-render → Severed (vs the pre-fix false Detached); only BrokerGone/Severed classify Reconnect.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/FAULT-MATRIX.md",
              "line": 28
            },
            {
              "path": "docs/TWO-HOST-RUNBOOK.md",
              "line": 249
            },
            {
              "path": "docs/TWO-HOST-RUNBOOK.md",
              "line": 298
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1340
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1388
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1642
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1670
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1688
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1701
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1735
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1742
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2128
            },
            {
              "path": "crates/spt/tests/twohost_cli.rs",
              "line": 836
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2384
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2410
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2420
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2430
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-RECONNECT-TRUTH",
      "title": "W3 (LIFECYCLE-TRUTH): rc reconnect never auto-starts a daemon and never hangs forever. ROOTS rig-proven (the operator's long-standing 'stop 2-4 times' bug): (a) an rc client's reconnect loop AUTO-LAUNCHES a daemon via WMI (rig: DAEMON_LAUNCH_VIA_WMI from the rc) — resurrection fights the operator's stops; (b) rc freezes at 'Reconnecting to local daemon…' forever when its session died with the broker. FIX: rc NEVER auto-starts a daemon (reconnect only to an already-up broker; loud 'session lost — daemon down' exit otherwise), bounded reconnect with visible countdown.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1173
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1361
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1399
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1651
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1742
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2530
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2447
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2464
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2497
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-WIN-PASTE",
      "title": "In an `spt rc` session neither ctrl+V nor right-click pastes (CC explicitly supports ctrl+V). ROOT (doyle /diagnose): RawGuard does only enable_raw_mode (no bracketed paste / no mouse capture / no clipboard interception); the Windows console delivers a paste as synthetic per-char KEY EVENTs (no crossterm Event::Paste), and ctrl+V translates to bare ^V forwarded to CC — but CC runs DAEMON-SIDE with NO access to the operator's LOCAL clipboard, so remote paste is fundamentally CLIENT-ORIGINATED. A multi-line paste-as-keys also becomes a \\r submit-storm. FIX (doyle design, docs/V0.13.0-P1-RC-PASTE-DESIGN.md, cfg(windows), folds into the bug-2 event path): on a paste gesture rc reads the LOCAL clipboard + forwards a BRACKETED PASTE (ESC[200~ + content + ESC[201~); CC has bracketed-paste mode on (its TUI sets ESC[?2004h) so it treats it as a paste — content intact, no submit-storm, harness-AGNOSTIC. ctrl+V: intercept Char('v')+CONTROL in the event loop -> read_clipboard -> bracketed paste. Right-click: RawGuard also EnableMouseCapture (disables console QuickEdit + enables ENABLE_MOUSE_INPUT so right-click surfaces as Event::Mouse on legacy cmd/powershell) -> right-button -> read_clipboard -> bracketed paste; DROP all other mouse (CC has no mouse features, operator-confirmed, so capture costs nothing). read_clipboard = clipboard-win crate (cfg(windows), minimal); empty/failed = clean no-op. Content forwarded VERBATIM (literal pasted text, no per-char translation). Unix UNCHANGED (its terminal pastes natively through the byte pump). DEPENDS ON P0 (a paste chunk must not wedge the broker). (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 476
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 655
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 671
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 714
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 728
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 739
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2867
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2888
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2909
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RC-WIN-VT-OUTPUT",
      "title": "Bug #12: `spt rc` to an endpoint renders ANSI escapes LITERALLY (raw ←[K / color codes) on a Win10 conhost console, garbling the viewport — while `endpoint run --attach` in the SAME env renders fine and Win11 Windows Terminal is unaffected. Root (code-grounded, doyle): rc.rs RawGuard::enable calls only crossterm enable_raw_mode (INPUT raw mode) and NEVER enables ENABLE_VIRTUAL_TERMINAL_PROCESSING on the OUTPUT handle; Win10 conhost defaults VT-output OFF so escapes print literally, whereas the picker/alt-screen setup on the endpoint-run path enters crossterm's VT-enabling console setup first (leaving VT-output on) — so it is the rc-attach CLIENT PATH specifically, and --attach-works-same-env confirms (not refutes) the VT-out theory. Fix: in the rc attach path (RawGuard), on cfg(windows) + interactive console (mirror the windows_mouse_wanted guard so piped stdin/stdout keeps clean bytes for the e2e byte tests), SetConsoleMode STD_OUTPUT_HANDLE |= ENABLE_VIRTUAL_TERMINAL_PROCESSING|ENABLE_PROCESSED_OUTPUT, capture the prior mode, restore on Drop. cfg(windows)-only, client-side, independent of #4/#6. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #12.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 752
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 765
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 789
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/rc.rs",
              "line": 2010
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RCVIEW-1",
      "title": "Remote-attach controller/viewer model (CONTEXT.md:317): a session's broker OutputLog serves ONE interactive controller (input + EXCLUSIVE PTY resize; its viewport sets the size, sent on attach + every window change via crossterm Event::Resize) plus ANY NUMBER of read-only `--view` attachers (output-only, no input, no resize; client-side letterbox — center+pad when larger, clip+1-line indicator when smaller; only the local ctrl-b d detach chord). Attach intent is three-valued (`Viewer | Control | Take`, wire-default Control): Control to a FREE endpoint becomes controller, Control to a CONTROLLED endpoint is REFUSED with guidance (`--view`/`--take`) — never auto-viewer, never silent-displace. Wire adds (additive, N-1 skip-unknown): `Request.intent`, `Resize{rows,cols}` (controller-only), `Size{rows,cols}` (→viewer), `Displaced{by}` (→displaced controller). The brain-resume cursor (delivered_through, ADR-0018) tracks the CONTROLLER ONLY; viewers replay from their own from_seq and never move it. Dormancy keys on the controller ONLY: controller attach wakes / controller detach goes dormant (even with viewers present); viewer attach/detach is wake-neutral and may watch a dormant endpoint as-is. v1: viewing is gated identically to driving — a viewer runs the same access_check(Unsolicited) as a controller (watching reveals full session contents = a real disclosure); a lighter distinct watch-gate is deferred to cross-subnet/finer-consent (CONTEXT.md:317 'driving ≠ watching' = the future seam).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 385
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 597
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1253
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1273
            },
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 41
            },
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 62
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 400
            },
            {
              "path": "crates/spt/src/rc.rs",
              "line": 1081
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1070
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1110
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1157
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 1309
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 188
            },
            {
              "path": "crates/spt-net/src/net/attach.rs",
              "line": 246
            }
          ]
        }
      }
    },
    {
      "id": "REQ-REACH-1",
      "title": "Off-node remote-drive detection + file transfer",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1253
            },
            {
              "path": "crates/spt-daemon/src/xfer.rs",
              "line": 77
            },
            {
              "path": "crates/spt-daemon/src/xfer.rs",
              "line": 223
            },
            {
              "path": "crates/spt-daemon/src/xfer.rs",
              "line": 423
            },
            {
              "path": "crates/spt-daemon/src/xfer.rs",
              "line": 530
            },
            {
              "path": "crates/spt-net/src/net/xfer.rs",
              "line": 39
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 381
            },
            {
              "path": "crates/spt-store/src/xfer.rs",
              "line": 88
            },
            {
              "path": "crates/spt-store/src/xfer.rs",
              "line": 98
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 313
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 416
            },
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 660
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1100
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1610
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/xfer.rs",
              "line": 640
            },
            {
              "path": "crates/spt-daemon/src/xfer.rs",
              "line": 661
            },
            {
              "path": "crates/spt-daemon/tests/attach.rs",
              "line": 925
            },
            {
              "path": "crates/spt-daemon/tests/xfer.rs",
              "line": 94
            },
            {
              "path": "crates/spt-daemon/tests/xfer.rs",
              "line": 225
            },
            {
              "path": "crates/spt-net/src/net/xfer.rs",
              "line": 96
            },
            {
              "path": "crates/spt-net/src/net/xfer.rs",
              "line": 146
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 946
            },
            {
              "path": "crates/spt-store/src/xfer.rs",
              "line": 118
            },
            {
              "path": "crates/spt-store/src/xfer.rs",
              "line": 148
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1341
            }
          ]
        }
      }
    },
    {
      "id": "REQ-REACH-2",
      "title": "Remote command execution (deferred, consent-gated)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-READY-AGENT-RESUME",
      "title": "An offline ReadyAgent shows in `spt endpoint run`'s picker Resume-from-history and resumes correctly — closing the gap that today only LiveAgents do. ROOT: a harness-hosted ready bind (ReadyAgent::start_homed, ready.rs) writes info.json DIRECTLY and never appends the session ledger (unlike the shared establish_perch:250 live path), so a ready agent — though it has a session_id — produces ZERO ledger rows → the picker's offline+local Resume-from-history (which gates on ledger rows) never offers it. FIX (1): ledger the ready bind (ReadyAgent::start_homed → sessions::append Boot, mirroring establish_perch). FIX (2): `spt endpoint run --resume <session>` honors the adapter MANIFEST's endpoint TYPE — a ReadyAgent manifest (no [session.psyche_init]) resumes as a ready endpoint (poll listener, NO psyche-host); a LiveAgent (with psyche_init) as live. NO new bringup mode + NO picker changes (operator 2026-06-18): `spt endpoint run` is the spt-hosted ENDPOINT bringup for BOTH types, the type IS the adapter-manifest's concern (psyche-host already keys on psyche_init presence) — so (2) likely already holds; VERIFY at code, build only the residual. (v0.12.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 422
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 117
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/ready_resume_ledger_e2e.rs",
              "line": 26
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 339
            }
          ]
        }
      }
    },
    {
      "id": "REQ-REL-1",
      "title": "spt-releases publish-target repo: README public face, licensing split, Pages docs at the permanent lapse-proof canonical URL (ADR-0014)",
      "requiredStages": [
        "doc",
        "impl"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0014-publish-target-repo-and-lapse-proof-canonical-url.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": ".github/workflows/docs-publish.yml",
              "line": 11
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 380
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-REL-2",
      "title": "Release asset set consumable by the self-updater: platform binaries, SHA256SUMS, SignedRelease metadata, manifest schema, mock-adapter zip; tag-triggered cross-repo pipeline",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/RELEASE-RUNBOOK.md",
              "line": 6
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": ".github/workflows/release.yml",
              "line": 16
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 467
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 541
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 705
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 837
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/release_verify_e2e.rs",
              "line": 13
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-REL-3",
      "title": "Two-key release-signing trust anchor: primary + offline never-used recovery, both pubkeys embedded in the binary's trusted set, manual local signing (ADR-0015)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 305
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 357
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 444
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 468
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 509
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1157
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1216
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RELEASE-MUSL-ARTIFACT",
      "title": "MUSL-TIER W3 (CI build + signed release + update-set publish + self-update E2E): release.yml gains a musl matrix entry (build on kitsubito; install musl-tools+cmake+target in-job, CC_x86_64_unknown_linux_musl=musl-gcc); the assemble job includes spt-x86_64-linux-musl in SHA256SUMS + the release upload; release-publish (xtask) signs the musl artifact; the update-set carries its artifact entry. This closes the field gap: a musl binary today fetches fine but ends UPDATE_FETCH_REJECTED:NoArtifactForPlatform('unknown'). Gate (release-pipeline touch -> real E2E): cut a draft/test release with the musl artifact; a static musl binary on a sub-2.39-glibc box runs spt update fetch -> gets the musl artifact (no NoArtifactForPlatform), verifies SHA256+signature over the musl bytes, applies, self-updates. musl is ADDITIVE — gnu stays the default Linux artifact.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": ".github/workflows/release.yml",
              "line": 32
            },
            {
              "path": ".github/workflows/release.yml",
              "line": 113
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/propagate.rs",
              "line": 171
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/xtask/src/main.rs",
              "line": 1375
            }
          ]
        }
      }
    },
    {
      "id": "REQ-REST-VERB-ROUTING",
      "title": "A-3 (REMOTE-TRUTH triage §A + Q3 operator-law): a BARE-id rest verb (spt wake/suspend <id>) routes across the subnet like send's fallback instead of failing local-only. ROOT (certain): cmd_rest (cli.rs:3296) gates the remote arm on id.contains('@'|':'); a bare id falls to the local-only arm (cli.rs:3340) → daemon_rest_event → info::read_info miss (resting.rs:248) → 'WOKE_FAIL:{id}: info.json absent or unreadable — not a hosted perch'. cmd_send (cli.rs:5142) DOES fall back on a local miss; cmd_rest's remote arm (cli.rs:3307, wan_rest) already handles every WanRestOutcome — it is simply never reached on a bare-id local miss. Contradicts CONTEXT:286 'a wake must route'. Q3 SUBSTRATE GAP: resolve_across_visible (registry.rs:971) filters only by Status::routable() and its Ambiguity payload is node-hexes-only — it CANNOT express the Q3 status rule; per-candidate (node,status) comes from SubnetRegistry::instances(id). FIX: a NEW pure select_rest_target helper (status-aware, isolated from resolve_across_visible which cmd_send keeps) applying GOAL-SATISFACTION semantics (ADR/triage addendum @188d269, NOT naive verb symmetry — the mixed case breaks symmetry): wake is an ∃-goal (satisfied when ANY instance Active), suspend is a ∀-goal (satisfied when ALL instances Suspended); one helper parameterized by the verb's satisfaction predicate — 0 candidates→NotFound; goal already satisfied→NoOp naming the satisfying node(s); exactly 1 ACTIONABLE (not-at-target) instance→Act(node); >1 actionable→Ambiguous(copy-paste id@node list). Edge rulings: wake with >1 Active = NoOp naming ALL active nodes (NOT Ambiguous — nothing actionable); suspend mixed (X suspended + Y active, NOT ∀-satisfied) = Act(Y) if exactly one active / Ambiguous if several active. Candidate status is ADVERTISED/gossiped (post-A-1 shared-derivation, may be STALE) so a NoOp verdict is ADVISORY and the qualified id@node path is the operator override (noted in the helper doc-comment). cmd_rest's bare-id local miss loads snapshots → instances(id) → select_rest_target → dispatches (Act→wan_rest to the node / NoOp naming node(s) / Ambiguous render_refusal copy-paste id@node list / NotFound NO_ENDPOINT), all F-1 public language from day one. Qualified id@node path unchanged; shutdown leg-2 stays LOCAL_ONLY. Red-first: a bare id present ONLY in a remote registry snapshot routes to that node instead of WOKE_FAIL.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 538
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1095
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3520
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 867
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1510
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 572
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 652
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2469
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2516
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 2551
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 828
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RESUME-ADAPTER-FOLLOWS-SESSION",
      "title": "D-2 (REMOTE-TRUTH triage §D-2 + operator Q5 @c248afc): a resume-from-history restores the RECORDED session adapter (REQ-SESSION-ADAPTER-RECORDED) — the resumed harness is the one the session ran under, re-stamped onto the endpoint PRE-SPAWN, and an unregistered recorded adapter refuses LOUDLY before launching anything. ROOT: the picker's resume_outcome (model.rs:1285) bakes adapter=ep.adapter_profile from the selected ENDPOINT, ignoring the ledger row — so a resume always uses the endpoint's CURRENT adapter even when the session ran under a different one; and the endpoint's info.adapter is never re-stamped to the row's on the resume path (cli.rs:1962 skeleton writer early-returns for an existing perch — adapter immutable, carried by bind's stamp_creation_fields). FIX (doyle fork ruling): ResumeRow (model.rs:199) gains adapter: Option<String> threaded from SessionEntry.adapter in picker/data.rs; the row title (model.rs:228) renders [{adapter}] when Some ({head} [{adapter}] - {time} (…{id5})); resume_outcome bakes the ROW's adapter with an endpoint fallback (row.adapter.unwrap_or(ep.adapter_profile)) — None → the endpoint's current stamp (benign degrade). The pre-spawn RE-STAMP + refusal ride the picker resume dispatch (mod.rs:360 Run arm, resume.is_some()) reusing the hazard-guarded mutate_info seam (write_adapter_change/mod.rs:336), NEVER the bind path: order = read current info.adapter → if the baked adapter DIFFERS (a real replace; a None-row bakes the endpoint's own → equals current → NO write) → registered-check via resolve_option (Err(NotRegistered) → loud F-1 refusal naming the adapter + `spt adapter add`, NO stamp, NO spawn) → write_adapter_change re-stamp → spawn. ONE adapter write path (the mutate_info seam); REQ-HAZARD-ADAPTER-PROFILE-STAMP-CLOBBER's bind/hook path (stamp_creation_fields, home.rs) UNTOUCHED — both its guard tests stay green as the gate condition. Red-first: a resume row adapter=\"claude-spt\" over an endpoint stamped \"claude-spt:ccs\" → the baked Outcome.adapter == \"claude-spt\" (the deliberate replace) and the pre-spawn stamp writes it.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 580
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 409
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2155
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2666
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RESUME-CONTEXT-PULL",
      "title": "Adapter-callable resume-context pull verb + not-yet-synthesized commune/signoff drop append (legacy-SPT parity, operator-directed 2026-06-24). GAP: spt-core exposes NO verb for a harness adapter's SessionStart hook to pull an agent's resume context — `resume::download_psyche_context` (spt-live/src/resume.rs:88, composes <live-role>+<live-context>+<project-context> from the durable two-tier store) is INTERNAL with ZERO spt callers and no ApiCmd verb (api/mod.rs ApiCmd enum has none); resume.rs:9 documents the intended 'adapter pulls it in its SessionStart hook' path but it was NEVER wired. Result: a harness adapter cannot inject the agent's durable mind on resume at all (claude-spt today runs only `api boundary` session-rotation + an identity brief — the agent resumes WITHOUT its mind). TIER-1 SCOPE (operator-approved; Tier-2 = drift-stamp/<current>/drift-directive + <memformat> + Pulse-Log DEFERRED to a separate parity item, NOT v0.15.0 — the legacy download_payload [claude_skill_owl context.rs:344] is richer but memformat is roadmap-deferred + drift-stamp is an orthogonal cross-machine-drift feature). TWO PARTS: (1) EXPOSE `spt api psyche-download <id> [--session-id <sid>]` -> stdout = the composed brief, project_id resolved from the endpoint's bound cwd (info::read_info -> cwd -> project derive; NO --project arg), auth-gated like sibling id-scoped verbs (the `gated(&id,&auth,…)` pattern); empty store -> NO-CONTEXT on stderr (mirror legacy). The adapter SessionStart hook runs it + injects stdout as additionalContext. (2) APPEND any commune/signoff drop NOT YET SYNTHESIZED into the durable tiers as a distinct <pending-commune>/<pending-signoff> slice AFTER the durable slices. GATING (operator ruling): append while NOT-YET-SYNTHESIZED, NOT merely 'while the raw file is on disk' — in today's synchronous ingest (ingest_drops route_two_slice writes durable THEN deletes the file, lifecycle.rs:466 @ DEFAULT_PULSE_PERIOD 5s) the two coincide (a watched-dir drop IS pre-synthesis), so the v1 realization reads the manifest-declared session.commune_dir/signoff_dir (manifest.rs:208/210) for a present <id>-commune.md/<id>-signoff.md (COMMUNE_SUFFIX/SIGNOFF_SUFFIX, ingest.rs); the CONTRACT keys on synthesis-state so it stays correct when async Psyche synthesis lands (a consumed-but-not-yet-committed drop stays appended via a pending-synthesis staging set — forward hook). The agent-checkpoint trigger sentinel CHECKPOINT_SENTINEL=`!!checkpoint!!` (a FIXED spt-core constant — operator-specified, CONTEXT.md §fixed-constants, NOT adapter-configurable) is stripped at BOTH drop-body points via one shared `strip_checkpoint_markers` (remove every token, keep inter-marker text, collapse trivial whitespace): the PRE-synthesis pending-append (resume::append_pending) AND the POST-synthesis durable ingest (ingest::route_slices — the single choke covering route_two_slice + signoff.write_resume_commune; strip-then-empty-filter so a marker-only slice routes nowhere) — else the marker would persist PERMANENTLY in live-context.md once a checkpoint drop synthesizes + re-trigger once the adapter's checkpoint detection is live. PRESENTATION-ONLY: the append NEVER writes the durable store (spt-core remains sole store-writer, REQ-HAZARD-DROP-FILE-SINGLE-WRITER; mirror legacy's read-only/process_file_drop-sole-deleter discipline). SELF-CLEARING: once synthesis commits the <pending-*> slice vanishes — no duplication. CORE-OWNED (not adapter): an adapter-side raw-file read RACES spt-core's ingest-delete (TOCTOU, ingest.rs:161 removes the drop on pulse-consume); the fold MUST live in the single composer all resume pulls flow through. New public CLI verb -> docs-drift gate (xtask gen + reference.md no-internal-codes, cli-command-docs-drift). (v0.15.0 parity wave W5)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 156
            },
            {
              "path": "CONTEXT.md",
              "line": 171
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 56
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 134
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 57
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 108
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 114
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 672
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/psyche_download_e2e.rs",
              "line": 40
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 251
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 264
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 205
            },
            {
              "path": "crates/spt-live/src/resume.rs",
              "line": 247
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 816
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RESUME-HARNESS-SESSION-ID",
      "title": "B2 (F028, hall-b diagnosis, verified 0.22.0): respawn/`--resume` feeds the SPT session id to `claude -r`. After the 02:05 daemon bounce respawn built `claude.exe -r 70b5bfa40901b7d4` — an spt session id in claude's OWN session-id namespace -> claude hangs forever at a 'No sessions match' resume-picker while the endpoint reads online. Hits after EVERY daemon bounce + every picker Resume. The HARNESS session id (claude UUID, stamped in sessions.log/info.json by the hooks) is what {session_id} must mean in the adapter's [session.resume] command; the spt sid must not leak. FIX: substitute the HARNESS session id in the resume template (spt-core substitution-key semantics + LIKELY claude-spt manifest coordination — FLAG perri BEFORE touching the manifest, adapter-boundary rule). Int: resume template receives the ledger UUID, not the spt sid. See triage B2.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1640
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1660
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 310
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2218
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RESUME-REAP-PRIOR-HARNESS",
      "title": "B4 (F028, hall-b diagnosis, verified 0.22.0): `--resume` respawns a SECOND harness onto the SAME session without reaping the first. Observed live: resume of b4421cf9 spawned pid 34432 while gen1 (250376) kept running — two claude.exe stacks, one session id. FIX: resume must reap/refuse when the session already has a live harness. See triage B4.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1698
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1885
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/run_no_dup_session_e2e.rs",
              "line": 299
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2258
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RESUME-ROW-PER-PROJECT",
      "title": "A5 (F028, operator #6): resume-from-history labels EVERY session with the endpoint's newest project. data.rs:480-496 resume_rows_for clones project_history.first() onto every ResumeRow (line 481/488), so all sessions read as the head project (the ghost). The per-row e.cwd is already carried for launch-into-dir. FIX: derive per-row project_id_for_dir(e.cwd) (owlery-excluded -> fall back to trigger token), rendered through A1's display-name path. See triage A5.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 539
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1064
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RUN-EMPTY-CREATE",
      "title": "`spt endpoint run` / bare `spt` routes a TOTALLY-EMPTY scope straight to the endpoint-creation flow: when gather_endpoints() is empty (nothing attachable, local OR subnet) PickerModel::new opens on Screen::CreateAdapter instead of PickExisting (today it always opens PickExisting + renders a blank list). A node WITH subnet endpoints but no local ones still has things to pick → stays on the picker. Extends REQ-RUN-PICKER. (v0.16.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 900
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2190
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RUN-ID-REUSES-ADAPTER",
      "title": "D-1 (REMOTE-TRUTH triage §D-1): `spt endpoint run --id <id>` with NO --adapter, when <id> names an EXISTING perch, REUSES that perch's recorded info.adapter and runs NON-INTERACTIVELY — instead of always falling to the picker as a create-new prefill (an existing endpoint retyping its own adapter, or being sent to a create-new flow, is the operator wart). ROOT (certain, no design tension): the cli `match (adapter,id)` special-cased only (Some,Some)→cmd_endpoint_run; the catch-all routed EVERY lone --id to crate::picker::run as a create-new prefill, never considering an existing endpoint (cli.rs ~1290). FIX: a PURE resolve_run_target(adapter, id, recorded) over the 4 (adapter?,id?) quadrants — (Some,Some)→Direct{a,id}; (None,Some(id))→ recorded adapter present (info.adapter = adapter-chosen-at-creation, spt-store info.rs:167) → Direct{recorded,id}, absent/no-perch → Picker{None,Some(id)} (today's create-new prefill UNCHANGED); (Some,None)/(None,None)→Picker unchanged. The perch lookup (read_info(resolve_perch_path(id,Infer)).adapter) is INJECTED as a closure so the router is pure + testable without a perch on disk; resume threads into BOTH Direct paths. Red-first: (None,Some(id),recorded=Some) → Direct (pre-fix this routed to Picker create-new). int (live run --id on an existing perch reuses its recorded adapter non-interactively) deferred to the rig.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1327
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1722
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1746
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RUN-MULTISUBNET-HOME",
      "title": "`spt endpoint run` resolves the home subnet at the skeleton-create step and pre-creates the skeleton perch carrying it, so the harness `bind` inherits home via establish_perch's immutable prior-branch (no hook change, no env injection). Resolution: sole-subnet auto; multi-subnet + no --subnet + NON-interactive terminal -> refuse early with MRU-ordered --subnet guidance (never the silent 25s online-timeout); multi-subnet + no --subnet + INTERACTIVE -> print proposed config (id/project/adapter[:profile]/home=MRU-default) + 'Ok to proceed? Y/n', n -> --subnet guidance; --subnet overrides + validates membership. MRU = ordered move-to-front LISTs at two levels (per-project + always-updated node-global fallback). Home stays IMMUTABLE (ADR-0010). Fixes the LATENT multi-subnet bringup gap (perri, not a regression — HOME_REFUSED established >=0.11.0; exposed by the node crossing 1->2 subnets). (ADR-0026)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0026-multi-subnet-home-at-endpoint-run-creation.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 16
            },
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 42
            },
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 50
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1950
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2038
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2060
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2082
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2111
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/multi_subnet_bringup_e2e.rs",
              "line": 208
            },
            {
              "path": "crates/spt/tests/multi_subnet_bringup_e2e.rs",
              "line": 291
            },
            {
              "path": "crates/spt/tests/multi_subnet_bringup_e2e.rs",
              "line": 297
            },
            {
              "path": "crates/spt/tests/multi_subnet_bringup_e2e.rs",
              "line": 308
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 115
            },
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 137
            },
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 156
            },
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 170
            },
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 189
            },
            {
              "path": "crates/spt-store/src/recent_home.rs",
              "line": 198
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2278
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2328
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RUN-NO-DUP-SESSION",
      "title": "B1 (F028, hall-b diagnosis, verified 0.22.0): `endpoint run --id X --create` on an endpoint with a LIVE session mints a silent DUPLICATE session — and attach output can CROSS sessions (second create for diag-hallc minted a new session while the old ran; the new run's attach viewport rendered the OLD session's screen — claude resume-picker UI of pid 84512 while new claude 356020 had no -r). ROOT CLASS of the 0.21.0 attach-stall (zero events in FIRST_EVENT_GRACE rc.rs:1402 = attach bound to dead/wrong same-id slot); also the triplicate `launch --id ball-b` on ENLYZEAM. FIX: (i) run-on-live-session must REFUSE or REATTACH, never silently duplicate; (ii) RCA the attach/output routing that let frames cross same-id sessions (broker session-slot keying, dispatch_adapter vs serve_attach resolution). Int: two sessions one endpoint id -> each attach sees only its own frames. See triage B1.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1681
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1697
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1884
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/run_no_dup_session_e2e.rs",
              "line": 277
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2258
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RUN-PICKER",
      "title": "Interactive `spt endpoint run` picker (ratatui TUI): bare `spt endpoint run` (no --adapter/--id) enters an in-process picker (flags-present = the REQ-HOST-RUN-1 non-interactive path, untouched). Layer 1 picks kind (Create new | Pick existing). Create-new: choose a registered kind=\"harness\" adapter with its shipped+local profiles tree-nested (registry::registered / manifest.profiles / local_profile_names) → enter a charset-validated id → start. Pick-existing: category select (left/right) over [<cwd-project> | Local node | Subnet], endpoints grouped + alphabetically sorted per category, a status square per endpoint (online green ■ / offline gray ▢ — the blue \"attached\" tri-state + Kick are DEFERRED to a broker attach-presence slice, M12-W2-RULING Q1), type-to-filter (`/`, nucleo-matcher), a pinned keybind legend, and a right-half two-pane description (harness adapter:profile · best-effort project history newest→oldest from the contextstore p-<project> branches, empty-if-none · `spt endpoint description`). Confirm layer offers status-dependent options — Attach/Start/View (rc pump / cmd_endpoint_run) · Instantiate-locally (remote) · Change-harness-adapter (offline) · Fork (cmd_fork) · Resume-from-history (offline+LOCAL only; enumerate spt_store::sessions::last_k, titles `<project> @ <ts> (…id5)`, feed session_id → cmd_endpoint_run --resume). A single action enum is the source of truth so a future tap-mode (phone PTY) layers on without re-coupling to keybinds. EVERY terminal action routes through cmd_endpoint_run / existing CLI fns — no second bringup path.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 392
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1115
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1125
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 9
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 102
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 16
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 450
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 11
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 177
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1069
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1205
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1327
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1395
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1438
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 8
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12759
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12770
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2103
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2164
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2219
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2228
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2239
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2261
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2280
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2392
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2423
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2550
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2620
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2811
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2827
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 811
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 826
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 863
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 888
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 898
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 1054
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RUN-PICKER-HOME",
      "title": "Home-subnet selection LAYER in the `spt endpoint run` ratatui Create-new picker (v0.14.1; the deferred half of REQ-RUN-MULTISUBNET-HOME's interactive path — ADR-0026 §3 'the interactive picker lists subnets MRU-ordered'). On a MULTI-SUBNET node the Create-new flow gains a `CreateHome` screen (CreateAdapter → CreateId → CreateHome → Confirm) that lists the node's MEMBER subnets MRU-ordered (reusing recent_home::mru_preference + order_by_mru), default cursor = MRU head; the chosen subnet rides Outcome::Run{subnet} into cmd_endpoint_run's --subnet, so decide_run_home resolves Home directly and the post-TUI `Ok to proceed? Y/n` confirm NEVER fires for the picker path. Single-subnet / local-only nodes SKIP the layer (assign_home auto-homes; CreateId → Confirm unchanged). The CLI / flagged `endpoint run` path KEEPS the decide_run_home Y/n confirm + the non-interactive MULTI_SUBNET_HOME refuse (operator: the confirm stays useful for CLI-only bringup, just not in the TUI). Esc backs CreateHome → CreateId; Enter selects → Confirm. Pure front-end invariant preserved: the layer only collects --subnet, routes through the one bringup core.",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 406
            },
            {
              "path": "docs/V0.14.1-HOME-SUBNET-PICKER-LAYER-DESIGN.md",
              "line": 111
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 51
            },
            {
              "path": "crates/spt/src/picker/mod.rs",
              "line": 484
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1027
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1043
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 211
            },
            {
              "path": "docs/V0.14.1-HOME-SUBNET-PICKER-LAYER-DESIGN.md",
              "line": 97
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1211
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2838
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2865
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2891
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2914
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 844
            },
            {
              "path": "docs/V0.14.1-HOME-SUBNET-PICKER-LAYER-DESIGN.md",
              "line": 99
            }
          ]
        }
      }
    },
    {
      "id": "REQ-RUN-SHORTCUT",
      "title": "`<basename>-<id>` launcher shortcut generation (picker `s` keybind, M12-W2-T2.4): from any pre-start options set the picker writes/updates a `<basename>-<id>` launcher at the project root baking the current selection's non-interactive `spt endpoint run` flags (terminal actions only: adapter[:profile] + id + (create|resume) + (start|attach|view); Kick/Instantiate/Change-adapter/Fork are interactive-only, not bakeable). BASENAME IS A PARAMETER (operator rev. 2026-06-14): harness-agnostic spt-core defaults to `spt` (→ `spt-<id>`); an adapter/flow OVERRIDES it (spt-claude-code → `cc`), so spt-core NEVER bakes `cc` (a harness name) into itself. The basename must be a DISTINCT token, never bare `spt` (a `spt.cmd` would shadow the real `spt.exe` only under cmd.exe cwd-first search, silently no-op in PowerShell/Unix, and self-recurse). The script is the CURRENT OS's native form — `.cmd` on Windows (NOT `.ps1`: default PATHEXT excludes `.ps1` so a bare/ext-less name never resolves one; `.cmd` is PATHEXT-resolvable), POSIX `sh` (+chmod +x) on Unix (a single portable form can't be both). The generated header documents the invocation reality (cmd.exe bare `<name>` in the project dir / PowerShell `.\\<name>` / Unix `./<name>`; a truly-bare basename on PATH = a PATH-installed launcher, `/spt:setup`'s job). Overwrite is SENTINEL-guarded: the generator writes + checks a generated-by header marker — it overwrites its own prior output freely, but REFUSES + warns if a same-named file lacks the sentinel (never clobber a user file). Requires the additive `--create` flag on `Run{}` (the default-fresh made explicit; N-1-safe).",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 440
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 39
            },
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 79
            },
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 162
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 206
            },
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 222
            },
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 238
            },
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 251
            },
            {
              "path": "crates/spt/src/picker/shortcut.rs",
              "line": 258
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-ACTIVITY",
      "title": "Activity/idle reported via api sentinels, not PTY quiescence",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 18
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 35
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 78
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 288
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 305
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 314
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-CAPABILITY",
      "title": "Hostable endpoint-types capability declaration",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 713
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1380
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-HISTORY",
      "title": "History subsystem (fetcher / locate-normalize / native store)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 24
            },
            {
              "path": "crates/spt-live/src/history.rs",
              "line": 22
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 260
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 205
            },
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 234
            },
            {
              "path": "crates/spt-live/src/echo.rs",
              "line": 254
            },
            {
              "path": "crates/spt-live/src/history.rs",
              "line": 199
            },
            {
              "path": "crates/spt-live/src/history.rs",
              "line": 219
            },
            {
              "path": "crates/spt-live/src/history.rs",
              "line": 244
            },
            {
              "path": "crates/spt-live/src/history.rs",
              "line": 276
            },
            {
              "path": "crates/spt-live/src/history.rs",
              "line": 297
            },
            {
              "path": "crates/spt-live/src/history.rs",
              "line": 324
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-INJECT",
      "title": "inject-input methods configurable per activity-state",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 19
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 117
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 394
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 414
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-POSTSPAWN",
      "title": "post-spawn / api bind seam with boot nonce",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 18
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 541
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 1047
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 1057
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-PSYCHE",
      "title": "spawn-psyche seam (fresh + resume templates)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/psyche.rs",
              "line": 11
            },
            {
              "path": "crates/spt/src/api/live.rs",
              "line": 12
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 353
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 259
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-live/src/pulse.rs",
              "line": 106
            },
            {
              "path": "crates/spt-live/src/pulse.rs",
              "line": 137
            },
            {
              "path": "crates/spt-live/src/pulse.rs",
              "line": 161
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-RESUME",
      "title": "resume-session seam (fresh-with-preload / continue-existing)",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-SEAM-SPAWN",
      "title": "spawn-session seam",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 20
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1001
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1008
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1390
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1396
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1421
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 1458
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEAM-UPDATE",
      "title": "Adapter-update avenue (file-pull / delegated command)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 28
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 88
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 332
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 343
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEC-1",
      "title": "Per-endpoint access whitelist: origin-node gate, stateful-firewall (reply/outbound exempt), node-now/user-later, outer gate before grants",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/access.rs",
              "line": 86
            },
            {
              "path": "crates/spt-daemon/src/access.rs",
              "line": 116
            },
            {
              "path": "crates/spt-daemon/src/access.rs",
              "line": 130
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 109
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 130
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 143
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 209
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 235
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8448
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/access.rs",
              "line": 142
            },
            {
              "path": "crates/spt-daemon/src/access.rs",
              "line": 194
            },
            {
              "path": "crates/spt-daemon/src/access.rs",
              "line": 235
            },
            {
              "path": "crates/spt-daemon/tests/access.rs",
              "line": 141
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 247
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 277
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 310
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 329
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 362
            },
            {
              "path": "crates/spt-store/src/access.rs",
              "line": 386
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13562
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SELF-DETECT-PARENT-PID",
      "title": "E-1 (REMOTE-TRUTH triage §E-1 #7): self-detect leg (c) — the pid-ancestry fallback — ALSO candidates on `rec.parent_pid` (the harness pid, CONTEXT's 'stable session-binding anchor', stamped at bind), not `rec.pid` alone. ROOT: for an spt-hosted endpoint (broker PTY, headless) `rec.pid` is the ephemeral bind-CLI pid, ALREADY DEAD by send time (the F-026 #11 dead-pid class, field-sighted on hall-bf) — never in any sender's ancestry and alive-gated out — so an spt-hosted sender could NEVER resolve self via leg (c): its messages were from-stamped `cli@NODE` (operator #7) and replies bounced NO_PERCH. FIX: detect_self_by_ancestry pushes a second candidate (id, parent_pid) when `rec.parent_pid` is Some + alive; the pure nearest-first matcher (match_self_by_ancestry) is unchanged. LABEL-ONLY, exactly like the rest of leg (c): from-label/routing default, NEVER authentication — authenticate() untouched, the pid-ancestry-for-auth question stays parked (KH 7.3/7.5 separation holds; a wrong label self-corrects, a wrong grant does not). Env legs (a)/(b) stay first. Red-first int (the triage-specified missing test): rec.pid = dead sibling + rec.parent_pid = genuine live ancestor → self resolves (pre-fix None); ancestry-gate control: live-but-non-ancestor parent_pid must NOT resolve. Rider (same cluster, activated separately once doyle rules the fix shape): F-026 #11 dead-pid itself — rec.pid should hold something that stays true, or liveness readers stop trusting it. Cross-node from-stamp proof (spt-hosted B-side sender arrives at A as `<id>@node`, not `cli@node`) rides the [twohost] rig wave rung.",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/roster.rs",
              "line": 165
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/roster.rs",
              "line": 321
            },
            {
              "path": "crates/spt/src/roster.rs",
              "line": 348
            },
            {
              "path": "crates/spt/tests/twohost_cli.rs",
              "line": 807
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-SELF-ID-TRUST-INJECTED-ENV",
      "title": "DEFERRED to a followup vX.X.n sprint (post-LIFECYCLE-TRUTH, operator-ruled 2026-07-07): self-identity resolution must trust the harness-injected authoritative id and detect a stomped perch instead of silently mis-attributing. ROOT (doyle /diagnose 2026-07-07, field: agent sends stamped `cli@HFENDULEAM` / mis-attributed): `resolve_from` (cli.rs:5480) stamps `cli@<node>` when `detect_self_id` (roster.rs:103) returns None; detect_self_id resolves self ONLY by reverse-lookup — matching `$OWL_SESSION_ID` against a perch's info.json.session_id (then SPT_AGENT_ID, then parent_pid) — and IGNORES `SPT_ENDPOINT_ID`, the authoritative self-id the adapter injects (present in-env as SPT_ENDPOINT_ID=<id>). When a perch record is STOMPED (a cross-id info.json overwrite — the REQ-SPAWN-COLLISION-GUARD-LIVE-DUP damage class; field case: doyle's live session_id written into the deployah perch), the reverse-lookup mis-resolves (doyle session -> `deployah`) or fails (real deployah -> None -> `cli@node`), and the CLI silently believes the stomped store. FIX: detect_self_id PREFERS `SPT_ENDPOINT_ID` when set+non-empty (the harness-authoritative id, immune to a stompable perch), AND cross-checks it against the reverse-resolved perch id — a mismatch logs LOUD (a stomped/duplicated perch becomes a self-diagnosing signal, not a silent wrong identity). Bare-CLI (no SPT_ENDPOINT_ID) keeps the reverse-lookup then the `cli@node` fallback. Also reconcile the adapter/core self-id env contract (SPT_ENDPOINT_ID vs SPT_AGENT_ID vs OWL_SESSION_ID — which is canonical). NOTE: W4 REQ-SPAWN-COLLISION-GUARD-LIVE-DUP prevents FUTURE stomps but does not heal existing corruption nor add this resolution-robustness; recovery of a live stomp today is a manual `api boundary clear <id> --to-session-id <sid> --session-id <current>` re-bind (doyle recovered the doyle/deployah cross-wire this way 2026-07-07).",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-SEND-REPLYTO-REMOVE",
      "title": "Remove `--reply-to` from `spt send` — a target-fallback + REPLIED-label nicety that confuses agents, with no wire effect (ADR-0020 already made messages structural (from,body), no __REPLY_TO__). Hard-remove (no deprecation shim): the clap flag, the is_reply/REPLIED label branch (always SENT/QUEUED), the `send` how-to --reply-to example, and the reply-to mention in REQ-DOCS-6's send topic. Reply-correlation stays on the structural `from` attribute. (v0.16.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 72
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15328
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SEND-SPT-HOSTED",
      "title": "An inbound `spt send` is DELIVERED to an spt-hosted endpoint (brought up via `spt endpoint run` → `api bind`, broker holds its PTY, NO `api listen` relay). Today cmd_bind→establish_perch (api/startup.rs ~441) writes info.json + ready marker + controllable=Some(true) but registers NO message-listener / NO address, so deliver.rs resolve_address→None→spool (deliver.rs:132-140) and the message NEVER reaches the live PTY — the endpoint reads 'online' (ready marker) yet `spt send` silently SPOOLS ('online but not deliverable' lie). Per CONTEXT:187-188 the daemon owns the PTY and delivers, manifest-configurable per activity-state (direct PTY injection / relay / HTTP). FIX: route an inbound send for an spt-hosted target through the daemon → broker InputReq → session.write_input PTY-inject (broker.rs dispatch_input/write_input ~988-1022), the same path the brain uses; the live-delivery handshake must report Sent (not Queued) and stop the spool-only fallback for a broker-hosted, PTY-resident endpoint. Detection is local: controllable==Some(true) + spt-hosted state + resolve_address==None. = the spt-core HALF of the wall-b finding (perri owns the adapter half: bind-hook fired-zero-perch + the missing endpoint-run int test). (post-v0.10.0)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1365
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3428
            },
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 36
            },
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 74
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 196
            },
            {
              "path": "crates/spt-daemon/tests/broker.rs",
              "line": 542
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 194
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1200
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12064
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SESSION-ADAPTER-RECORDED",
      "title": "D-2 (REMOTE-TRUTH triage §D-2 + operator Q5 @c248afc): the session ledger records the adapter[:profile] a session ran under, so a later resume can restore the harness the session actually used (not merely the endpoint's CURRENT stamp). ROOT: SessionEntry (spt-store/sessions.rs:58) carries ts/session_id/trigger/cwd/ordinal but NOT the adapter — a resume-from-history row cannot know which harness authored the transcript, so a resume under a since-changed endpoint adapter (B-2 ChangeAdapter, or a fork) launches the wrong harness. FIX: an ADDITIVE `adapter: Option<String>` on SessionEntry, exact cwd/ordinal serde pattern (#[serde(default, skip_serializing_if=\"Option::is_none\")]) — a pre-migration row missing the key deserializes None; None omits the key on serialize (byte-identical to old rows); an unknown key on an old reader is ignored (serde default) — back-compat BOTH directions. Stamped at every PRODUCTION session-boundary append. CENSUS (doyle-confirmed @94f0205, corrects the triage-era 5-site drift to the real 3): startup.rs:317 (live bind boot row, rec.adapter in scope), reporting.rs:94 (boundary rotation row UNDER the mutate_info lock, capture adapter_for_ledger=rec.adapter beside cwd_for_ledger), ready.rs:119 in crates/spt-msg (ready-agent boot row, rec.adapter in scope). NOT digest.rs:601 (cfg(test) fixture) and NOT a livehost psyche-ledger append (none exists — the live /clear|/compact boundary shells `api boundary` → reporting.rs:94, the SAME append). None-stamp is a benign degrade (resume falls back to the endpoint's current adapter).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 131
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 92
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 112
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 331
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 326
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 350
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SESSION-RESUME-TEMPLATE",
      "title": "Resuming an endpoint session that HAS conversation history brings up a BLANK session. ROOT (doyle, code-grounded + CONTEXT — case-3 spt-core MISSING feature, NOT a perri docs-miss): CONTEXT L127-129 already defines the resume-session seam ('continue-existing: resume an existing harness session under the adapter — its NATIVE resume'), and the manifest already has the resume-variant pattern (Session has BOTH psyche_init AND psyche_resume, manifest.rs:217-219) — but the agent's own session has ONLY self_ (`[session.self]`, no resume sibling). cmd_endpoint_run (cli.rs:1304) re-passes the session_id through `[session.self]` on resume (resume.unwrap_or_else(mint_session_id)), so the adapter's FRESH command (e.g. `claude --session-id ..`) runs again instead of the harness NATIVE resume (`claude -r ..`) -> CC starts a fresh transcript -> blank. spt-core forwards session_id + cwd faithfully; it just has no way to express the native-resume invocation. SECOND GAP: CC resolves a transcript by session_id + cwd, but the session ledger records only {ts, session_id, trigger} (no cwd), so picker Resume-from-history (cross-project rows) can't restore the right cwd. FIX (doyle design, docs/V0.13.0-P2-SESSION-RESUME-DESIGN.md, mirrors psyche_init->psyche_resume exactly): (A) add a `[session.resume]` role (resume: Option<SessionRole> on Session + roles()/is_empty()); cmd_endpoint_run selects it when --resume is set AND it's declared (fill {id}/{session_id}=resumed id/{session_name} + the resume cwd), else FALL BACK to `[session.self]` (full back-compat). (B) record cwd PER ledger row (operator ruling): {ts, session_id, trigger, cwd} additive serde-default; resume cwd = resumed row cwd -> else perch info.cwd -> else current_dir (back-compat for old rows + single-project endpoints); picker threads the selected row's cwd through Outcome::Run -> cmd_endpoint_run. (C) public docs (MANIFEST + harness-contract) teach `[session.resume]` so perri builds the adapter side BLIND. Adapter follow-on (perri, AFTER spt-core ships+docs): declare `[session.resume] command = claude -r {session_id} --remote-control {id} --dangerously-skip-permissions` from the resume cwd. Completes REQ-READY-AGENT-RESUME / REQ-RUN-PICKER resume-from-history. (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/manifest.md",
              "line": 133
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 138
            },
            {
              "path": "docs/V0.13.0-P2-SESSION-RESUME-DESIGN.md",
              "line": 27
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 90
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 231
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 247
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 71
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 250
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/resume_template_e2e.rs",
              "line": 25
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 558
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 608
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1631
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 249
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 275
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 303
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2120
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SESSIONS-LOG-ENDPOINT-ATTRIBUTION",
      "title": "C2 (F028, infra; ROOT-CAUSED + severity-upgraded doyle RCA 2026-07-03): cross-endpoint perch contamination — a foreign psyche's SessionStart hook REBINDS a victim perch's IDENTITY, not merely its ledger. Evidence: hall-a's info.json.session_id IS f015b-probe-psyche's session (359d7bd7) + hall-a's ledger holds the foreign psyche session; same class as hall-b's dead-pid stamp (141556). This REQ = the OBSERVABLE (foreign session_id in a perch's ledger/info.json + resume offering foreign sessions) and its belt-braces: (iii) filter owlery-cwd rows OUT of resume_rows; (iv) one-time repair for already-contaminated perches (hall-a on HFENDULEAM) or self-heal on next legitimate session-start. The ROOT (identity pinned at spawn + honest bind + nested self-resolve) is REQ-BIND-HONEST-SELF-STAMP — C2 is UPSTREAM of B3 (presence/CONTROLLED read the very stamps this corrupts). See triage C2.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 556
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 1068
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SHELL-1",
      "title": "Shell hosting machinery: shell perch under the owner (type/owner/adapter_name/status/alias), broker-launched binary + api bind local-link handshake, the three channels (command durable, text+file durable + progress-queryable, sensory REST-only never spooled + dropped-unless-owner-live), owner exclusivity (CONTEXT Shell model)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 190
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 269
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 27
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 53
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 145
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 177
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 22
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 65
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 76
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 151
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 210
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 261
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 283
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 296
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 231
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 247
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 41
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 222
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 186
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 380
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 445
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 413
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10419
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10588
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10764
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 859
            },
            {
              "path": "crates/spt-daemon/tests/shellchan.rs",
              "line": 8
            },
            {
              "path": "crates/spt-daemon/tests/shellchan.rs",
              "line": 49
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 788
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1315
            },
            {
              "path": "crates/spt/tests/notify_shell_e2e.rs",
              "line": 17
            },
            {
              "path": "crates/spt/tests/shell_e2e.rs",
              "line": 14
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 250
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 283
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 323
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 601
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 674
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 818
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 652
            },
            {
              "path": "crates/spt-store/src/shellinfo.rs",
              "line": 399
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14384
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14717
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15134
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SHELL-2",
      "title": "Shell sleep/wake: link-break always closes the binary (pre-close instruction + termination timeout), ephemeral teardown vs persistent offline/relink, wake_command wake-watcher (offline-only, exit-opcode supervision, exponential backoff + give-up), state-keyed wake resolution (dormant/suspended/active-elsewhere; no-reachable refuses — spawn-anywhere branch deferred), spt shutdown owner cascade + api owner-shutdown gated by can_shutdown (CONTEXT Shell sleep/wake)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 223
            },
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 439
            },
            {
              "path": "crates/spt-daemon/src/grants.rs",
              "line": 250
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 806
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 30
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 410
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 446
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 661
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 407
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 116
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 120
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 376
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 502
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 24
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 76
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 154
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 177
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 273
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 470
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 552
            },
            {
              "path": "crates/spt-net/src/net/shelllink.rs",
              "line": 27
            },
            {
              "path": "crates/spt-net/src/net/shelllink.rs",
              "line": 48
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 597
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3688
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10433
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10513
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10541
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10595
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10850
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10910
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 472
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 514
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 852
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 788
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1315
            },
            {
              "path": "crates/spt/tests/shell_sleepwake_e2e.rs",
              "line": 18
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 745
            },
            {
              "path": "crates/spt-daemon/src/resting.rs",
              "line": 1159
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 707
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 756
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 780
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 617
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 638
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 674
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 728
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 746
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 785
            },
            {
              "path": "crates/spt-daemon/src/shellwake.rs",
              "line": 868
            },
            {
              "path": "crates/spt-net/src/net/shelllink.rs",
              "line": 85
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13294
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14462
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14532
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14575
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SHELL-3",
      "title": "Drive channel (owner->shell, REST-only, never-spooled, latest-wins): the owner->shell mirror of sensory for continuous real-time control (scroll/crank/stick/avatar) — a [shell.drive] manifest vocab + EVENT_TYPE_DRIVE frame, delivered to the ONLINE binary only via a single live slot (a new frame supersedes an undelivered one — no spool, no queue, no replay on relink), dropped-with-diagnostic if the shell is offline; cross-node rides the ephemeral link (REST class), never the durable shell spool. Commands = discrete+durable; drive = continuous+ephemeral (CONTEXT:260, minted 2026-06-11 Gateway grill).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 232
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 36
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 137
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 153
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 165
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 242
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 267
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 293
            },
            {
              "path": "crates/spt-daemon/src/endpoint.rs",
              "line": 51
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 334
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 374
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 603
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 133
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 450
            },
            {
              "path": "crates/spt-proto/src/event.rs",
              "line": 74
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 764
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 476
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10636
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1364
            },
            {
              "path": "crates/spt/tests/drive_e2e.rs",
              "line": 17
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 311
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 325
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 343
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 364
            },
            {
              "path": "crates/spt-daemon/src/drivehub.rs",
              "line": 376
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 898
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 958
            },
            {
              "path": "crates/spt-daemon/src/shellchan.rs",
              "line": 342
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 850
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 14244
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SHELL-4",
      "title": "Shell tunnel (reliable-ordered opaque byte stream): an owner<->shell link may hold a long-lived, reliable-ordered, link-bound QUIC stream pair carrying opaque wire protocol traffic the channel taxonomy must NOT reinterpret (first consumer usbip URB) — manifest opt-in, not enveloped, not MAC-framed, not spooled; the link lifecycle governs it (a link-break closes the tunnel). Reliable-ordered ⇒ congestion surfaces as lag never loss ⇒ acceptable only on-LAN: the on-LAN posture is documented and the tunnel is NOT proven cross-WAN (CONTEXT:262, minted 2026-06-11 Gateway grill; doyle gate C2).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 324
            },
            {
              "path": "docs/adr/0020-event-envelope-sole-arriving-format-reply-to-removed.md",
              "line": 88
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 246
            },
            {
              "path": "crates/spt-daemon/src/endpoint.rs",
              "line": 61
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 219
            },
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 246
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 575
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1186
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1198
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1239
            },
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 458
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 44
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 208
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 227
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 253
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 272
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 392
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 421
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 439
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 458
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 486
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 783
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 988
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 515
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10692
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/tunnel_e2e.rs",
              "line": 18
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1492
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 1521
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 504
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 514
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 531
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 543
            },
            {
              "path": "crates/spt-daemon/src/tunnelhub.rs",
              "line": 555
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1484
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 857
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SHELL-5",
      "title": "Shell ownership is owner-type-agnostic: any non-Shell endpoint type may own/spawn/drive/command/link a shell (Gateway the named first) — control-exclusivity keys on the owner endpoint_id, NEVER on the owner's endpoint type. No ownership path (mint, launch, owner-from-link, cmd, drive, tunnel, sleep/wake, owner-shutdown) inspects the owner's type (CONTEXT:264, ratified 2026-06-11 Gateway grill).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 327
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/shellhost.rs",
              "line": 262
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 837
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1392
            },
            {
              "path": "crates/spt/tests/gateway_owner_shell_e2e.rs",
              "line": 23
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/linkhost.rs",
              "line": 804
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SOFT-END-PRESERVES-LIVE-LISTENER",
      "title": "F-2 (REMOTE-TRUTH triage §F-2, field-repro'd hall-bf 2026-07-04): a /clear must not sever a SURVIVING poll listener's relay address — post-clear owl-path send hit NO_PERCH while ready was present and the inject path healthy. ROOT (source-certain): the relay registry row (id→addr + owning pid, registered by the LISTENER process itself at PollListener::bind, listener.rs:109) is DELETED by the adapter's soft `api session-end` (reporting.rs:231) fired for the DEPARTING session at /clear; but the poll listener SURVIVES /clear (a session-independent process, still bound on its port), so the deletion destroys a TRUE row. The C-2 boundary re-stamp (REQ-HAZARD-BOUNDARY-READY-STRAND) restores ready + status online but CANNOT re-register — only the listener process knows its socket addr — so every subsequent send lookup misses → NO_PERCH forever (until a listener restart re-binds). FIX: the SOFT arm of cmd_session_end unregisters CONDITIONALLY through the single liveness resolver (liveness::is_registry_entry_alive — the KH 2.5-aware resolver clean_stale_entries routes through): a row whose owner is still ALIVE is PRESERVED (the row is LISTENER-scoped truth, not session-scoped; the listener outliving /clear is the designed shape), a dead/offline row is removed (today's cleanup kept). The ERASE arm stays unconditional (a hard wipe orphans any listener; its row dies with the endpoint). Every legitimate teardown keeps its OWN unregister untouched: PollListener close/close_busy/Drop (listener.rs) and the stop verbs (cli.rs:5574/:10924). Defense-in-depth unchanged: a wrongly-preserved dead row still self-heals at delivery (deliver.rs failed-dial sweep, REQ-HAZARD-REGISTRY-STALE-CLEAN). Red-first: soft session-end with a live registered owner → row survives and lookup still resolves (pre-fix: deleted → NO_PERCH).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 240
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1162
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1184
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1203
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SPAWN-COLLISION-GUARD-LIVE-DUP",
      "title": "W4 (LIFECYCLE-TRUTH): single-flight wake per endpoint — the WAKE/RESUME respawn seam must not launch twice for one wake. ROOT (perri parentage + recovered filing): one wake processed TWICE within 1s — broker (306368) spawned two identical `launch --cli ccs --id flynn --resume <sid>` 1s apart, both survived; check-then-spawn TOCTOU in the spawn-side guard. DAMAGE: duplicate-perch writers STOMP info.json (the duplicate's compact re-stamped an OLD sid over a fresh /clear rotation -> injects routed to the contended record and lost). FIX: single-flight wake per endpoint (claim on the perch record or broker-side in-flight set keyed by id; second wake within the window = no-op ack), and the spawn path re-checks liveness UNDER the claim. Int: two concurrent wake requests -> exactly one launch tree.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 225
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2985
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/wake_single_flight.rs",
              "line": 127
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5525
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SPOOL-TAKE-AUDIT",
      "title": "W5 (LIFECYCLE-TRUTH, RCA cost: proving WHO took delivered=1 rows burned an hour): the spool records the taker per row — leg enum (relay-backlog / hook-poll / idle-inject / psyche) + sid/pid + taken_at ms — surfaced by a --json debug read. Additive column, no schema break (delivered rows already retained).",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 117
            },
            {
              "path": "crates/spt-daemon/src/relay.rs",
              "line": 64
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 144
            },
            {
              "path": "crates/spt-msg/src/ready.rs",
              "line": 180
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 452
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 470
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 534
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 607
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 675
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 198
            },
            {
              "path": "crates/spt/src/api/delivery.rs",
              "line": 225
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 134
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1375
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1396
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 821
            },
            {
              "path": "crates/spt-store/src/spool.rs",
              "line": 861
            }
          ]
        }
      }
    },
    {
      "id": "REQ-START-1",
      "title": "Adapters never resolve SPT_HOME; binary on PATH; api bridging only",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/seed.rs",
              "line": 16
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/seed.rs",
              "line": 48
            },
            {
              "path": "crates/spt-store/src/seed.rs",
              "line": 63
            }
          ]
        }
      }
    },
    {
      "id": "REQ-START-2",
      "title": "Harness-hosted startup: api seed then listen",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 16
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 115
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 352
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 186
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 756
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 789
            }
          ]
        }
      }
    },
    {
      "id": "REQ-START-3",
      "title": "spt-hosted startup: spawn-session then api bind (no file)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 23
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 221
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 237
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 17
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 35
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 116
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/contract_e2e.rs",
              "line": 478
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 525
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 546
            },
            {
              "path": "crates/spt-daemon/src/seedmap.rs",
              "line": 556
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 757
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 790
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 823
            }
          ]
        }
      }
    },
    {
      "id": "REQ-START-4",
      "title": "Adapter-injected env aliases (SPT/OWL/LIVE)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 700
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1439
            }
          ]
        }
      }
    },
    {
      "id": "REQ-START-5",
      "title": "Adapter-agnostic harness-hosted seed + bind-time adapter/profile resolution (ADR-0021): `api seed` carries only parent_pid + session_id (+ optional cwd), no --adapter — a pure \"a harness session exists at this pid\" record; --adapter becomes an OPTIONAL override across the whole api group (an explicit name[:profile] for adapter dev, never required). Omitted, listen/poll resolve the owning adapter/profile AT BIND as a pure read against the live registry — never a seed-time snapshot that can drift: seed parent_pid → exe basename → host_binaries candidate set (REQ-MANIFEST-8) → active-profile pointer (REQ-INSTALL-12) primary, else greatest-registered_at_ms candidate base profile (name-asc tie) → friendly zero-match error. Covers BOTH LiveAgent (listen) and ReadyAgent (poll) bringup. Restores legacy parity: `$LIVE start <id>` → `$SPT listen <id>` with no mandatory --adapter, one generic SessionStart hook per harness binary. (v0.9.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 204
            },
            {
              "path": "docs-site/src/harness-contract/api.md",
              "line": 41
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 26
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 212
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 221
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 540
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 36
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 118
            },
            {
              "path": "crates/spt/src/api/startup.rs",
              "line": 432
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/live_resolve_e2e.rs",
              "line": 17
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 358
            },
            {
              "path": "crates/spt-runtime/src/resolve.rs",
              "line": 371
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 671
            }
          ]
        }
      }
    },
    {
      "id": "REQ-STORE-1",
      "title": "spt-store::BranchStore (git branch as versioned KV; commit=checkpoint/tip=resume, atomic multi-key, merge-native sync) is the substrate for coarse/durable/audited state (context, registry snapshot+distribution, daemon checkpoint); hot paths (B5 fsync journal) + indexed queries (SQLite spool) excluded (ADR-0011)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 23
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 48
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 150
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 178
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 260
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 284
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 520
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 25
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 120
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 148
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 165
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 180
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 198
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 207
            },
            {
              "path": "crates/spt-store/src/project.rs",
              "line": 16
            },
            {
              "path": "crates/spt-store/src/project.rs",
              "line": 63
            },
            {
              "path": "crates/spt-store/src/project.rs",
              "line": 92
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 782
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 792
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 814
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 830
            },
            {
              "path": "crates/spt-store/src/branchstore.rs",
              "line": 888
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 472
            },
            {
              "path": "crates/spt-store/src/contextstore.rs",
              "line": 507
            },
            {
              "path": "crates/spt-store/src/project.rs",
              "line": 151
            },
            {
              "path": "crates/spt-store/src/project.rs",
              "line": 159
            }
          ]
        }
      }
    },
    {
      "id": "REQ-STORE-CONTEXT-BRANCH-FILL",
      "title": "#1 SI-1 (RCA, operator-promoted 2026-07-03): the context store (tracked/.seed.git) holds ZERO p-* branches on a box with months of live-agent use, while kitsubito/enlyzeam stores carry them. Context commits never land -> picker history has no store source (REQ-PICKER-PROJECT-HISTORY-TRUTH's fallback ships regardless, but the store must ALSO fill). RCA the contextstore write->branch-commit path with evidence (commune-ingest/context-commit regression vs store re-init), contrast the healthy stores, land whatever fix the RCA names. See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md #1 SI-1.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/KNOWN-HAZARDS.md",
              "line": 565
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 211
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 225
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 614
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 155
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1981
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1939
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 1966
            },
            {
              "path": "crates/spt-live/src/ingest.rs",
              "line": 353
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-1",
      "title": "spt subnet noun namespace: status view (bare + status [NAME] [--nodes]), create (QR/otpauth), show-code; spt pair deleted",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 281
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 743
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6237
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6547
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6603
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6667
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6709
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6898
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6981
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7227
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 8077
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 593
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1965
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15490
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15721
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15728
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15781
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15798
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15828
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15950
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16178
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-2",
      "title": "Guided join e2e: spt subnet join CLI initiator + always-on daemon pairing responder",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0005-totp-seeded-spake2-node-pairing.md",
              "line": 60
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1122
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3741
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 645
            },
            {
              "path": "crates/spt-daemon/src/nethost.rs",
              "line": 829
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 26
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 60
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 168
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 295
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 417
            },
            {
              "path": "crates/spt-net/src/net/pairing/meet.rs",
              "line": 252
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6630
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7144
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7907
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/pairjoin.rs",
              "line": 22
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 655
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 989
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 792
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15530
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16602
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-3",
      "title": "Node labels: hostname-default, gossiped, addressable in @node qualifiers (refuse-on-ambiguity)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 152
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 299
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 477
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 588
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 125
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 410
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 421
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 442
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 839
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 908
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 61
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 90
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 130
            },
            {
              "path": "crates/spt-store/src/hostlabel.rs",
              "line": 9
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6981
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 620
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1624
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 2140
            },
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 1038
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1590
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1646
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1705
            },
            {
              "path": "crates/spt-net/src/net/replicate.rs",
              "line": 245
            },
            {
              "path": "crates/spt-store/src/hostlabel.rs",
              "line": 67
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15950
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16133
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16568
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-4",
      "title": "Subnet membership mutations elevation-gated (create = seed reveal; join = trust-boundary enrollment)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0005-totp-seeded-spake2-node-pairing.md",
              "line": 60
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6237
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7813
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7907
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15653
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15781
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-5",
      "title": "Per-subnet serve-state: spt subnet detach <NAME> [--save] / attach <NAME> [--save] — daemon keeps running, stops/starts advertising + connecting for that subnet (peer pump + responder selective); --save persists the startup default in daemon config; the all-attached banner gains per-subnet states (M8 decision 6, --save renamed from --auto per decision 25 session)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/daemon.rs",
              "line": 131
            },
            {
              "path": "crates/spt-daemon/src/dispatch.rs",
              "line": 449
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 74
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 333
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 624
            },
            {
              "path": "crates/spt-daemon/src/serveprobe.rs",
              "line": 31
            },
            {
              "path": "crates/spt-daemon/src/serveprobe.rs",
              "line": 50
            },
            {
              "path": "crates/spt-daemon/src/serveprobe.rs",
              "line": 69
            },
            {
              "path": "crates/spt-daemon/src/serveprobe.rs",
              "line": 113
            },
            {
              "path": "crates/spt-net/src/net/serveprobe.rs",
              "line": 25
            },
            {
              "path": "crates/spt-net/src/net/serveprobe.rs",
              "line": 34
            },
            {
              "path": "crates/spt-store/src/attachment.rs",
              "line": 17
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7771
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 594
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 967
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 354
            },
            {
              "path": "crates/spt-daemon/src/pump/mod.rs",
              "line": 1123
            },
            {
              "path": "crates/spt-daemon/src/serveprobe.rs",
              "line": 151
            },
            {
              "path": "crates/spt-net/src/net/serveprobe.rs",
              "line": 61
            },
            {
              "path": "crates/spt-store/src/attachment.rs",
              "line": 111
            },
            {
              "path": "crates/spt-store/src/attachment.rs",
              "line": 138
            },
            {
              "path": "crates/spt-store/src/attachment.rs",
              "line": 148
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15554
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-6",
      "title": "Trust lifecycle verbs, elevation-gated: spt subnet leave <NAME> (membership exit) and spt subnet prune <node> (removes a dead identity's trust + registry rows, killing its dead dials; trust mutation = security surface, REQ-PAIR-6 gate machinery) (M8 decisions 6-7)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 411
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7429
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7446
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7499
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7522
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15568
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15601
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15610
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-7",
      "title": "Per-machine re-pair trust overwrite: registry rows carry a hashed stable machine identifier (OS machine id /etc/machine-id|MachineGuid, domain-separated SHA-256 before gossip, spt-minted persisted UUID fallback; additive serde-default field — old rows parse clean); a COMPLETED pairing ceremony presenting the same node label AND machine id as an existing trusted row evicts the superseded identity's trust + registry rows on the seed-holder and replicates the eviction; a gossiped claim alone never evicts trust (M8 decisions 13, 22)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/machineid.rs",
              "line": 17
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 103
            },
            {
              "path": "crates/spt-daemon/src/pairhost.rs",
              "line": 312
            },
            {
              "path": "crates/spt-daemon/src/pump/registry.rs",
              "line": 131
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 160
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 481
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 762
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 893
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 949
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 136
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 139
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/machineid.rs",
              "line": 140
            },
            {
              "path": "crates/spt-daemon/src/machineid.rs",
              "line": 160
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1249
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1271
            },
            {
              "path": "crates/spt-net/src/net/pairing/wire.rs",
              "line": 1419
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1641
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-8",
      "title": "Status render honesty: zero-subnet text is daemon-aware ('No subnets registered — this node is standalone.' + daemon-running-dependent blurb, never implying messaging works while the daemon is down); hint footer prints on bare spt subnet only (status drops it); a stalled pump is surfaced in subnet status, never rendered implied-healthy (M8 decisions 11-12, 23)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6710
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6739
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6756
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6779
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 7228
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15812
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15828
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-COUNT-ROUTABLE",
      "title": "Bug #2: a remote node endpoint count drifts (0/2, 1/3) because node_status_rows (cli.rs:5314) increments the per-node total unconditionally, counting non-routable Offline ghost rows; purge is not a registry eviction (it gossips a one-shot Offline row that is immortal on remote viewers — eviction is per whole-node only). Fix: routable-only denominator (total += status.routable()) keeping a separate raw count for the all-Offline liveness branch; plus per-row Offline-TTL eviction so purged endpoints stop accumulating on remote snapshots. See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #2.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6934
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16062
            }
          ]
        }
      }
    },
    {
      "id": "REQ-SUBNET-DISPLAY-PARITY",
      "title": "The `spt endpoint run` picker renders endpoint state IDENTICALLY for local and remote (subnet) rows — bound/unbound, controlled (+driver node), and harness-only are all visible across the subnet, not local-only. Today data.rs:293-294 reduces a remote row to plain green-filled/gray-hollow because those facts aren't propagated. (1) GOSSIP additive per-Instance fields: bound/unbound, controlled + driver-node, harness_only (Offline is never gossiped — node-down is remote-inferred). (2) Derive the full EpDisplay for subnet rows from the gossiped fields, same path as local (remove the remote-reduction). (3) PALETTE rework (fill = ACTIONABLE: filled=can act now (rc-control if online, WAKE if suspended-on-live-node) / hollow=cannot (no control seat / node gone)): green-filled=online+bound+free; blue-filled=online+controlled (desc shows `controlled by <node>`); RED-filled=online+UNBOUND (controlled-or-not; controlled-ness shown via available options not glyph) — replaces green-hollow Unbound + absorbs the dropped UnboundControlled; AMBER-HOLLOW=online+harness-only (no broker seat → can't rc) — was amber-FILLED; GRAY-FILLED=Suspended (cold, node up — wakeable) NEW; gray-hollow=Offline (node down) now REMOTE-ONLY. EpDisplay: drop UnboundControlled, Unbound→red-filled, HarnessOnly→amber-hollow, add Suspended(gray-filled). Picker maps Active|Dormant→online flavor, Suspended→gray-filled, Offline→gray-hollow. (next milestone)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 435
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 490
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 562
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 171
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 181
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 191
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 230
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 505
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 509
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 513
            },
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 598
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 44
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 64
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 71
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 82
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 633
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 638
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 650
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1214
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1400
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 80
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 514
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 765
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 851
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-net/src/net/registry.rs",
              "line": 1165
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1901
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 1967
            },
            {
              "path": "crates/spt/src/picker/model.rs",
              "line": 2064
            },
            {
              "path": "crates/spt/src/picker/view.rs",
              "line": 807
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TERM-1",
      "title": "Process-supervisor terminal wrapper hosting broker PTYs",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/pty.rs",
              "line": 59
            },
            {
              "path": "crates/spt-term/src/pty.rs",
              "line": 234
            },
            {
              "path": "crates/spt-term/src/surface.rs",
              "line": 100
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/tests/surface.rs",
              "line": 24
            },
            {
              "path": "crates/spt-term/tests/surface.rs",
              "line": 56
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TERM-2",
      "title": "session-surface abstraction; send-keys + send-line injection",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/surface.rs",
              "line": 117
            },
            {
              "path": "crates/spt-term/src/surface.rs",
              "line": 127
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/tests/inject.rs",
              "line": 46
            },
            {
              "path": "crates/spt-term/tests/inject.rs",
              "line": 77
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TERM-3",
      "title": "Byte-stream remote terminal streaming for v1",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/src/stream.rs",
              "line": 71
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-term/tests/stream.rs",
              "line": 37
            },
            {
              "path": "crates/spt-term/tests/stream.rs",
              "line": 67
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TERM-4",
      "title": "Live activity buffer (session digest): projection of normalized session logs, snapshot-pull (spt endpoint digest) + structured-delta-stream contract + api digest-entry push",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 37
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 25
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 114
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 267
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 293
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 311
            },
            {
              "path": "crates/spt-store/src/history.rs",
              "line": 33
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 52
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 180
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 190
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 254
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 364
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 375
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 1458
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/digest.rs",
              "line": 18
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 531
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 584
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 594
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 443
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 463
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 485
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 498
            },
            {
              "path": "crates/spt-daemon/src/digesthub.rs",
              "line": 509
            },
            {
              "path": "crates/spt-store/src/history.rs",
              "line": 108
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 180
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 188
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 522
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 549
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 568
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 583
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 609
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 629
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 639
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 731
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1298
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 15209
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TERM-5",
      "title": "Adapter-declared digest extractor seam: a `[digest]` manifest section declaring an imperative extractor (native harness log -> the {role,text,tool,ts} contract; defaults to the [history] source files with an own-source escape hatch), `api digest-entry` push fallback, register-time validation of the section, adapter-declared presentation defaults (window depth, arg-truncation, sprint-collapse) that any consumer may override, and a `spt adapter digest-proof` author tool plus runtime skip-diagnostics (no silent drop). Reverses M9's no-manifest-seam stance; no declarative DSL.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 385
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 75
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 131
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 22
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 87
            },
            {
              "path": "crates/spt-term/src/digest.rs",
              "line": 30
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 103
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 167
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 482
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9044
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9832
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/two_origin_spanning.rs",
              "line": 17
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 542
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 191
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 208
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 281
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 292
            },
            {
              "path": "crates/spt-live/src/digest.rs",
              "line": 303
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1912
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1995
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 654
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 682
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 694
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 717
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13771
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13829
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TERM-6",
      "title": "Thread-spanning digest across session boundaries: a per-endpoint session ledger (`<perch>/sessions.log`) appended at first bind and by `api boundary` on `/clear`|`/compact` session rotation, the digest enumerating the last K sessions so its rolling window bridges a boundary, and a distinctive in-timeline boundary marker (DigestEntry::Boundary). The digest follows the live-agent thread, not a single session.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 132
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 209
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 17
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 149
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 329
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 444
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/two_origin_spanning.rs",
              "line": 18
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 200
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 215
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 231
            },
            {
              "path": "crates/spt-store/src/sessions.rs",
              "line": 462
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 793
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 814
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1052
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TERM-7",
      "title": "Two-origin digest merge: spt-owned context-injection entries (psyche_download | echo_mirror | owl_message) appended by spt to the endpoint `digest.log`, timestamp-interleaved with the adapter's extracted activity records into one ordered timeline, via a distinct context-injection record category. Data model only this milestone; GUI collapse/expand and the echo-reads-digest delta loop are deferred to the surfaces that consume them.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 133
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 492
            },
            {
              "path": "crates/spt-live/src/inject.rs",
              "line": 15
            },
            {
              "path": "crates/spt-live/src/inject.rs",
              "line": 32
            },
            {
              "path": "crates/spt-store/src/history.rs",
              "line": 49
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 290
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 330
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/two_origin_spanning.rs",
              "line": 19
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 623
            },
            {
              "path": "crates/spt-daemon/src/digest.rs",
              "line": 853
            },
            {
              "path": "crates/spt-live/src/inject.rs",
              "line": 58
            },
            {
              "path": "crates/spt-live/src/inject.rs",
              "line": 77
            },
            {
              "path": "crates/spt-live/src/inject.rs",
              "line": 87
            },
            {
              "path": "crates/spt-store/src/history.rs",
              "line": 94
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 739
            },
            {
              "path": "crates/spt-term/src/projection.rs",
              "line": 771
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TRANSLATE-BINARY-LIVENESS-DECAY",
      "title": "SUPERSEDED by REQ-TRANSLATE-COMMIT-MISS-TOLERANCE (F029 C-1). B6 (F028, perri F-e) was ROOT-PINNED as the commit-deadline-miss fault: at a checkpoint clear boundary the clear-only inject's {commit} was never observed within INJECT_COMMIT_DEADLINE, so the inject worker FAULTED + TERMINATED a HEALTHY translate binary and (by ADR-0022) never respawned → every subsequent force-native reported delivered=false ('no live translation binary'). NOT a dormancy/liveness-registration decay (that hypothesis is dead) — deterministic at every checkpoint-armed boundary. The fix (miss != fault + N=3 strike budget + bounded respawn + perch-visible fault stamp) lives under REQ-TRANSLATE-COMMIT-MISS-TOLERANCE + REQ-HAZARD-TRANSLATE-FAULT-PERMANENT-DEATH. See triage addendum C-1.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-TRANSLATE-COMMAND",
      "title": "`[message-idle-translation-binary]` accepts a `command` (opaque; args + ADAPTER-STATIC {adapter_dir}/{adapter_name} substitution ONLY — ratified v0.16.0 W1, NOT session {key}: the translation binary is a persistent process serving all sessions on the endpoint (session/event ctx arrives per-message via the stdin Init/Event protocol, never the spawn argv) and the live-update respawn site has no session ctx (a {id}-bearing command would MissingKey→spool); program token resolved against install_dir like [digest].extractor/[session.psyche_init]) in addition to the bare `path`. `path` is DEPRECATED — keeps parsing (manifest forward/back-compat) but emits a registration warning steering to command. Exactly one of {path, command} (both-set refused at registration; neither = no translation binary). The spawn lifecycle + stdin/stdout JSON-lines protocol (Init/Event/Input → key/text/delay_ms/commit) are UNCHANGED — command alters only how the executable+args are located/launched (read_translation_path → read_translation_command). Unblocks folding `claude-spt translate` into the one consolidated binary (downstream ADR-0006). (v0.16.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/MANIFEST.md",
              "line": 358
            },
            {
              "path": "docs/adr/0029-adapter-update-arc-resolve-not-execute.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1863
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 180
            },
            {
              "path": "crates/spt-daemon/src/translation.rs",
              "line": 243
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 483
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 491
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1055
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 336
            },
            {
              "path": "crates/spt-runtime/src/runtime.rs",
              "line": 457
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 10012
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5643
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 397
            },
            {
              "path": "crates/spt-daemon/src/harnesshost.rs",
              "line": 469
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1585
            }
          ]
        }
      }
    },
    {
      "id": "REQ-TRANSLATE-COMMIT-MISS-TOLERANCE",
      "title": "C-1 (F029, B6 ROOT — rescope of REQ-TRANSLATE-BINARY-LIVENESS-DECAY, now PINNED): at a checkpoint clear boundary the clear-only inject drives `/clear`; its `{commit}` is never observed within INJECT_COMMIT_DEADLINE (5s, broker.rs:158) so the inject worker FAULTS + TERMINATES a HEALTHY translate binary (broker.rs respool_and_fault + return) and by ADR-0022 design NEVER respawns → every subsequent force-native reports delivered=false ('no live translation binary', cli.rs:5046) = B6's exact field signature; the v0.12.0 checkpoint post-clear WAKE dies with the terminated binary + the fire-and-forget FIRE in the dead window. NOT a race — deterministic at every checkpoint-armed boundary (perri captured-stderr proof: TRANSLATION_FAULT on the F-019 unread daemon-stderr channel). FIX (REVISED, supersedes terminate-then-respawn): miss != fault — preserve the binary; the watchdog's job is ANTI-STALL (release the operator floor), not execution-verification. See addendum C-1 + ADR-0022 amendment.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/adr/0022-spt-hosted-idle-delivery-translation-binary.md",
              "line": 154
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2104
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2324
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1733
            },
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 1849
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4880
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4903
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-1",
      "title": "Peer-propagated update over P2P",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 28
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 104
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 343
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 22
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 207
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 283
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 340
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 37
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/dispatch.rs",
              "line": 208
            },
            {
              "path": "crates/spt-daemon/tests/twohost.rs",
              "line": 1184
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 490
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 616
            },
            {
              "path": "crates/spt-daemon/tests/propagate.rs",
              "line": 367
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 124
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 200
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-2",
      "title": "All binaries signature-verified before handoff",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 344
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 477
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 29
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 339
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 356
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 476
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 626
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 155
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 862
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 923
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 937
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 953
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1044
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 414
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 427
            },
            {
              "path": "crates/spt-daemon/tests/propagate.rs",
              "line": 500
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-3",
      "title": "No endpoint process terminates/suspends during self-update",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 40
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 301
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1338
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3629
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 26
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 114
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 246
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4663
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/brain_survive.rs",
              "line": 58
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 771
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 826
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 983
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1173
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 271
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 295
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 316
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 332
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-4",
      "title": "Update gated on user confirmation by default; opt-in full-auto",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 41
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 125
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 302
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 364
            },
            {
              "path": "crates/spt-daemon/src/consent.rs",
              "line": 23
            },
            {
              "path": "crates/spt-daemon/src/consent.rs",
              "line": 56
            },
            {
              "path": "crates/spt-daemon/src/consent.rs",
              "line": 77
            },
            {
              "path": "crates/spt-daemon/src/lifecycle.rs",
              "line": 576
            },
            {
              "path": "crates/spt-daemon/src/notif.rs",
              "line": 108
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 350
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4662
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 822
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 1036
            },
            {
              "path": "crates/spt-daemon/src/config.rs",
              "line": 397
            },
            {
              "path": "crates/spt-daemon/src/consent.rs",
              "line": 102
            },
            {
              "path": "crates/spt-daemon/src/consent.rs",
              "line": 123
            },
            {
              "path": "crates/spt-daemon/src/consent.rs",
              "line": 142
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 830
            },
            {
              "path": "crates/spt-store/src/perch.rs",
              "line": 623
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13511
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-5",
      "title": "spt-core ripple-updates registered adapters",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 27
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 87
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 145
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 560
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 614
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 278
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 292
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 306
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 320
            },
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 354
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1372
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-6",
      "title": "Platform-targeted update sets and debug rollout: signed multi-platform update metadata, recipient platform selection, channel-scoped monotonic counters, debug-channel opt-in via release-key overlay, local staging plus pull-based peer propagation, and maintainer-only convergence tooling (ADR-0016)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs/DEBUG-ROLLOUT.md",
              "line": 3
            },
            {
              "path": "docs/adr/0016-platform-targeted-update-sets.md",
              "line": 3
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 85
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 253
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 279
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 70
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 134
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 244
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 407
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 535
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 549
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 604
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 635
            },
            {
              "path": "crates/spt-daemon/src/pump/update.rs",
              "line": 137
            },
            {
              "path": "crates/spt-daemon/src/pump/update.rs",
              "line": 184
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 78
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 114
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 185
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 260
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 292
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 323
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 346
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 388
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 398
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 410
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 420
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 439
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 449
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 94
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 120
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 135
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 162
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 174
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 245
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 519
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 641
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 171
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 65
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 71
            },
            {
              "path": "crates/spt-net/src/net/update.rs",
              "line": 77
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 895
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 912
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 955
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 1098
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 1248
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/propagate.rs",
              "line": 659
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 956
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 1005
            },
            {
              "path": "crates/spt-daemon/src/propagate.rs",
              "line": 697
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 513
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 638
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 675
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1059
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1081
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1098
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1113
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 1139
            },
            {
              "path": "crates/spt-daemon/src/update.rs",
              "line": 457
            },
            {
              "path": "crates/spt-daemon/tests/propagate.rs",
              "line": 428
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16219
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 1402
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-7",
      "title": "Origin-source update bootstrap (`spt update fetch`): pull the latest signed release directly from the GitHub release origin (`SaberMage/spt-releases`) — the per-platform artifact + its `<asset>.release.json` SignedRelease metadata — and stage it through the EXISTING verify→stage pipeline (the same `plan_verified` gate: two-key signature + channel + monotonic rollback floor + SHA-256), after which the normal consent-notif / `spt update apply` flow is unchanged. Closes the peer-only-discovery gap (REQ-UPD-1): a first-in-fleet / isolated node can update with no peer to pull from. The signed-release anchor keeps the GitHub transport untrusted-but-verified.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5231
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16195
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-8",
      "title": "Platform-safe `spt update fetch` + apply platform-guard (v0.3.1 cross-OS brick fix): `spt update fetch` stages the signed multi-platform `SignedUpdateSet` (`update-set.json` + every platform artifact it names), never a platform-blind single `SignedRelease`, so local apply selects `current_platform()` and P2P re-serve lets each peer select ITS own platform. Defense-in-depth: `apply_staged` REFUSES a staged single-release artifact unless it is platform-stamped for THIS node (an unstamped pre-v0.3.2 single, or a single stamped for another OS, fail-safe refuses — the guard that alone prevents the v0.3.1 brick where a Linux ELF was applied as `spt.exe`). UX: a friendly post-apply message (`Updated spt-core to vX.Y.Z.` + changelog URL) driven by an additive `product_version` metadata field, with a release-counter fallback when absent.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 86
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 49
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 152
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 215
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 230
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 247
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 269
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 66
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 154
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4522
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4795
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4805
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4812
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5232
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 597
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 611
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 712
            },
            {
              "path": "crates/spt-daemon/src/relcache.rs",
              "line": 580
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16197
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16219
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPD-9",
      "title": "`gh_release` adapter [update] avenue (optional signing): an adapter declares `[update] avenue = \"gh_release\", repo = \"user/repo\"` (+ optional `asset`, default `adapter.spt`; + optional Ed25519 `signing_key`); spt-core's ripple compares the repo's LATEST GitHub release version against the installed adapter version and, when newer, auto-updates by fetching the release `.spt` archive (the REQ-INSTALL-9 `--release` fetch primitive) → verifies the `.spt` against `signing_key` if declared, else HTTPS+GitHub first-acquisition trust → re-extracts + re-registers the adapter root. Lets a harness adapter ship updates from its own GitHub releases with NO signing tooling or plugin coupling (removes the perri file_pull/delegated avenue blockers). Acquisition-trust mirrors `--release` + the installer first-fetch; does not alter spt-core self-update (REQ-UPD-1..8).",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 97
            },
            {
              "path": "docs/MANIFEST.md",
              "line": 472
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 128
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 601
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 532
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 664
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1109
            },
            {
              "path": "crates/spt-runtime/src/registry.rs",
              "line": 352
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9089
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9269
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9637
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9684
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9707
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 9733
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/adapter_update.rs",
              "line": 265
            },
            {
              "path": "crates/spt-daemon/src/release.rs",
              "line": 769
            },
            {
              "path": "crates/spt-runtime/src/manifest.rs",
              "line": 1408
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 12609
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-APPLY-ALREADY-APPLIED",
      "title": "`spt update apply` classifies an already-staged / already-applied state as a friendly exit-0 no-op instead of dying at the binary-aside rename with 'Access is denied (os error 5)'. ROOT (F-025): a second apply on an already-applied staged version reaches the two-phase binary-aside rename and fails os-error-5, reading as a hard failure when the machine is simply up to date. FIX: apply gains the same pure classifier `fetch` got in v0.18.0 (REQ-UPDATE-FETCH-CURRENT-UX) — already-applied → clear message + exit 0, and the flow MUST short-circuit BEFORE the binary-aside rename in that state; mirror the classifier at ALL apply reject/entry sites the way the fetch fix covered its three. Genuine errors (bad signature, wrong platform, true downgrade, network) still propagate nonzero. (F-025)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 61
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 157
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 392
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4536
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4608
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 504
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16250
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-APPLY-RESTART-NOTICE",
      "title": "`spt update apply` prints a LOUD restart-required notice whenever the surviving broker will keep running the pre-apply image (which, until broker-restart choreography exists, is ALWAYS on a successful apply). Public wording, no internal CODE:RESULT markers (composes with REQ-ADAPTER-UPDATE-MESSAGE / the update-apply-confident-message rule) — name the user-visible CONSEQUENCE ('daemon-coordinated features run the previous version until the daemon restarts'), not the broker/brain internals. Composes with REQ-UPDATE-RUNNING-IMAGE-SURFACE (the notice tells the user what the version-surface will then show, and how to clear it). (F-025)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4551
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16272
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-FETCH-APPLY-FLAG",
      "title": "`spt update fetch --apply` is the one-shot get-to-latest: fetch, then INSTALL the staged update REGARDLESS of whether the fetch itself staged anything new — so the brittle `fetch && apply` chain (which broke when fetch no-oped / exited nonzero on an already-staged latest, skipping the chained apply) is unnecessary. Composes with REQ-UPDATE-FETCH-CURRENT-UX: the end state is 'installed latest', reached idempotently from new-staged -> apply / already-staged (applied<candidate) -> STILL apply / already-applied -> noop+exit0 / genuine error (bad signature, no artifact for platform, true downgrade, network) -> do NOT apply, propagate the error + nonzero. Reuses the existing cmd_update_apply core (its own verify + two-phase + auto-rollback own correctness; no duplicated swap/respawn). Additive clap flag (plain doc-comment, no internal codes); reference.md regenerated. (v0.18.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5287
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11541
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11558
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-FETCH-CURRENT-UX",
      "title": "`spt update fetch` reports an already-staged / already-applied latest as an ACTIONABLE human outcome (exit 0), not a Debug-formatted error. ROOT: cmd_update_fetch (cli.rs) sets the rollback floor = staged_version, so when the published candidate == the already-staged version, verify_update_set_metadata returns Err(RejectReason::Rollback{current,candidate}) — printed as {reason:?} (Debug) at exit 1, reading as a FAILURE when the update is merely already downloaded and just needs `spt update apply` (this bit the operator: fetch kept 'failing', apply was the missing step). FIX: a PURE classifier (reason, applied, staged) -> {AlreadyStaged (latest downloaded, not yet installed) / AlreadyApplied (up to date) / GenuineError}; already-staged + already-applied print a friendly message and exit 0; genuine rejects use RejectReason's Display (release.rs, not Debug) + exit 1 — applied at ALL THREE fetch reject sites (metadata + artifact-verify + plan-verify). (v0.18.0)",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 5253
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 11497
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-FINISH-COMMUNE-FLUSH",
      "title": "DEFERRED (post-LIFECYCLE-TRUTH, operator-ruled 2026-07-07 — mint now, impl a FUTURE milestone): make the update swap LOSSLESS for live hosted endpoints by flushing a final echo-commune per endpoint BEFORE the brain-subtree reap. ROOT (operator-surfaced probing --finish): `update apply --finish` = daemonless swap -> daemon RESTART; the graceful `daemon stop` path (daemon.rs:316-325) raises brain_stop then reaper.reap() KILLS the brain subtree (brain + shellwake watchers + detached Psyches) as one unit — there is NO per-endpoint final commune before the kill. ENDPOINT-SURVIVAL (REQ-UPDATE-FINISH-ENDPOINT-SURVIVAL) then RESPAWNS each orphaned online spt-hosted endpoint, but from its LAST commune (whatever the ongoing per-event echo-commune cadence last saved), NOT an as-of-swap checkpoint — so mid-turn / uncommuned work is lost across the bounce. Today's mitigation is operator discipline: commune-before-swap. FIX (future): the stop/finish path, before reap, drives each LIVE hosted endpoint's final echo-commune (fire_echo final context save) so the respawn resumes from a swap-fresh checkpoint. Composes with ENDPOINT-SURVIVAL (commune -> reap -> respawn) and the W1 echo pipeline (REQ-ECHO-DROP-DIR-RESOLVE / REQ-PSYCHE-STAMP-CLEAR-ANY-SUCCESS). Bounded + loud per endpoint (a commune that hangs must not wedge the stop — timeout then reap anyway, never block the swap). Int: a live hosted endpoint with uncommuned state -> --finish -> respawned endpoint's digest/psyche reflects the pre-swap state (RED-first: without the flush the respawn shows only the last-cadence commune).",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-UPDATE-FINISH-ENDPOINT-SURVIVAL",
      "title": "W3 (LIFECYCLE-TRUTH): daemon restart no longer massacres hosted endpoints — daemon start RE-RUNS previously-online spt-hosted endpoints. ROOT rig-proven: daemon stop+start (the apply notice's OWN instruction) kills every hosted endpoint; they stay OFFLINE after start (no resurrection) though records exist (info.json status + adapter + cwd). SCOPE RULING (doyle): re-run-on-start, marked start-reason=daemon-restart; agents' minds ride psyche re-host as today. Int: endpoint online -> daemon stop -> start -> endpoint back ONLINE, same id, harness respawned.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 424
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 499
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 507
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 549
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1002
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/endpoint_survival.rs",
              "line": 85
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 2079
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-ONE-SHOT-FINISH",
      "title": "W3 (LIFECYCLE-TRUTH): update apply works daemonless and one command finishes the cycle. ROOT (operator wart): update fetch/apply run ensure_daemon_announced (cli.rs:4386) -> on a stopped box they BOOT THE OLD broker pre-swap, guaranteeing the mixed old-broker/new-brain pair + a manual bounce. FIX: apply works daemonless (swap + record, next start runs new bytes); `update apply --finish` (name subject to docs-token gate) completes the cycle: swap -> brain cycle -> broker restart onto new bytes (rides REQ-UPDATE-FINISH-ENDPOINT-SURVIVAL so the restart is not a massacre). CLI change -> xtask docs gen, no internal codes in clap ///.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 97
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 363
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4563
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4582
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4600
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4664
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4703
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 867
            },
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 908
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13512
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16307
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16340
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-PROMOTE-DRAINED",
      "title": "W3 (LIFECYCLE-TRUTH, mechanic-d MOVED FROM W2 per doyle gate verdict @e5ae7a9 — binding): the update-apply brain-generation promotion completes only when the OLD generation's broker subscriber connection is CLOSED or stall-EVICTED — never while blocked writes still pend on it. ROOT: `brain.ready` != subscribers drained; W2's stall-evict (REQ-HAZARD-BROKER-VIEWER-BRAIN-DECOUPLE) only BOUNDS the false-promote window to BRAIN_WRITE_DEADLINE (15s), it does NOT close it — a new brain can signal ready inside that window while the old gen's conn is still wedged, so the apply 'promotes' onto a still-frozen control plane (the 22:47 incident-night false-promote). FIX: the promotion gate (ADR-0018 brain-trial, brainproc.rs) adds an explicit DRAINED precondition — promote only on ready AND old-gen-subscriber-drained (conn closed OR stall-evicted); the drained signal reads broker truth (the W2 stall-evict tally / the old conn's liveness), no brain round-trip. The residual W2 left open, now closed. Int = a FALSE-PROMOTE rig that exercises the promotion path itself: an old-gen subscriber conn held wedged past ready must NOT promote until it drains (RED-first: ready-alone promotes).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 181
            },
            {
              "path": "specs/brain_handoff/BrainHandoff.tla",
              "line": 297
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 533
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1021
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2702
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/false_promote.rs",
              "line": 225
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1592
            },
            {
              "path": "crates/spt-daemon/src/brainproc.rs",
              "line": 1640
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 5489
            }
          ]
        }
      }
    },
    {
      "id": "REQ-UPDATE-RUNNING-IMAGE-SURFACE",
      "title": "`spt` surfaces the RUNNING broker image version beside the on-disk version so an updated-looking node reveals broker-side dormancy. ROOT (F-025): `spt update apply` restarts the BRAIN only (ADR-0018 D3-3) — the BROKER process survives and keeps running its pre-apply compiled image, so every broker-side surface of a freshly-applied release (the F015B live-apply matcher, dispatch inject legs, etc.) is silently dormant until a full daemon bounce, with nothing in the CLI revealing the split. FIX: the running broker SELF-REPORTS its compiled image version over IPC (a new request KIND answered by the live broker process from its own compiled build constant) — HARD CONSTRAINT: the version comes FROM the running broker process, NEVER inferred from disk bytes, install manifest, or file timestamps, since the disk is exactly the half that is already ahead; a version-surface command (`spt version` and/or `spt daemon status`) prints the running-broker version beside the on-disk/product version and flags a mismatch. Keeps read-side truth independent of write-side claims (the field lesson from F015B). (F-025)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1046
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 2803
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 3594
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4000
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4080
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 4184
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/applyhost.rs",
              "line": 547
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 16374
            }
          ]
        }
      }
    },
    {
      "id": "REQ-VIEWER-SKIP-TO-LIVE-ON-EVICT",
      "title": "A `rc --view` VIEWER that overflows its broker subscription queue and is EVICTED (OutputLog::append try_send Full → viewers.remove, REQ-HAZARD-VIEWER-ISOLATION session-protection) must SKIP TO LIVE, not die silently. ROOT (v0.13.0, b4 JIT item 2 = p0_paste + post-b4 a_journaled-Linux, ONE root): serve_attach forwards each frame (read_event→b64decode→re-encode AttachRecord→net_stream_send) SLOWER than the drain fans out under flood → its VIEWER_CHANNEL_DEPTH(256) channel overflows → the drain evicts (viewers.remove drops the ViewerSink → drops tx → viewer_writer's rx.recv() Err → the writer returns WRITING NOTHING) → serve_attach's brain.read_event() just STOPS getting Output (no EOF, no error) → serve_attach blocks forever → the operator receives nothing (attach_received_output=FALSE). Eviction-of-a-hopelessly-behind-viewer is CORRECT session-protection (keep it); SILENT+PERMANENT eviction is the bug. VIEWER-only → B2-SAFE (a viewer never advances delivered_through / is not authoritative / exposes no resume cursor). FIX (doyle-gated, skip-to-live = tail -f reconnect): (1) explicit broker→viewer EVICTION SIGNAL (KIND_VIEWER_EVICTED, written in the viewer_writer thread OFF the log lock, DISTINCT from session-exit EOF so serve must NOT tear down on it); (2) serve_attach re-subscribes from the CURRENT ring floor (skip-to-live, replays nothing, sees the next live burst) — resetting the cold serve-brain's next_seq so the post-eviction forward-jump replay is accepted (the legacy reject-gap path, brain.rs:618-626, would otherwise FATAL the forward jump); (3) HARD constraint NO evict→resubscribe busy-loop: serve_attach rate-limits re-subscribes (RESUBSCRIBE_INTERVAL) so under max-flood the operator sees intermittent LIVE bursts, never a CPU spin. (v0.13.0)",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 385
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/attach.rs",
              "line": 480
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 731
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 921
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 1356
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 964
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2779
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1660
            },
            {
              "path": "crates/spt-daemon/src/brain.rs",
              "line": 1817
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4368
            },
            {
              "path": "crates/spt-daemon/src/broker.rs",
              "line": 4435
            },
            {
              "path": "crates/spt-daemon/src/msg.rs",
              "line": 1223
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WAKE-RESUME-LEG",
      "title": "A-2 (REMOTE-TRUTH triage §A-2 + ADR-0033): the daemon reconcile gains a WAKE-RESUME LEG — an endpoint whose rest INTENT is Active but whose harness session is COLD (status != online) is resumed by the daemon via the adapter's [session.resume] template using the LAST LEDGER session id, so a bare `spt wake <id>` on a suspended live agent actually brings it back (today: reconcile_once start-arm hosts ONLY status==online (livehost.rs:199), so a woken-but-unbound endpoint is skipped forever — neither status reaches online nor does reconcile re-host). This is the ADR-0033 LIFT: the thin `spt wake` edge writes rest intent, the DAEMON does the work. Mirrors shellwake::resolve_wake (read rest state, live-pid double-launch guard, launch, NEVER flip status — the harness self-binds → online). The leg reads the recorded adapter (D-2, REQ-SESSION-ADAPTER-RECORDED); an UNREGISTERED recorded adapter is the Q5 daemon-variant refuse: do NOT spawn, record a LOUD host_error report (F-1 naming the adapter + `spt adapter add`), never silent, never fallback-spawn on a different adapter. BINDS: (1) status=online is set ONLY by a real bind — the resume leg NEVER stamps it (CONTEXT liveness truth; the A-1 effective-state derivation depends on this staying honest). (2) host_error is a REPORT of the most recent host-level failure, NEVER a liveness input — neither liveness nor advertised_status reads it (host_error + online still derives Active); cleared on a successful host/bind; the existing silent `continue` on a deregistered online adapter (livehost.rs:205) folds into the same field. (3) the resume-pid guard marker is CUSTODY-ONLY (F-030 nested-record discipline) — never a liveness input. cold-with-no-ledger-row degrades benign (loud-logged skip, no crash, today's behavior). Single-node; C-2 picker Wake-now unblocks after. --wait is a SEPARATE rider (REQ-WAKE-WAIT).",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 217
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 321
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 358
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 190
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 479
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 3538
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1962
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1992
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 2021
            },
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 2044
            },
            {
              "path": "crates/spt/tests/twohost_cli.rs",
              "line": 628
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1914
            },
            {
              "path": "crates/spt-daemon/src/registryhost.rs",
              "line": 1821
            },
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 1037
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WAKE-WAIT",
      "title": "A-2 rider (REMOTE-TRUTH triage §A-2): `spt endpoint wake --wait` blocks on the REAL bind (status reaches online) after the daemon wake-resume lift (REQ-WAKE-RESUME-LEG), instead of the DEFAULT accepted-not-bound print (thin edge writes intent, daemon lifts async — ADR-0033). Reuses the F-027 bind-await machinery if/when it lands, else a bounded poll on status==online with a plain-language timeout (no core lingo, F-1). Default wake is UNCHANGED (accepted-not-bound truth). Separate chunk from the core leg (doyle A-2 ruling: C-2 needs the core leg, not --wait); F-027 bind-await stays design-only until this activates.",
      "requiredStages": [],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": false,
          "evidence": []
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-WAN-SEND-DELIVERY",
      "title": "Bug #9/#10: cross-node spt send reports SENT(WAN) but does not deliver, even on stable-IP pairs. Real root: spt send resolves the dial with id-only addr_for_node_hex (endpoint.rs:538) which forces a fresh iroh discovery round-trip every send, while the gossip pump uses cached direct addresses (dial_seeded/PeerAddrStore) so gossip stays green but send rides a marginal discovery path that cannot carry the fire-and-forget payload; the handshake completes so SENT(WAN) prints falsely. Fix: (1) route the WAN dial through the pump seeded-direct-address resolution (PeerAddrStore first, id-only fallback); (2) receiver writes its WanOutcome back so the sender confirms delivery under the QUIC deadline and only reports SENT on confirmed delivery, honest failure otherwise. Access-gate/perch/spool all verified correct (ruled out). See docs/process/NEXT-MILESTONE-BUG-TRIAGE.md #9-10.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 134
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 173
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 193
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 74
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 73
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 284
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 919
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 351
            },
            {
              "path": "crates/spt-net/src/net/wanmsg.rs",
              "line": 199
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 858
            },
            {
              "path": "crates/spt/src/wansend.rs",
              "line": 900
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WAN-SPT-HOSTED-DELIVERY",
      "title": "A WAN-ARRIVED `spt send` is DELIVERED to an spt-hosted endpoint (broker holds its PTY, NO api-listen relay), not spooled-forever. Today receive_wan (spt-daemon/wan.rs:271-276) tries deliver_tcp (the harness-hosted relay leg) then falls to spool — it has NO spt-hosted broker-inject leg, which exists ONLY in local cmd_send (REQ-SEND-SPT-HOSTED, Brain::inject_endpoint → KIND_ENDPOINT_INPUT → broker dispatch_endpoint_input → translation-binary idle-inject). So a WAN arrival to an idle spt-hosted perch with a live translation binary ALWAYS sleeps in spool until an adapter hook polls (F-023: perch verifiably idle 7min, binary healthy, zero injection). FIX: factor cmd_send's spt-hosted delivery leg into a SHARED fn; receive_wan calls it after the replay-check (wan_seen_at) + restamp (restamp_wan_user_msg), BEFORE the spool fallback. Claim discipline UNCHANGED: inject delivered=true → wan_mark_seen_at then return the existing 'delivered' wire token (no wire change); delivered=false → the existing spool-with-claim transaction. v0.14.3 LAW: the shared leg is translation-binary-ONLY, NO raw-PTY fallback — a no-binary arrival SPOOLS LOUD, never writes the PTY. (F-023, BUILD-F023-WANIDLE)",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 35
            },
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 73
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 313
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/tests/inject_control_wedge.rs",
              "line": 2875
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/inject.rs",
              "line": 194
            },
            {
              "path": "crates/spt-daemon/src/wan.rs",
              "line": 473
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WHOAMI-1",
      "title": "`spt whoami` is a thin ALIAS for `spt endpoint list` (full output: the SELF pin + the subnet roster) — the standalone bare-id command is dropped (the `id=$(spt whoami)` capture was never a real pattern: env vars don't persist between agent tool calls). The one new render: the `endpoint list` SELF pin carries the Self endpoint's authored `endpoint description` (info::read_info(...).resources) when present, inline after the liveness state. whoami stays a top-level hot-path verb (parse unchanged, REQ-MSG-9).",
      "requiredStages": [
        "doc",
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "CONTEXT.md",
              "line": 773
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6011
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 6055
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13027
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 13130
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WORKER-LIST-VISIBILITY",
      "title": "V-1 (WORKER-TRUTH triage, operator rider): worker perches leave the DEFAULT `spt endpoint list` view — they are process-local machinery, not subnet citizens; leaked-or-live worker rows rendering as permanent OFFLINE endpoints is the operator-visible symptom root. A dedicated flag (--workers) reveals them (one command + flag per the --all/--detail precedent, NOT a separate list-working command — sister divergence deliberate). Applies to the human render, --json (additive default-absent filter), and the registry/projection legs; verify-and-stop any worker gossip into the subnet registry as peer endpoints.",
      "requiredStages": [
        "impl",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2776
            },
            {
              "path": "crates/spt/src/cli.rs",
              "line": 2791
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/worker_visibility_e2e.rs",
              "line": 18
            },
            {
              "path": "crates/spt/tests/worker_visibility_e2e.rs",
              "line": 79
            }
          ]
        },
        "unit": {
          "complete": false,
          "evidence": []
        }
      }
    },
    {
      "id": "REQ-WORKER-MINTED-NAME",
      "title": "N-1 (WORKER-TRUTH triage, operator rider): worker perch identity is CORE-MINTED and parent-derived — `{parent}-w{N}` with a per-parent counter at registration (sister shape: claude_skill_owl hook_subagent_start.rs) — never the adapter-presented agent id (CC Task ids render as random-named rows). worker-start mints + echoes the id (WORKER_STARTED:{parent}-w{N}); the adapter's agent_id/agent_type ride the record as correlation METADATA, not identity. Verb-shape contract change — freeze with W-2 in ONE coordination with perri.",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/api.md",
              "line": 248
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/worker_seq.rs",
              "line": 31
            },
            {
              "path": "crates/spt-store/src/worker_seq.rs",
              "line": 39
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 45
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/worker_lifecycle_e2e.rs",
              "line": 25
            },
            {
              "path": "crates/spt/tests/worker_lifecycle_e2e.rs",
              "line": 95
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/info.rs",
              "line": 718
            },
            {
              "path": "crates/spt-store/src/worker_seq.rs",
              "line": 74
            },
            {
              "path": "crates/spt-store/src/worker_seq.rs",
              "line": 88
            },
            {
              "path": "crates/spt-store/src/worker_seq.rs",
              "line": 111
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 869
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 208
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WORKER-PICKER-EXCLUDED",
      "title": "V-2 (WORKER-TRUTH triage, operator rider): non-drivable endpoint classes never render as `spt endpoint run` picker rows — a worker perch cannot be driven, instantiated, or controlled; offering it is a lie the picker then fails on. Filter endpoint_type worker (and the psyche class if it ever surfaces — same non-drivable family) at every picker source leg, extend-not-multiply for future non-drivable classes.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 204
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 317
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 719
            },
            {
              "path": "crates/spt/src/picker/data.rs",
              "line": 729
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WORKER-REAP",
      "title": "W-3 (WORKER-TRUTH triage): worker records must not persist indefinitely past their useful life — 6 dead-pid workers leaked OFFLINE on flynn (kill-paths where SubagentStop never fires: parent killed, abort, timeout). The stored rec.pid is the ephemeral worker-start hook process (dead by design — the REQ-HAZARD-DEAD-REC-PID class; NEVER an alive-gate signal). Honest reap signals: (a) parent-session lifecycle — reap the parent's soft-stopped + orphaned workers at parent session-end/boundary and on parent-death detection (a worker cannot outlive its parent's live session); (b) a generous TTL floor since `created` as belt-and-braces. Soft-stop preservation semantics (REQ-HAZARD-SOFT-CLEANUP: results drain before reap) stay honored — reap after drain-or-expiry, never mid-flight hard-delete (cascade-wipe guard rationale stands). Sister shape: claude_skill_owl doctor D-21 orphan-worker GC.",
      "requiredStages": [
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 276
            },
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 59
            },
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 87
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 255
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-daemon/src/livehost.rs",
              "line": 1321
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 163
            },
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 173
            },
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 191
            },
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 206
            },
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 225
            },
            {
              "path": "crates/spt-store/src/worker_reap.rs",
              "line": 241
            },
            {
              "path": "crates/spt/src/api/reporting.rs",
              "line": 1258
            }
          ]
        }
      }
    },
    {
      "id": "REQ-WORKER-SID-SYMMETRIC-AUTH",
      "title": "W-2 (WORKER-TRUTH triage, operator-ruled 2026-07-06): worker verbs go sid-symmetric with every sibling id-scoped verb — worker-start mints NO token and worker-stop takes NONE (token custody is undue adapter burden, ruling via perri). Registration STORES the sid it authenticated (the parent's sid at start; today cmd_worker_start hardcodes session_id=\"\" — worker.rs:44 — so a sid-authed stop compares against empty and refuses 100%). Stop accepts the parent's CURRENT sid OR the stored registration sid (a /clear between start and stop rotates the parent's sid; either rotation endpoint is honest custody — the REQ-PSYCHE-SID-CUSTODY rotation reasoning). Under the ruling the field adapter's existing emission (worker-stop <id> --session-id <parent sid>) becomes contract-correct as-is. Publish the frozen verb shape to the docs-site with the landing wave (perri blind-builds from published docs).",
      "requiredStages": [
        "doc",
        "impl",
        "unit",
        "int"
      ],
      "stages": {
        "doc": {
          "complete": true,
          "evidence": [
            {
              "path": "docs-site/src/harness-contract/api.md",
              "line": 269
            }
          ]
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 165
            },
            {
              "path": "crates/spt/src/api/mod.rs",
              "line": 640
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 46
            }
          ]
        },
        "int": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/tests/worker_lifecycle_e2e.rs",
              "line": 26
            },
            {
              "path": "crates/spt/tests/worker_lifecycle_e2e.rs",
              "line": 95
            }
          ]
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 405
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 415
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 438
            },
            {
              "path": "crates/spt/src/api/auth.rs",
              "line": 456
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 208
            },
            {
              "path": "crates/spt/src/api/worker.rs",
              "line": 240
            }
          ]
        }
      }
    },
    {
      "id": "REQ-XTASK-SPT-BIN-TARGET-DIR",
      "title": "#13 (F026 micro, tooling): xtask `spt_bin()` (crates/xtask/src/main.rs) BUILDS `spt` via cargo (which honors CARGO_TARGET_DIR) but returns a HARDCODED `<root>/target/debug/spt` path — so under a redirected target dir (CI / isolated-gate rigs that set CARGO_TARGET_DIR to a throwaway) the binary lands in `$CARGO_TARGET_DIR/debug` while xtask looks in `<root>/target/debug` -> NotFound -> `xtask check` (docs-drift gate) spuriously fails. Workaround was running `xtask check` with CARGO_TARGET_DIR unset. FIX: a pure `target_debug_dir(root, CARGO_TARGET_DIR)` seam mirroring cargo's resolution — absolute override as-is, relative resolved against `root` (the dir cargo is invoked in), default `<root>/target` — join `debug`; `spt_bin` returns from it. See docs/process/NEXT-MILESTONE-PICKER-TRIAGE.md.",
      "requiredStages": [
        "impl",
        "unit"
      ],
      "stages": {
        "doc": {
          "complete": false,
          "evidence": []
        },
        "impl": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/xtask/src/main.rs",
              "line": 153
            },
            {
              "path": "crates/xtask/src/main.rs",
              "line": 179
            }
          ]
        },
        "int": {
          "complete": false,
          "evidence": []
        },
        "unit": {
          "complete": true,
          "evidence": [
            {
              "path": "crates/xtask/src/main.rs",
              "line": 1449
            }
          ]
        }
      }
    }
  ],
  "findings": []
}
