PixelPilot: Instructions file for GitHub Copilot

vscode/.github/instructions/uiux-legal-placeholders.instructions.md

PixelPilot uiux-legal-placeholders.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 5,082 tokens per session, scanned A, original, MIT.

Templates for placeholder legal pages: Privacy Policy, Terms of Service, Cookie Policy, and Accessibility Statement. They use application configuration for names, avoid duplicate pages, and are marked for legal review.

In plain words
What is it for?
Use them to add initial legal-page templates to a web application, check whether pages already exist, and connect page content to application settings.
Why use it?
They provide a consistent starting point for required legal pages while making clear that the text is not final legal advice.

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-legal-placeholders.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-legal-placeholders.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-legal-placeholders/github.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-legal-placeholders)
Your own site
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-legal-placeholders"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-legal-placeholders/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for PixelPilot uiux-legal-placeholders.instructions.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-legal-placeholders"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-legal-placeholders.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 5,082 This file is loaded in full into every session.
When invoked 5,082 The same file — it is already loaded in full.
Security scan A 0 findings. 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.05082 $0.05082
Opus 5 $0.02541 $0.02541
Sonnet 5 $0.01016 $0.01016
Haiku 4.5 $0.00508 $0.00508

Measured 9d ago against content hash 26d357ec0a2e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

PixelPilot uiux-legal-placeholders.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 9d 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-legal-placeholders.instructions.md · 648 lines

How it starts

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

Generate professional legal page templates. All content uses config variables. No duplicates.


OVERVIEW

This skill generates placeholder legal pages:

  1. Privacy Policy
  2. Terms of Service
  3. Cookie Policy
  4. Accessibility Statement

All pages:

  • Use {{ config('app.name') }} and other config values
  • Include standard sections with placeholder text
  • Share consistent styling with design tokens
  • Are clearly marked as templates needing legal review

BEFORE CREATING

Check if page already exists:

# Laravel
php artisan tinker
>>> File::exists(resource_path('views/legal/privacy.blade.php'))

# Or check routes
php artisan route:list --name=privacy

Never duplicate pages - update existing ones instead.


PRIVACY POLICY

{{-- resources/views/legal/privacy.blade.php --}}
@extends('layouts.app')

@section('title', 'Privacy Policy')

@section('content')
<article class="legal-page">
    <header class="legal-page__header">
        <h1>Privacy Policy</h1>
        <p class="legal-page__effective">
            Effective Date: {{ now()->format('F j, Y') }}
        </p>
    </header>

    <div class="legal-page__notice">
        <strong>⚠️ Template Notice:</strong> This is a placeholder privacy policy. 
        Please have this document reviewed by a legal professional before publishing.
    </div>

    <section class="legal-page__section">
        <h2>1. Introduction</h2>
        <p>
            Welcome to {{ config('app.name') }} ("we," "our," or "us"). We respect your 
            privacy and are committed to protecting your personal data. This privacy policy 
            explains how we collect, use, disclose, and safeguard your information when you 
            visit our website or use our services.
        </p>
    </section>

    <section class="legal-page__section">
        <h2>2. Information We Collect</h2>
        
        <h3>2.1 Information You Provide</h3>
        <ul>
            <li><strong>Account Information:</strong> Name, email address, password</li>
            <li><strong>Profile Information:</strong> Avatar, bio, preferences</li>
            <li><strong>Payment Information:</strong> Billing address, payment method details (processed by our payment provider)</li>
            <li><strong>Communications:</strong> Messages you send us, support requests</li>
        </ul>

        <h3>2.2 Information Collected Automatically</h3>
        <ul>
            <li><strong>Usage Data:</strong> Pages visited, features used, actions taken</li>
            <li><strong>Device Information:</strong> Browser type, operating system, device identifiers</li>
            <li><strong>Location Data:</strong> IP address, general geographic location</li>
            <li><strong>Cookies:</strong> See our <a href="{{ route('cookies') }}">Cookie Policy</a></li>
        </ul>
    </section>

    <section class="legal-page__section">
        <h2>3. How We Use Your Information</h2>
        <p>We use your information to:</p>
        <ul>
            <li>Provide and maintain our services</li>
            <li>Process transactions and send related information</li>
            <li>Send administrative notifications and updates</li>
            <li>Respond to your comments, questions, and support requests</li>
            <li>Monitor and analyze usage and trends to improve our services</li>
            <li>Detect, investigate, and prevent fraudulent or unauthorized activities</li>
            <li>Personalize your experience</li>
        </ul>
    </section>

    <section class="legal-page__section">
        <h2>4. Sharing Your Information</h2>
        <p>We may share your information with:</p>
        <ul>
            <li><strong>Service Providers:</strong> Third parties that help us operate our business (hosting, analytics, payment processing)</li>
            <li><strong>Legal Requirements:</strong> When required by law or to protect our rights</li>
            <li><strong>Business Transfers:</strong> In connection with a merger, acquisition, or sale of assets</li>
        </ul>
        <p>We do not sell your personal information to third parties.</p>
    </section>

    <section class="legal-page__section">
        <h2>5. Data Security</h2>
        <p>
            We implement appropriate technical and organizational measures to protect your 
            personal data against unauthorized access, alteration, disclosure, or destruction. 
            However, no method of transmission over the Internet is 100% secure.
        </p>
    </section>

    <section class="legal-page__section">
        <h2>6. Your Rights</h2>
        <p>Depending on your location, you may have the right to:</p>
        <ul>
            <li>Access the personal data we hold about you</li>
            <li>Correct inaccurate personal data</li>
            <li>Request deletion of your personal data</li>
            <li>Object to processing of your personal data</li>
            <li>Request portability of your personal data</li>
            <li>Withdraw consent at any time</li>
        </ul>
        <p>
            To exercise these rights, please contact us at 
            <a href="mailto:{{ config('app.support_email', '[email protected]') }}">
                {{ config('app.support_email', '[email protected]') }}
            </a>.
        </p>
    </section>

    <section class="legal-page__section">
        <h2>7. Data Retention</h2>
        <p>
            We retain your personal data only for as long as necessary to fulfill the 
            purposes for which it was collected, including to satisfy any legal, accounting, 
            or reporting requirements.
        </p>
    </section>

    <section class="legal-page__section">
        <h2>8. Children's Privacy</h2>
        <p>
            Our services are not intended for individuals under the age of 16. We do not 
            knowingly collect personal data from children. If you believe we have collected 
            data from a child, please contact us immediately.
        </p>
    </section>

    <section class="legal-page__section">
        <h2>9. Changes to This Policy</h2>
        <p>
            We may update this privacy policy from time to time. We will notify you of any 
            changes by posting the new policy on this page and updating the "Effective Date" 
            at the top.
        </p>
    </section>

    <section class="legal-page__section">
        <h2>10. Contact Us</h2>
        <p>
            If you have questions about this privacy policy, please contact us:
        </p>
        <ul>
            <li>Email: <a href="mailto:{{ config('app.support_email', '[email protected]') }}">{{ config('app.support_email', '[email protected]') }}</a></li>
            @if(config('app.legal.address'))
            <li>Address: {{ config('app.legal.address') }}</li>
            @endif
        </ul>
    </section>
</article>
@endsection

Read the full file on GitHub · 648 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. 9d ago First seen · 648 lines · 5,082 tokens per session scan A 26d357ec0a2e

Subscribe to this mod's changes

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

Related

Other instructions, from other repositories

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.

vercel/next.js · 7,296 tokens

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.

openai/codex · 5,153 tokens

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).

microsoft/vscode · 6,785 tokens

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).

microsoft/vscode · 5,001 tokens

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.

langchain-ai/langchain · 4,469 tokens

deepseek-harness AGENTS.md

AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.

deepseek-ai/deepseek-harness · 3,735 tokens