PixelPilot: Instructions file for GitHub Copilot

vscode/.github/instructions/uiux-navigation-extras.instructions.md

PixelPilot uiux-navigation-extras.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 1,608 tokens per session, scanned A, original, MIT.

A collection of patterns for common website navigation controls, including breadcrumbs, page numbers, tabs, accordions, sidebars, bottom sheets, and command palettes. Breadcrumbs show where a page sits in a site, while a command palette provides searchable actions.

In plain words
What is it for?
Use it when building site navigation, paginated lists, expandable sections, mobile panels, or searchable action menus.
Why use it?
It helps users move through complex interfaces and find content or actions without losing their place.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file. Also seen: mentions OpenCode.

This is dev-lou/PixelPilot's own configuration. It tells GitHub Copilot how to work on PixelPilot itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything PixelPilot configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/dev-lou/PixelPilot/main/vscode/.github/instructions/uiux-navigation-extras.instructions.md
Clone the repo
git clone --depth 1 https://github.com/dev-lou/PixelPilot

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for PixelPilot uiux-navigation-extras.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-navigation-extras.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-navigation-extras)
Your own site
<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>
Per session 1,608 This file is loaded in full into every session.
When invoked 1,608 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.01608 $0.01608
Opus 5 $0.00804 $0.00804
Sonnet 5 $0.00322 $0.00322
Haiku 4.5 $0.00161 $0.00161

Measured 3d ago against content hash 9f9f382b6520, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

vscode/.github/instructions/uiux-navigation-extras.instructions.md · 224 lines

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>

Read the full file on GitHub · 224 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. 3d ago First seen · 224 lines · 1,608 tokens per session scan A 9f9f382b6520

Subscribe to this mod's changes

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.