api-not-found

Installation
SKILL.md

This skill builds on core and table-features. Treat the installed package—not remembered docs—as exact API truth.

Setup

import { readFile } from 'node:fs/promises'

const packageJson = JSON.parse(
  await readFile('node_modules/@tanstack/table-core/package.json', 'utf8'),
)
const entrypoint = await readFile(
  'node_modules/@tanstack/table-core/dist/index.d.ts',
  'utf8',
)
console.log(packageJson.version, entrypoint.includes('rowSortingFeature'))

Core Patterns

Installs
20
Repository
tanstack/table
GitHub Stars
28.4K
First Seen
Aug 4, 2026
api-not-found — tanstack/table