Arch Review Dashboard (removed)
Operator arch-review UI - hard-deleted 2026-06-11 as dead code.
Removed 2026-06-11. The operator-only Architectural Intelligence Review Dashboard described below (/admin/arch/review, its three /api/admin/arch/review/* endpoints, and src/lib/arch/review.ts) was hard-deleted along with the screen_architecture and screen_nodes feature flags, which had been permanently off - the read path behind them never worked end-to-end and had no consumers. This page is kept only so the old surface remains searchable.
The dashboard gave platform operators a cross-tenant view of the knowledge graph: new observations as they arrived, deviations from established patterns grouped by project, and a histogram of how confident the system was in its current graph state. None of that operator UI exists today.
What is still real: the underlying read path (src/lib/arch/query.ts) was not deleted - it is now consumed by the capability.architecture workflow node and the nightly synthesis job, not by an operator dashboard. See Arch Query Layer for the surface that replaced it, and the capability.architecture node for how a project-scoped agent session reaches the same knowledge graph today.
What was removed
- The admin page at
/admin/arch/reviewand its client component GET /api/admin/arch/review/recent,/drift-summary,/confidence-histogramcreateArchReviewSdk()and the rest ofsrc/lib/arch/review.ts- The project-level
/architecturepage and the/nodesauthoring surfaces (catalog, reviews, marketplace) that shared the same dead-flag cleanup - The
screen_architectureandscreen_nodesfeature flags and their nav entries
There is no tenant-scoped or operator-scoped replacement UI for cross-project drift/confidence review. If you need that visibility today, query graph_nodes and observations directly - see Knowledge Graph Store.
Related pages
- Arch Query Layer - the platform-native read path over
graph_nodesthat survived - Tech-Stack Fingerprinting - how observations are fingerprinted for cross-project transfer candidacy
- AST Extraction - how
file_operationobservations become graph nodes - Knowledge Graph Store - the
graph_nodesandobservationstables this dashboard used to read from