migrate-v8-to-v9

migrate-v8-to-v9 is a skill for Claude Code, Codex from TanStack/table. It costs 58 tokens per session (2,774 once invoked), scanned A, original, MIT.

A checklist for moving an Angular TanStack Table application from version 8 to version 9. Angular is a web framework, and a major-version migration may require coordinated code and API changes.

In plain words
What is it for?
Use it to replace old table setup APIs, register features explicitly, update signal-based state and rendering, and migrate table types and methods.
Why use it?
It reduces missed breaking changes across table creation, features, state, rendering, types, sorting, sizing, and selection.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/tanstack/table/migrate-v8-to-v9
Any agent
npx skills add TanStack/table --skill migrate-v8-to-v9
Clone the repo
git clone --depth 1 https://github.com/TanStack/table

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for migrate-v8-to-v9

README.md
[![agentmods](https://agentmods.dev/badge/skills/tanstack/table/migrate-v8-to-v9.svg)](https://agentmods.dev/skills/tanstack/table/migrate-v8-to-v9)
Your own site
<a href="https://agentmods.dev/skills/tanstack/table/migrate-v8-to-v9"><img src="https://agentmods.dev/badge/skills/tanstack/table/migrate-v8-to-v9.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,774 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00058 $0.02774
Opus 5 $0.00029 $0.01387
Sonnet 5 $0.00012 $0.00555
Haiku 4.5 $0.00006 $0.00277

Measured 4d ago against content hash 0827f69947d5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

migrate-v8-to-v9 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/angular-table/skills/migrate-v8-to-v9/SKILL.md · 195 lines

How it starts

The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Use this as the complete breaking-change checklist. V9 is the current API; construction, feature registration, state, rendering, and types must migrate together.

Framework prerequisite: Angular 19 or newer (@angular/core >=19).

  1. Replace createAngularTable with injectTable inside an Angular injection context.
  2. Hoist static/expensive features and columns outside the reactive initializer.
  3. Move features, row models, and function registries into tableFeatures.
  4. Update signal/atom state reads and FlexRender usage.
  5. Apply every shared API and type rename below.
  6. Treat stockFeatures as a temporary audit bridge; explicit features are the production target.
const features = tableFeatures({
  rowSortingFeature,
  sortedRowModel: createSortedRowModel(),
  sortFns: { alphanumeric: sortFn_alphanumeric },
})

class TableCmp {
  readonly table = injectTable(() => ({
    features,
    columns,
    data: this.data(),
  }))
}

Construction and Feature Registration

v8 v9
createAngularTable(() => options) injectTable(() => options) in injection context
All features bundled Required features: tableFeatures({...})
getCoreRowModel() option Remove; core row model is automatic
get*RowModel() table options create*RowModel() slots in tableFeatures
sortingFns table option sortFns feature slot
Top-level onStateChange Per-slice callbacks, external atoms, or store subscription

The initializer reruns when signals read inside it change and calls setOptions; do not rebuild columns or features there.

Feature imports are cellSelectionFeature, columnFilteringFeature, globalFilteringFeature, rowSortingFeature, rowPaginationFeature, rowSelectionFeature, rowExpandingFeature, rowPinningFeature, columnPinningFeature, columnVisibilityFeature, columnOrderingFeature, columnSizingFeature, columnResizingFeature, rowAggregationFeature, columnGroupingFeature, and columnFacetingFeature. APIs are feature-gated. Put a feature before its dependent slot in the same tableFeatures call. Aggregation is independent from grouping: register rowAggregationFeature for aggregation APIs and add columnGroupingFeature only for grouped rows.

Read the full file on GitHub · 195 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 195 lines · 58 tokens per session scan A 0827f69947d5

Subscribe to this mod's changes

migrate-v8-to-v9 is a skill published in the GitHub repository TanStack/table (28,402 stars, last pushed 3d ago), licensed MIT. It adds 58 tokens to every session and 2,774 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

deck-swiss-international

16 列网格 + 单一饱和 accent + 22 个锁死版面 (Klein Blue / Lemon / Mint / Safety Orange).

nexu-io/html-anything · 38 tokens

enum-struct

Create, modify, and introspect UserDefinedEnums and UserDefinedStructs (EnumStructService). Use when the user asks to create a Blueprint enum or struct, add enum values or struct members, or inspect an enum/struct's fields. Useful for defining a DataTable row struct.

kevinpbuckley/VibeUE · 62 tokens

grid-lite-to-igr-grid-migration

Migrate from Grid Lite (IgrGridLite) to the premium Ignite UI for React Data Grid (IgrGrid) — imports, theme CSS, column and template API changes, sorting and filtering, remote data replacing dataPipelineConfiguration, and the toolbar/export APIs. Use when Grid Lite lacks a needed feature such as editing, selection…

IgniteUI/igniteui-react · 89 tokens

igniteui-react-customize-theme

Theme Ignite UI for React with CSS custom properties — brand palette, dark mode, size/spacing/roundness, per-component tokens, and scoped themes, optionally via the igniteui-theming MCP server. Use when applying brand colors, switching light/dark, overriding a component's appearance (grid headers, buttons, avatars)…

IgniteUI/igniteui-react · 82 tokens

autumn-framework-2x

Autumn 2.0.0 line ONLY: JDK 8, Spring Boot 2.7.18, MyBatis-Plus 2.x, javax. namespace. Use on autumn master (artifact 2.0.0) or business apps pinned to that stack. NOT for Autumn 3.0.0 / JDK 17+ / Spring Boot 3.5 / Jakarta — use autumn-framework-3x on the 3.0.0 branch when available. Enforces docs/AISTANDARDS.md +…

henryxm/autumn · 724 tokens

webgl-expert

Expert guide for WebGL API development including 3D graphics, shaders (GLSL), rendering pipeline, textures, buffers, performance optimization, and canvas rendering. Use when working with WebGL, 3D graphics, canvas rendering, shaders, GPU programming, or when user mentions WebGL, OpenGL ES, GLSL, vertex shaders…

12-Studio/Tackl · 87 tokens