Skip to main content

tanstack-table

Creates headless data tables with server-side features for Cloudflare Workers, enabling efficient pagination, filtering, and sorting.

Install this skill

or
29/100

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

medium line 261

Template literal with variable interpolation in command context

SourceSKILL.md
261`/api/users?page=${pagination.pageIndex}&pageSize=${pagination.pageSize}`
medium line 322

Template literal with variable interpolation in command context

SourceSKILL.md
322`).bind(`%${search}%`, `%${search}%`).all()
medium line 337

Template literal with variable interpolation in command context

SourceSKILL.md
337return fetch(`/api/users?search=${search}`).then(r => r.json())
medium line 382

Template literal with variable interpolation in command context

SourceSKILL.md
382<table style={{ height: `${rowVirtualizer.getTotalSize()}px` }}>
medium line 392

Template literal with variable interpolation in command context

SourceSKILL.md
392transform: `translateY(${virtualRow.start}px)`,
medium line 451

Template literal with variable interpolation in command context

SourceSKILL.md
451queryFn: () => fetch(`/api/users?page=${pagination.pageIndex}`).then(r => r.json())
medium line 463

Template literal with variable interpolation in command context

SourceSKILL.md
463return fetch(`/api/users?${params}`).then(r => r.json())
medium line 523

Template literal with variable interpolation in command context

SourceSKILL.md
523? `&sortBy=${sorting[0].id}&sortOrder=${sorting[0].desc ? 'desc' : 'asc'}`
medium line 525

Template literal with variable interpolation in command context

SourceSKILL.md
525return fetch(`/api/users?page=${pagination.pageIndex}${sortParam}`).then(r => r.json())
low line 580

Fetch to external URL

SourceSKILL.md
580queryFn: () => fetch('/api/users').then(r => r.json())
medium line 671

Access to hidden dotfiles in home directory

SourceSKILL.md
671All templates available in `~/.claude/skills/tanstack-table/templates/`:
medium line 686

Access to hidden dotfiles in home directory

SourceSKILL.md
686Deep-dive guides in `~/.claude/skills/tanstack-table/references/`:
medium line 789

Access to hidden dotfiles in home directory

SourceSKILL.md
789- **Cloudflare D1 Skill:** `~/.claude/skills/cloudflare-d1/`
medium line 790

Access to hidden dotfiles in home directory

SourceSKILL.md
790- **TanStack Query Skill:** `~/.claude/skills/tanstack-query/`
low line 219

Access to .env file

SourceSKILL.md
219const { results, meta } = await context.env.DB.prepare(`
low line 227

Access to .env file

SourceSKILL.md
227const countResult = await context.env.DB.prepare(`
low line 318

Access to .env file

SourceSKILL.md
318const { results } = await context.env.DB.prepare(`
low line 786

External URL reference

SourceSKILL.md
786- **Official Docs:** https://tanstack.com/table/latest
low line 787

External URL reference

SourceSKILL.md
787- **TanStack Virtual:** https://tanstack.com/virtual/latest
Scanned on Feb 28, 2026
View Security Dashboard
Installation guide →