Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/smicolon/ai-kitnpx agentmods add commands/smicolon/ai-kit/table-createWrote 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.
[](https://agentmods.dev/commands/smicolon/ai-kit/table-create)<a href="https://agentmods.dev/commands/smicolon/ai-kit/table-create"><img src="https://agentmods.dev/badge/commands/smicolon/ai-kit/table-create.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00015 | $0.02799 |
| Opus 5 | $0.00008 | $0.01399 |
| Sonnet 5 | $0.00003 | $0.00560 |
| Haiku 4.5 | $0.00002 | $0.00280 |
Grade A, and why
table-create 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.
How it starts
The opening of the file, as written. The whole thing — 414 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create TanStack Table
Create a data table component with TanStack Table, including sorting, filtering, and pagination.
Instructions
-
Gather Information (if not provided via args):
- Ask for the table name (e.g.,
PostsTable) - Ask for the feature it belongs to
- Ask what columns to include
- Ask what features to enable: sorting, filtering, pagination, row selection
- Ask for the table name (e.g.,
-
Create Column Definitions in
src/features/{feature}/components/{Name}Columns.tsx:import { createColumnHelper } from '@tanstack/react-table' import { Link } from '@tanstack/react-router' import type { {Feature} } from '../types' const columnHelper = createColumnHelper<{Feature}>() export const {name}Columns = [ columnHelper.accessor('title', { header: ({ column }) => ( <button onClick={() => column.toggleSorting()} className="flex items-center gap-1" > Title {column.getIsSorted() === 'asc' && ' ↑'} {column.getIsSorted() === 'desc' && ' ↓'} </button> ), cell: (info) => ( <Link to="/{feature}/$id" params={{ id: info.row.original.id }} className="hover:underline" > {info.getValue()} </Link> ), }), columnHelper.accessor('status', { header: 'Status', cell: (info) => ( <span className={`badge badge-${info.getValue()}`}> {info.getValue()} </span> ), filterFn: 'equals', }), columnHelper.accessor('createdAt', { header: 'Created', cell: (info) => new Date(info.getValue()).toLocaleDateString(), sortingFn: 'datetime', }), columnHelper.display({ id: 'actions', header: 'Actions', cell: ({ row }) => ( <div className="flex gap-2"> <Link to="/{feature}/$id/edit" params={{ id: row.original.id }}> Edit </Link> <button onClick={() => handleDelete(row.original.id)}> Delete </button> </div> ), }), ]
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.
- 4d ago First seen · 414 lines · 15 tokens per session scan A 3cbc31210703
table-create is a command published in the GitHub repository smicolon/ai-kit (6 stars, last pushed 4d ago), licensed MIT. It adds 15 tokens to every session and 2,799 once invoked, about $0.0001 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-09-03.
Other commands, from other repositories
prototype-loop
Enter leveraged-prototype focus mode — focus marker plus normal watch/rebuild loop for visual-parity work and batch upstream framework gap-fixes.
a11y-audit-react
Identify accessibility violations in React components and provide actionable remediation aligned with WCAG 2.2 Level AA. This is the guided audit workflow that applies the standards defined in the a11y-automation and react-components rules.
create-variant
Add a new variant to an existing shadcn/ui component.
next-upgrade
Structured workflow for upgrading Next.js applications across major versions. Use when migrating a Next.js project from one major version to another (e.g., 13 to 14, 14 to 15, 15 to 16). Covers codemod automation, breaking change detection, incremental migration paths, and post-upgrade validation.
nextjs-cache
Get guidance on Next.js Cache Components setup.
nextjs-routes
List all routes in the Next.js application.