This builds data tables with TanStack React Table, handling the column definitions, sorting, filtering, and pagination boilerplate you'd otherwise copy between projects. It covers both client-side and server-side rendering modes, which matters when you're deciding whether to paginate in the browser or hit the API for each page. The row actions pattern with dropdown menus is clean, and the empty state handling keeps you from shipping tables that break when there's no data. Good for admin panels, user lists, or any CRUD interface where you need more than a basic HTML table but don't want to configure everything from scratch.
npx skills add https://github.com/patricio0312rev/skills --skill table-builder