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-admin-dashboardgit 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.05067 | $0.05067 |
| Opus 5 | $0.02534 | $0.02534 |
| Sonnet 5 | $0.01013 | $0.01013 |
| Haiku 4.5 | $0.00507 | $0.00507 |
Grade A, and why
PixelPilot uiux-admin-dashboard.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 2d 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 — 612 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI/UX Admin Dashboard 2026
Dashboard widget grids, RBAC UI, KPI cards, activity timelines, notification centers, user menus, impersonation modes, and data exports.
Modern Dashboard Visual Principles (2026)
For any admin dashboard, analytics page, or data‑heavy interface, the AI MUST follow these visual rules by default (unless the user explicitly asks for “simple” or “compact”):
- Asymmetric grid – never centred columns. Use bento‑style uneven spans (e.g., one wide chart, two narrow KPI cards).
- Generous whitespace – use
--space-8to--space-16between sections, not tight packing. - Floating elements – cards should have
box-shadow: var(--shadow-lg)and rounded corners (--radius-lg), with a subtle background that contrasts with the page background. - Breakout containers – charts or tables should occasionally break out of the main container width (use negative margins or full‑bleed backgrounds).
- Large, bold typography – KPI values should be
--text-4xlor larger, with thin font weight. - Glassmorphism / frosted panels – use
backdrop-filter: blur(12px)for sidebars or top bars, with a semi‑transparent background. - Minimal borders – prefer shadows over borders. Only use borders when necessary for separation.
- No centred text except for specific callouts. Left‑align or use justified where appropriate.
The AI must generate layouts that look like modern SaaS dashboards (e.g., Linear, Vercel, Stripe), not like Bootstrap 4 admin templates.
1. DASHBOARD WIDGET GRID (Draggable & Resizable)
<div class="dashboard-grid" id="dashboard-grid">
<div class="widget" data-size="small">
<header class="widget__header">
<h3>Revenue</h3>
<button class="widget__drag-handle"><i data-lucide="grip-vertical"></i></button>
</header>
<div class="widget__content">...</div>
</div>
</div>
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
grid-auto-rows: 240px;
gap: var(--space-6);
}
.widget {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
display: flex;
flex-direction: column;
transition: var(--transition-base);
box-shadow: var(--shadow-sm);
}
.widget:hover { box-shadow: var(--shadow-md); }
.widget__header {
padding: var(--space-4);
border-bottom: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
}
.widget__content { padding: var(--space-4); flex: 1; }
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.
- 2d ago First seen · 612 lines · 5,067 tokens per session scan A d3460aac60be
PixelPilot uiux-admin-dashboard.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 5,067 tokens to every session, about $0.0253 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
ui-ux-design-pro-skill CLAUDE.md
Instructions for saifyxpro/ui-ux-design-pro-skill, covering project overview, cli commands, full design system generation (markdown output), search across all databases (sub-50ms) and audit ui code quality.
UIX CLAUDE.md
Instructions for Deepractice/UIX, covering uix project rules, design system: lucid ui, colors, forbidden and preferred patterns.
wonder-blocks storybook.instructions.md
Storybook best practices for Wonder Blocks component stories.
wonder-blocks AGENTS.md
Instructions for Khan/wonder-blocks, covering wonder blocks – agentic workflows & storybook mcp, installing the mcp (consumer setup), storybook mcp server, when it’s available and mcp endpoint.
openbridge-webcomponents watch-radial-instruments.instructions.md
Instructions for Ocean-Industries-Concept-Lab/openbridge-webcomponents, covering watch & radial instruments, architecture overview, key principle: logic in watch.ts, instruments stay thin, shared sibling modules and layering & stacking pattern.
aicanvas CLAUDE.md
Instructions for uiNerd16/aicanvas, covering ai canvas — global rules, what this project is, how work is organized, secrets & credentials — this is an open-source repo and tech stack.