What problem does it solve?
It reduces time spent guessing by systematically tracing a failing feature from the frontend request down to the backend procedure, auth context, and database query, then applying the smallest safe fix.
Core Features & Use Cases
- End-to-end data flow tracing: Follows the path from UI components through tRPC hooks, middleware, handlers, and Drizzle queries.
- Targeted isolation: Helps narrow issues to the specific recent change set using version history signals like diffs.
- Common stack-specific failure detection: Highlights frequent causes such as Zod/Zod-v4 import mismatches, auth context/header wiring issues, TanStack Query cache invalidation gaps, and Drizzle query builder misuse.
Quick Start
Use the debug skill to analyze and fix the issue described as: Your app shows the wrong data after submitting a mutation, and the server logs indicate a validation or auth context problem.