What problem does it solve? TypeScript compilation passing does not guarantee that frontend components actually receive and render real backend data. This Skill catches runtime mismatches between API responses and frontend type definitions, and detects mock data left behind in hooks, adapters, and components. ## Core Features & Use Cases - Response-to-Type Comparison: Curl the live endpoint and compare every top-level key against the corresponding TypeScript type for naming, casing, and nesting mismatches. - Full Pipeline Inspection: Trace data through api client, adapter, hook, and component layers to find stubs, empty adapters, or uncalled endpoints. - Mock Pollution Detection: Search for MOCK_ constants and setTimeout-simulated hooks that make builds pass while users see fake data. - Use Case: After a subagent builds a Dashboard page, run this verification to confirm the KPI cards render real data from /api/dashboard instead of inline MOCK_KPIS constants. ## Quick Start Verify the dashboard page by curling the backend endpoint, comparing its response fields against the frontend types, and checking that no mock data remains in the hooks or components.