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-print-export.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-print-export)<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-print-export"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-print-export.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.03550 | $0.03550 |
| Opus 5 | $0.01775 | $0.01775 |
| Sonnet 5 | $0.00710 | $0.00710 |
| Haiku 4.5 | $0.00355 | $0.00355 |
Grade A, and why
PixelPilot uiux-print-export.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 — 682 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI/UX Print & PDF Export
Complete guide for print-optimized pages and PDF generation. Token-aware styling that respects design language.
OVERVIEW
This skill covers:
@media printCSS for browser print- Print button components
- jsPDF + html2canvas for programmatic PDF
- Page breaks and repeating headers
- Print-specific accessibility
@MEDIA PRINT FUNDAMENTALS
Base Print Styles
@media print {
/* Hide non-essential elements */
.no-print,
.sidebar,
.navigation,
.footer,
.toast,
.modal,
[role="navigation"],
[role="banner"],
button:not(.print-include) {
display: none !important;
}
/* Reset backgrounds for ink saving */
body {
background: white !important;
color: black !important;
font-size: 12pt;
line-height: 1.5;
}
/* Expand links with URLs */
a[href]::after {
content: " (" attr(href) ")";
font-size: 0.8em;
color: #666;
}
/* Don't show URL for internal/JS links */
a[href^="#"]::after,
a[href^="javascript:"]::after {
content: none;
}
/* Page break utilities */
.page-break {
page-break-before: always;
}
.no-break {
page-break-inside: avoid;
}
.keep-together {
page-break-inside: avoid;
break-inside: avoid;
}
/* Ensure images don't overflow */
img {
max-width: 100% !important;
page-break-inside: avoid;
}
/* Tables */
table {
border-collapse: collapse;
}
th, td {
border: 1px solid #000;
padding: 8px;
}
thead {
display: table-header-group; /* Repeat on each page */
}
tr {
page-break-inside: avoid;
}
}
Design Language Print Variations
/* Luxury - Elegant serif print */
[data-theme="light"][data-language="luxury"] {
@media print {
body {
font-family: 'Playfair Display', Georgia, serif;
font-size: 11pt;
letter-spacing: 0.02em;
}
h1, h2, h3 {
font-weight: 400;
letter-spacing: 0.05em;
text-transform: uppercase;
}
}
}
/* Technical - Monospace print */
[data-language="technical"] {
@media print {
body {
font-family: 'JetBrains Mono', monospace;
font-size: 10pt;
}
code, pre {
background: #f5f5f5 !important;
border: 1px solid #ddd;
}
}
}
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 · 682 lines · 3,550 tokens per session scan A 76b44910bb1c
PixelPilot uiux-print-export.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 5mo ago), licensed MIT. It adds 3,550 tokens to every session, about $0.0178 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 dapr.instructions.md
Dapr patterns for .NET — building blocks, component config, sidecar architecture, multi-tenant isolation, workflows, state management, secrets.
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.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).