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.
npx agentmods add instructions/dev-lou/pixelpilot/uiux-data-tablegit clone --depth 1 https://github.com/dev-lou/PixelPilotWhat 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 | $0.01606 | $0.01606 |
| Opus 5 | $0.00803 | $0.00803 |
| Sonnet 5 | $0.00321 | $0.00321 |
| Haiku 4.5 | $0.00161 | $0.00161 |
Grade A, and why
PixelPilot uiux-data-table.instructions.md 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 yesterday.
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 — 246 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI/UX Data Table & Kanban 2026
Data tables (TanStack Table), sortable, filterable, paginated, row selection, virtualization, filter sidebars, bulk actions, activity logs, and kanban boards.
1. DATA TABLE (TanStack Table Headless)
// React Example with TanStack Table
import { useReactTable, getCoreRowModel, flexRender } from '@tanstack/react-table';
function DataTable({ data, columns }) {
const table = useReactTable({ data, columns, getCoreRowModel: getCoreRowModel() });
return (
<div class="table-container">
<table class="table">
<thead>
{table.getHeaderGroups().map(headerGroup => (
<tr key={headerGroup.id}>
{headerGroup.headers.map(header => (
<th key={header.id} class="table__th">
{flexRender(header.column.columnDef.header, header.getContext())}
</th>
))}
</tr>
))}
</thead>
<tbody>
{table.getRowModel().rows.map(row => (
<tr key={row.id} class="table__tr">
{row.getVisibleCells().map(cell => (
<td key={cell.id} class="table__td">
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</td>
))}
</tr>
))}
</tbody>
</table>
</div>
);
}
.table-container {
width: 100%;
overflow-x: auto;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
background: var(--surface);
}
.table {
width: 100%;
border-collapse: collapse;
font-size: var(--text-sm);
}
.table__th {
text-align: left;
padding: var(--space-4);
background: var(--surface-up);
color: var(--muted);
font-weight: 600;
border-bottom: 1px solid var(--border);
}
.table__tr {
border-bottom: 1px solid var(--border);
transition: background var(--dur-micro) var(--ease-out);
}
.table__tr:hover { background: var(--surface-up); }
.table__td { padding: var(--space-4); color: var(--text); }
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.
- yesterday First seen · 246 lines · 1,606 tokens per session scan A ea0dcef485f3
PixelPilot uiux-data-table.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 1,606 tokens to every session, about $0.0080 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-31.
Other instructions, from other repositories
DevoxxGenieIDEAPlugin GEMINI.md
Instructions for devoxx/DevoxxGenieIDEAPlugin, a project described as: DevoxxGenie is an agentic plugin for IntelliJ IDEA that uses local LLM's (Ollama, LMStudio, GPT4All, Jan and Llama.cpp) and Cloud based LLMs to help review, test, explain your project code. Latest version now also supports Spec Driven Development…
ralphctl CLAUDE.md
Instructions for lukas-grigis/ralphctl, covering ralphctl — agent harness for ai coding tasks, build & run, read on demand, architecture invariants and implementation style.
rails-ai-context AGENTS.md
Instructions for crisnahine/rails-ai-context, covering rails-ai-context, agent skills, issue tracker, triage labels and domain docs.
research-skills CLAUDE.md
Instructions for neuromechanist/research-skills, a project described as: A skill marketplace for academic research: from project management to literature review, making figures and writing reports and grants.
rosetta where-does-this-go.instructions.md
Canonical routing rule for where information belongs: GitHub issue, briefing, backlog, DESIGN, MANUAL, CHANGELOG, VALIDATION, or CLAUDE.
rosetta capture-undone-work.instructions.md
When work uncovers breakage, workarounds, risks, or deferred items, record them in project files before finishing.