PixelPilot uiux-admin-dashboard.instructions.md

A set of design instructions for admin dashboards, which are interfaces used to manage systems, users, and data.

In plain words
What is it for?
Use it when designing dashboards with widgets, KPI cards, timelines, notification centers, user menus, role-based access controls, or data exports.
Why use it?
It gives consistent patterns for presenting metrics, activity, notifications, permissions, impersonation, and exports in data-heavy screens.

Instructions file for GitHub Copilot

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 instructions/dev-lou/pixelpilot/uiux-admin-dashboard
Clone the repo
git clone --depth 1 https://github.com/dev-lou/PixelPilot

Made for: GitHub Copilot.

Per session 5,067 This file is loaded in full into every session.
When invoked 5,067 The same file — it is already loaded in full.
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.05067 $0.05067
Opus 5 $0.02534 $0.02534
Sonnet 5 $0.01013 $0.01013
Haiku 4.5 $0.00507 $0.00507

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

Security

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.

vscode/.github/instructions/uiux-admin-dashboard.instructions.md · 612 lines

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-8 to --space-16 between 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-4xl or 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; }

Read the full file on GitHub · 612 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. 2d ago First seen · 612 lines · 5,067 tokens per session scan A d3460aac60be

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories