Builds tables and data grids for displaying tabular information, from simple HTML tables to complex enterprise data grids. Use when creating tables, implementing sorting/filtering/pagination, handling large datasets (10-1M+ rows), building spreadsheet-like interfaces, or designing data-heavy components. Provides performance optimization strategies, accessibility patterns (WCAG/ARIA), responsive designs, and library recommendations (TanStack Table, AG Grid).
npx skills add https://github.com/ancoleman/ai-design-components --skill building-tables
This skill enables systematic creation of tables and data grids from simple HTML tables to enterprise-scale virtualized grids handling millions of rows. It provides clear decision frameworks based on data volume and required features, ensuring optimal performance, accessibility, and responsive design across all implementations.
Activate this skill when:
Select implementation tier based on data volume:
<100 rows → Simple HTML table with progressive enhancement
100-1,000 rows → Client-side features (sort, filter, paginate)
1,000-10,000 → Server-side operations with API pagination
10,000-100,000 → Virtual scrolling with windowing
>100,000 rows → Enterprise grid with streaming and workers
For detailed selection criteria, reference references/selection-framework.md.
For simple, read-only data display:
<table> structurereferences/basic-tables.md for patternsExample: examples/simple-responsive-table.tsx
For feature-rich interactions:
references/interactive-tables.mdExample: examples/sortable-filtered-table.tsx
For massive datasets:
references/advanced-grids.mdExample: examples/virtual-scrolling-grid.tsx
Critical performance thresholds:
To benchmark performance:
# Generate test data
python scripts/generate_mock_data.py --rows 10000
# Analyze rendering performance
node scripts/analyze_performance.js
For optimization strategies, reference references/performance-optimization.md.
references/sorting-filtering.mdreferences/sorting-filtering.mdreferences/pagination-strategies.mdreferences/selection-patterns.mdreferences/editing-patterns.mdscripts/export_table_data.pyEssential WCAG compliance:
To validate accessibility:
node scripts/validate_accessibility.js
For complete requirements, reference references/accessibility-patterns.md.
Four proven strategies:
See examples/responsive-patterns.tsx for implementations.
Reference references/responsive-strategies.md for details.
Best for custom designs and complete control:
npm install @tanstack/react-table
See examples/tanstack-basic.tsx for setup.
Best for feature-complete solutions:
npm install ag-grid-react
See examples/ag-grid-enterprise.tsx for setup.
For detailed comparison, reference references/library-comparison.md.
Tables use the design-tokens skill for consistent theming:
Supports light, dark, high-contrast, and custom themes.
Reference the design-tokens skill for theme switching.
Start with the example matching the requirements:
simple-responsive-table.tsx # Basic HTML table
sortable-filtered-table.tsx # With sorting and filtering
paginated-server-table.tsx # Server-side pagination
virtual-scrolling-grid.tsx # High-performance for 100K+ rows
editable-data-grid.tsx # Inline editing with validation
grouped-aggregated-table.tsx # Hierarchical with aggregations
Generate test data:
python scripts/generate_mock_data.py --rows 100000 --columns 20
Benchmark performance:
node scripts/analyze_performance.js --rows 10000
Validate accessibility:
node scripts/validate_accessibility.js
Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling
Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.
Take ancoleman/building-tables from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm.
Without those the skill loads but fails at the first command.