PixelPilot uiux-footer.instructions.md

PixelPilot uiux-footer.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 8,172 tokens per session, scanned A, original, MIT.

Instructions for designing a complete website footer with navigation, legal information, language and theme controls, and optional newsletter or call-to-action areas. It includes layouts for desktop and mobile screens.

In plain words
What is it for?
Use it to build responsive footers with navigation columns, back-to-top links, copyright and legal links, language selection, theme toggles, social links, and newsletter signup.
Why use it?
It helps keep footer content organized and makes important links and controls usable on smaller screens. It also specifies the semantic contentinfo role for accessibility.

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

Made for: GitHub Copilot.

Per session 8,172 This file is loaded in full into every session.
When invoked 8,172 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.08172 $0.08172
Opus 5 $0.04086 $0.04086
Sonnet 5 $0.01634 $0.01634
Haiku 4.5 $0.00817 $0.00817

Measured 3d ago against content hash 9006973203cf, 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-footer.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-footer.instructions.md · 840 lines

How it starts

The opening of the file, as written. The whole thing — 840 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Full footer system per design language. Every footer is a complete component: multi-column layout, back-to-top, language selector (droptop), copyright, legal links, dark/light toggle placement, newsletter signup, mobile stacking. role="contentinfo" on every footer — no exceptions.


┌─────────────────────────────────────────────────────────┐
│  UPPER FOOTER                                           │
│  [Logo + Tagline] [Nav col 1] [Nav col 2] [Social/CTA] │
├─────────────────────────────────────────────────────────┤
│  LOWER FOOTER                                           │
│  [© Year Brand] [Legal links] [Language] [Theme toggle] │
└─────────────────────────────────────────────────────────┘

Mobile stacking order (top → bottom):

  1. Logo + tagline
  2. Newsletter / CTA (if present)
  3. Navigation columns (each becomes accordion or flat list)
  4. Social links
  5. Divider
  6. Copyright + legal links
  7. Language selector + theme toggle

/* ── FOOTER BASE ──────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg, var(--surface));
  color: var(--footer-text, var(--text-2));
  border-top: 1px solid var(--border);
  font-size: var(--text-sm);
}

.footer-upper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  padding: var(--space-12) 0;
}
@media (min-width: 768px) {
  .footer-upper {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    padding: var(--space-16) 0;
  }
}

.footer-lower {
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-lower {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-logo  { font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; color: var(--text); }
.footer-tagline { font-size: var(--text-sm); color: var(--muted); max-width: 280px;
  line-height: 1.6; }

/* Nav columns */
.footer-nav { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-nav-title {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text); margin-bottom: var(--space-1);
}
.footer-nav-link {
  color: var(--footer-text, var(--text-2));
  transition: color var(--transition-micro);
  line-height: 1.4;
}
.footer-nav-link:hover { color: var(--text); }

/* Social icons row */
.footer-social { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer-social-link {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  color: var(--text-2); transition: color var(--transition-micro),
    border-color var(--transition-micro), background var(--transition-micro);
}
.footer-social-link:hover { color: var(--text); background: var(--surface-up);
  border-color: var(--text-2); }
.footer-social-link svg { width: 16px; height: 16px; }

/* Copyright */
.footer-copy { font-size: var(--text-xs); color: var(--muted); }

/* Legal links */
.footer-legal { display: flex; gap: var(--space-4); flex-wrap: wrap;
  font-size: var(--text-xs); }
.footer-legal a { color: var(--muted); transition: color var(--transition-micro); }
.footer-legal a:hover { color: var(--text); }

/* Lower right: language + theme toggle */
.footer-lower-right {
  display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0;
}

/* Newsletter form */
.footer-newsletter { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-newsletter-form {
  display: flex; gap: var(--space-2);
  max-width: 340px;
}
.footer-newsletter-input {
  flex: 1; padding: 10px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); font-size: var(--text-sm);
  color: var(--text); font-family: var(--font-body);
  transition: border-color var(--transition-micro);
}
.footer-newsletter-input:focus { border-color: var(--accent); outline: none; }
.footer-newsletter-input::placeholder { color: var(--muted); }
.footer-newsletter-btn {
  flex-shrink: 0; padding: 10px 20px;
  background: var(--accent); color: white;
  border: none; border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 600; cursor: pointer;
  transition: background var(--transition-micro);
  white-space: nowrap;
}
.footer-newsletter-btn:hover {
  background: color-mix(in srgb, var(--accent) 85%, black);
}

Read the full file on GitHub · 840 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 · 840 lines · 8,172 tokens per session scan A 9006973203cf

Subscribe to this mod's changes

PixelPilot uiux-footer.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 8,172 tokens to every session, about $0.0409 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.