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-security-headers.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-security-headers)<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-security-headers"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-security-headers.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.02982 | $0.02982 |
| Opus 5 | $0.01491 | $0.01491 |
| Sonnet 5 | $0.00596 | $0.00596 |
| Haiku 4.5 | $0.00298 | $0.00298 |
Grade A, and why
PixelPilot uiux-security-headers.instructions.md scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
### Using curl How it starts
The opening of the file, as written. The whole thing — 444 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Security Headers Skill
Configure essential security headers to protect your application.
REQUIRED SECURITY HEADERS
| Header | Purpose | Priority |
|---|---|---|
| Content-Security-Policy | Prevent XSS, injection attacks | Critical |
| Strict-Transport-Security | Force HTTPS | Critical |
| X-Content-Type-Options | Prevent MIME sniffing | High |
| X-Frame-Options | Prevent clickjacking | High |
| Referrer-Policy | Control referrer info | Medium |
| Permissions-Policy | Restrict browser features | Medium |
CONTENT-SECURITY-POLICY (CSP)
Start with Report-Only
Content-Security-Policy-Report-Only:
default-src 'self';
script-src 'self' 'unsafe-inline' 'unsafe-eval';
style-src 'self' 'unsafe-inline';
img-src 'self' data: https:;
font-src 'self';
connect-src 'self';
report-uri /api/csp-report;
Production CSP (Strict)
Content-Security-Policy:
default-src 'self';
script-src 'self' https://cdn.jsdelivr.net https://unpkg.com;
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
img-src 'self' data: https://images.unsplash.com https://picsum.photos;
font-src 'self' https://fonts.gstatic.com;
connect-src 'self' https://api.example.com wss://api.example.com;
frame-ancestors 'none';
form-action 'self';
base-uri 'self';
upgrade-insecure-requests;
CSP with Nonces (for inline scripts)
<!-- Server generates unique nonce per request -->
<script nonce="abc123">
// Inline script allowed because nonce matches
</script>
Content-Security-Policy: script-src 'self' 'nonce-abc123';
NEXT.JS CONFIGURATION
next.config.js
// next.config.js
const securityHeaders = [
{
key: 'Content-Security-Policy',
value: [
"default-src 'self'",
"script-src 'self' 'unsafe-eval' 'unsafe-inline' https://cdn.jsdelivr.net https://unpkg.com",
"style-src 'self' 'unsafe-inline' https://fonts.googleapis.com",
"img-src 'self' data: blob: https://images.unsplash.com https://picsum.photos",
"font-src 'self' https://fonts.gstatic.com",
"connect-src 'self' https://api.example.com wss:",
"frame-ancestors 'none'",
"form-action 'self'",
"base-uri 'self'",
].join('; '),
},
{
key: 'Strict-Transport-Security',
value: 'max-age=31536000; includeSubDomains; preload',
},
{
key: 'X-Content-Type-Options',
value: 'nosniff',
},
{
key: 'X-Frame-Options',
value: 'DENY',
},
{
key: 'X-XSS-Protection',
value: '1; mode=block',
},
{
key: 'Referrer-Policy',
value: 'strict-origin-when-cross-origin',
},
{
key: 'Permissions-Policy',
value: [
'camera=()',
'microphone=()',
'geolocation=()',
'interest-cohort=()',
].join(', '),
},
];
/** @type {import('next').NextConfig} */
const nextConfig = {
async headers() {
return [
{
// Apply to all routes
source: '/:path*',
headers: securityHeaders,
},
];
},
};
module.exports = nextConfig;
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 · 444 lines · 2,982 tokens per session scan A 92903bc17afc
PixelPilot uiux-security-headers.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 5mo ago), licensed MIT. It adds 2,982 tokens to every session, about $0.0149 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other instructions, from other repositories
plugin-files-mode
Rosetta Plugin Mode Bootstrap.
plan-forge landing-zone.instructions.md
Azure Landing Zone baselines — identity, network, policy, management, security, tagging, subscription organization.
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 policy.instructions.md
Azure Policy and Initiative compliance — definitions, assignment, compliance state, exemptions, remediation tasks.
plan-forge api-patterns.instructions.md
API patterns for .NET — REST conventions, ProblemDetails, pagination, versioning, error responses.
plan-forge waf.instructions.md
Azure Well-Architected Framework (WAF) guardrails — Reliability, Security, Cost, Operational Excellence, Performance.