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-legal-placeholders.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-legal-placeholders)<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.
<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>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.05082 | $0.05082 |
| Opus 5 | $0.02541 | $0.02541 |
| Sonnet 5 | $0.01016 | $0.01016 |
| Haiku 4.5 | $0.00508 | $0.00508 |
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.
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.
UI/UX Legal Placeholder Pages
Generate professional legal page templates. All content uses config variables. No duplicates.
OVERVIEW
This skill generates placeholder legal pages:
- Privacy Policy
- Terms of Service
- Cookie Policy
- 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
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.
- 9d ago First seen · 648 lines · 5,082 tokens per session scan A 26d357ec0a2e
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.
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.
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).
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).
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.
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.