aceternity-ui
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
TanStack Table v8 headless data tables with server-side features for Cloudflare Workers + D1. Use for pagination, filtering, sorting, virtualization, or encountering state management, TanStack Query coordination, URL sync errors.
$ npx -y skills add secondsky/claude-skills --skill tanstack-table --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tanstack-tableContext preview
The summary Claude sees to decide when to auto-load this skill.
TanStack Table v8 headless data tables with server-side features for Cloudflare Workers + D1. Use for pagination, filtering, sorting, virtualization, or encountering state management, TanStack Query coordination, URL sync errors.
name: tanstack-table
description: TanStack Table v8 headless data tables with server-side features for Cloudflare Workers + D1. Use for pagination, filtering, sorting, virtualization, or encountering state management, TanStack Query coordination, URL sync errors.
license: MIT
allowed-tools: [Bash, Read, Write, Edit]
metadata:
version: 1.1.0
author: Claude Skills Maintainers
last-verified: 2025-12-09
production-tested: true
keywords:
- tanstack table
- react table
- data table
- datagrid
- headless table
- server-side pagination
- server-side filtering
- server-side sorting
- tanstack query integration
- cloudflare d1
- cloudflare workers
- virtualization
- tanstack virtual
- large datasets
- table state management
- url state sync
- column configuration
- typescript table
- react table v8
- headless ui
- data visualization
- pagination
- filtering
- sortingBuild production-ready, headless data tables with TanStack Table v8, optimized for server-side patterns and Cloudflare Workers integration.
---
**Auto-triggers when you mention:**
**Use this skill when:**
---
Documents and prevents 6+ common issues: 1. Server-side state management confusion 2. TanStack Query integration errors (query key coordination) 3. Column filtering with API backends 4. Manual sorting setup mistakes 5. URL state synchronization issues 6. Large dataset performance problems 7. Over-controlling table state (columnSizingInfo) causing extra renders
---
# Core table library bun add @tanstack/react-table@latest # Optional: For virtualization (1000+ rows) bun add @tanstack/react-virtual@latest # Optional: For fuzzy/global search bun add @tanstack/match-sorter-utils@latest
**Latest verified versions (as of 2025-12-09):**
**React support:** Works on React 16.8+ through React 19; React Compiler is not supported.
import { useReactTable, getCoreRowModel, ColumnDef } from '@tanstack/react-table'
import { useMemo } from 'react'
interface User {
id: string
name: string
email: string
}
const columns: ColumnDef<User>[] = [
{ accessorKey: 'id', header: 'ID' },
{ accessorKey: 'name', header: 'Name' },
{ accessorKey: 'email', header: 'Email' },
]
function UsersTable() {
// CRITICAL: Memoize data and columns to prevent infinite re-renders
const data = useMemo<User[]>(() => [
{ id: '1', name: 'Alice', email: 'alice@example.com' },
{ id: '2', name: 'Bob', email: 'bob@example.com' },
], [])
const table = useReactTable({
data,
columns,
getCoreRowModel: getCoreRowModel(), // Required
})
return (
<table>
<thead>
{table.getHeaderGroups().map(headerGroup => (
<tr key={headerGroup.id}>
{headerGroup.headers.map(header => (
<th key={header.id}>
{header.isPlaceholder ? null : header.column.columnDef.header}
</th>
))}
</tr>
))}
</thead>
<tbody>
{table.getRowModel().rows.map(row => (
<tr key={row.id}>
{row.getVisibleCells().map(cell => (
<td key={cell.id}>
{cell.renderValue()}
</td>
))}
</tr>
))}
</tbody>
</table>
)
}---
**Cloudflare Workers API Endpoint:**
// src/routes/api/users.ts
import { Env } from '../../types'145 production-ready skills for Claude Code CLI 🔌 Platform / Harness Support These plugins ship as Claude Code marketplace plugins (.claude-plugin/ manifests) and Codex CLI plugins (.codex-plugin/ manifests).
Repo: secondsky/claude-skills
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Secure API authentication with JWT, OAuth 2.0, API keys. Use for authentication systems, third-party integrations, service-to-service communication, or…
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions,…
Verifies API contracts between services using consumer-driven contracts, schema validation, and tools like Pact. Use when testing microservices communication,…
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs,…
Implements standardized API error responses with proper status codes, logging, and user-friendly messages. Use when building production APIs, implementing…