# Temporary local web review surface

Add an optional browser surface alongside the TUI overlay so review can use real scrolling, multi-line comment editing, and GitHub-like chrome without replacing the terminal panel.

- Entry points: `/code-eye-web` and `review` with `surface: "web"`.
  ADR-0006 supersedes the original walkthrough-first behavior:
  `/code-eye-web [quick|deep]` now requests a structured review report before
  opening. Legacy walkthrough stops remain supported through the tool's
  compatibility fields. The default `review` surface is now the local browser
  so conversation-ledger features are consistent across hosts; pi agents may
  still request `surface: "tui"` explicitly. The former
  `/code-eye` and `/code-eye-walkthrough` Pi commands are no longer registered;
  `/code-eye-web` is the sole user-facing Pi command.
- Implementation: ephemeral `127.0.0.1` HTTP server for one review session; open the system browser; shut down when the user submits/closes or the tool/command ends.
- Bind loopback only; no auth beyond "local process"; no cloud hosting.
- Data model is shared with TUI (`ReviewComment`, commit/diff loaders). Web is a view, not a second product.
- Same close semantics as ADR-0002: only user comments leave the session toward the agent.

Rejected for now: embedding in Orca's browser specifically, long-lived daemon, or publishing a public URL.
