Architectural Analysis Instructions Perform comprehensive architectural audit focused on structural issues, dead code, duplication, and systemic problems. Phase 1: Discovery & Planning Step 1: Map Codebase Structure Step 2: Identify Entry Points - Main application entry ( , , ) - API routes/controllers - Public exports ( files) - CLI entry points - Test files Step 3: Create Comprehensive File List Use Glob to find all source files. Create todo list with one item per file to analyze. Phase 2: Dead Code Detection For EACH file in the todo list: Step 1: Identify Exports - What does this file exp…