Borrowing it
Nothing to install: this file belongs to dev-lou/PixelPilot. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/dev-lou/PixelPilot/main/vscode/.github/instructions/uiux-navigation-extras.instructions.mdgit clone --depth 1 https://github.com/dev-lou/PixelPilotWrote 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/instructions/dev-lou/pixelpilot/uiux-navigation-extras)<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-navigation-extras"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-navigation-extras.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.01608 | $0.01608 |
| Opus 5 | $0.00804 | $0.00804 |
| Sonnet 5 | $0.00322 | $0.00322 |
| Haiku 4.5 | $0.00161 | $0.00161 |
Grade A, and why
PixelPilot uiux-navigation-extras.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 3d 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 — 224 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI/UX Navigation Extras 2026
Breadcrumbs, pagination, tabs, accordions, collapsible sidebars, bottom sheets, and command palettes (cmdk).
1. BREADCRUMBS (A11y-First)
<nav aria-label="Breadcrumb" class="breadcrumb">
<ol class="breadcrumb__list">
<li class="breadcrumb__item"><a href="/">Home</a></li>
<li class="breadcrumb__item"><a href="/products">Products</a></li>
<li class="breadcrumb__item" aria-current="page">New Arrivals</li>
</ol>
</nav>
.breadcrumb__list {
display: flex;
list-style: none;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--muted);
}
.breadcrumb__item:not(:last-child)::after {
content: '/';
margin-left: var(--space-2);
opacity: 0.5;
}
.breadcrumb__item a:hover { color: var(--accent); }
.breadcrumb__item[aria-current="page"] { color: var(--text); font-weight: 600; }
2. PAGINATION (Numbered + Selectors)
<nav aria-label="Pagination" class="pagination">
<button class="btn btn--icon" aria-label="Previous page"><i data-lucide="chevron-left"></i></button>
<div class="pagination__pages">
<button class="btn btn--page active" aria-current="page">1</button>
<button class="btn btn--page">2</button>
<span class="pagination__ellipsis">...</span>
<button class="btn btn--page">12</button>
</div>
<button class="btn btn--icon" aria-label="Next page"><i data-lucide="chevron-right"></i></button>
<select class="pagination__size" aria-label="Items per page">
<option>10</option><option>25</option><option>50</option>
</select>
</nav>
.pagination {
display: flex;
align-items: center;
gap: var(--space-4);
padding-block: var(--space-4);
}
.btn--page {
width: 36px; height: 36px;
border-radius: var(--radius-sm);
transition: var(--transition-base);
}
.btn--page.active { background: var(--accent); color: white; }
3. TABS (Animated Indicator)
<div class="tabs" id="main-tabs">
<div role="tablist" class="tabs__list">
<button role="tab" aria-selected="true" aria-controls="panel-1" id="tab-1">Overview</button>
<button role="tab" aria-selected="false" aria-controls="panel-2" id="tab-2">Settings</button>
<div class="tabs__indicator"></div>
</div>
<div role="tabpanel" id="panel-1" aria-labelledby="tab-1">...</div>
<div role="tabpanel" id="panel-2" aria-labelledby="tab-2" hidden>...</div>
</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.
- 3d ago First seen · 224 lines · 1,608 tokens per session scan A 9f9f382b6520
PixelPilot uiux-navigation-extras.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 5mo ago), licensed MIT. It adds 1,608 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-09-03.
Other instructions, from other repositories
plan-forge blazor-fluent-ui.instructions.md
Blazor Server + Microsoft Fluent UI patterns — component layering, state, lifecycle, accessibility. Auto-loads when editing .razor / .razor.cs files.
plan-forge frontend.instructions.md
TypeScript frontend patterns — React, component architecture, state management.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.