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-footergit 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.08172 | $0.08172 |
| Opus 5 | $0.04086 | $0.04086 |
| Sonnet 5 | $0.01634 | $0.01634 |
| Haiku 4.5 | $0.00817 | $0.00817 |
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.
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.
UI/UX Footer System 2026
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.
FOOTER ANATOMY (all languages)
┌─────────────────────────────────────────────────────────┐
│ 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):
- Logo + tagline
- Newsletter / CTA (if present)
- Navigation columns (each becomes accordion or flat list)
- Social links
- Divider
- Copyright + legal links
- Language selector + theme toggle
UNIVERSAL FOOTER CSS (base — extend per language)
/* ── 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);
}
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 · 840 lines · 8,172 tokens per session scan A 9006973203cf
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.
Other instructions, from other repositories
UIX CLAUDE.md
Instructions for Deepractice/UIX, covering uix project rules, design system: lucid ui, colors, forbidden and preferred patterns.
daisyui packages.daisyui.instructions.md
Instructions for saadeghi/daisyui, covering instructions for daisyui package, files and fixing daisyui issues.
daisyui communication.instructions.md
Instructions for saadeghi/daisyui, a project described as: 🌼 🌼 🌼 🌼 🌼 The most popular, free and open-source Tailwind CSS component library.
openbridge-webcomponents building-blocks.instructions.md
Instructions for Ocean-Industries-Concept-Lab/openbridge-webcomponents, covering building blocks & svg helpers, agent safety rules (context + mirroring), packages/openbridge-webcomponents/src/building-blocks/ and packages/openbridge-webcomponents/src/svghelpers/.
primitives AGENTS.md
Instructions for radix-ng/primitives, covering agent guide and storybook styling.
naksha-studio copilot-instructions.md
Instructions for Adityaraj0421/naksha-studio, covering naksha design team — github copilot, activation triggers, the design team, design rules for code generation and css custom properties (always use these patterns).