What problem does it solve? Most implementation bugs come from wrong assumptions rather than logic errors: misremembered API response structures, unexpected component lifecycle behavior inside modals, or missing fields on historical records. This Skill provides a post-implementation reality check that validates your code against the actual source, not your memory. ## Core Features & Use Cases - API Contract Verification: Confirms response structures, parameter names, and pagination fields by reading the actual Controller/Handler source code. - Component Context Checks: Detects state-loss bugs caused by Modal/Drawer containers destroying child components on close. - Data History & Flow Tracing: Validates new fields against old records and traces complete frontend-to-database data paths including null-value scenarios. - Verification Tests: Requires runnable tests for critical assumptions, prioritizing fragile paths over happy paths. - Use Case: After adding a filter that relies on a newly added database column, run this check to discover that historical records have empty values for that field and design a fallback query path before shipping. ## Quick Start Ask the AI to run the check-impl reality check on my current git changes to verify my API and data assumptions are correct.