tanstack-table
Creates headless data tables with server-side features for Cloudflare Workers, enabling efficient pagination, filtering, and sorting.
Install this skill
Security score
The tanstack-table skill was audited on Feb 28, 2026 and we found 19 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 261 | `/api/users?page=${pagination.pageIndex}&pageSize=${pagination.pageSize}` |
Template literal with variable interpolation in command context
| 322 | `).bind(`%${search}%`, `%${search}%`).all() |
Template literal with variable interpolation in command context
| 337 | return fetch(`/api/users?search=${search}`).then(r => r.json()) |
Template literal with variable interpolation in command context
| 382 | <table style={{ height: `${rowVirtualizer.getTotalSize()}px` }}> |
Template literal with variable interpolation in command context
| 392 | transform: `translateY(${virtualRow.start}px)`, |
Template literal with variable interpolation in command context
| 451 | queryFn: () => fetch(`/api/users?page=${pagination.pageIndex}`).then(r => r.json()) |
Template literal with variable interpolation in command context
| 463 | return fetch(`/api/users?${params}`).then(r => r.json()) |
Template literal with variable interpolation in command context
| 523 | ? `&sortBy=${sorting[0].id}&sortOrder=${sorting[0].desc ? 'desc' : 'asc'}` |
Template literal with variable interpolation in command context
| 525 | return fetch(`/api/users?page=${pagination.pageIndex}${sortParam}`).then(r => r.json()) |
Fetch to external URL
| 580 | queryFn: () => fetch('/api/users').then(r => r.json()) |
Access to hidden dotfiles in home directory
| 671 | All templates available in `~/.claude/skills/tanstack-table/templates/`: |
Access to hidden dotfiles in home directory
| 686 | Deep-dive guides in `~/.claude/skills/tanstack-table/references/`: |
Access to hidden dotfiles in home directory
| 789 | - **Cloudflare D1 Skill:** `~/.claude/skills/cloudflare-d1/` |
Access to hidden dotfiles in home directory
| 790 | - **TanStack Query Skill:** `~/.claude/skills/tanstack-query/` |
Access to .env file
| 219 | const { results, meta } = await context.env.DB.prepare(` |
Access to .env file
| 227 | const countResult = await context.env.DB.prepare(` |
Access to .env file
| 318 | const { results } = await context.env.DB.prepare(` |
External URL reference
| 786 | - **Official Docs:** https://tanstack.com/table/latest |
External URL reference
| 787 | - **TanStack Virtual:** https://tanstack.com/virtual/latest |