What problem does it solve?
When working with TanStack Table v9, developers hit type errors, undefined feature methods, or missing exports—often because they rely on remembered v8 APIs or outdated examples. This Skill diagnoses those failures by treating the installed package as the exact API truth instead of guessing.
Core Features & Use Cases
- Export Tracing: Trace any missing export back to its source in the installed
dist/index.d.ts files of @tanstack/table-core or framework adapters.
- Feature Gating Checks: Verify whether an API is absent because the corresponding feature was omitted from the
tableFeatures registry, not because it was removed.
- v8-to-v9 Migration Fixes: Correct common mistakes like using
getSortedRowModel() instead of the v9 create* factories and named feature slots.
- Use Case: Your code throws a type error on
row.getValue after upgrading to v9. Use this Skill to inspect the installed package, discover that instance methods live on prototypes, and fix the call pattern.
Quick Start
Ask the AI to diagnose why a TanStack Table v9 export or instance method is missing by inspecting the installed package in node_modules.