PixelPilot: Instructions file for GitHub Copilot

vscode/.github/instructions/uiux-security-headers.instructions.md

PixelPilot uiux-security-headers.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 2,982 tokens per session, scanned A, original, MIT.

A guide to configuring browser security headers, including CSP, HSTS, X-Frame-Options, and related settings. These headers tell browsers which content and behaviours a site should allow.

In plain words
What is it for?
Use it when securing Next.js, Laravel, or static sites and when introducing a report-only or stricter Content Security Policy.
Why use it?
It helps reduce risks such as cross-site scripting, clickjacking, insecure connections, and unsafe content handling.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file.

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-security-headers.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-security-headers.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-security-headers.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-security-headers)
Your own site
<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>
Per session 2,982 This file is loaded in full into every session.
When invoked 2,982 The same file — it is already loaded in full.
Security scan A 1 finding. 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.02982 $0.02982
Opus 5 $0.01491 $0.01491
Sonnet 5 $0.00596 $0.00596
Haiku 4.5 $0.00298 $0.00298

Measured 3d ago against content hash 92903bc17afc, 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-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
vscode/.github/instructions/uiux-security-headers.instructions.md · 444 lines

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;

Read the full file on GitHub · 444 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 · 444 lines · 2,982 tokens per session scan A 92903bc17afc

Subscribe to this mod's changes

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.