PixelPilot: Instructions file for GitHub Copilot

vscode/.github/instructions/uiux-copy-to-clipboard.instructions.md

PixelPilot uiux-copy-to-clipboard.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 4,115 tokens per session, scanned A, original, MIT.

A guide for adding copy-to-clipboard controls to websites, including a backup method for older browsers, visible feedback, styling tokens, and messages for screen readers.

In plain words
What is it for?
Use it for copy-link buttons, input fields containing shareable text, and code blocks with copy controls. It supports Clipboard API use, an older-browser fallback, tooltips or icon changes, and accessibility announcements.
Why use it?
It helps users know that text or a link was copied successfully. It also covers compatibility and accessibility details that are easy to miss in a basic copy button.

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-copy-to-clipboard.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-copy-to-clipboard.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-copy-to-clipboard.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-copy-to-clipboard)
Your own site
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-copy-to-clipboard"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-copy-to-clipboard.svg" alt="Measured on agentmods" height="20"></a>
Per session 4,115 This file is loaded in full into every session.
When invoked 4,115 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.04115 $0.04115
Opus 5 $0.02057 $0.02057
Sonnet 5 $0.00823 $0.00823
Haiku 4.5 $0.00411 $0.00411

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

Security

Grade A, and why

PixelPilot uiux-copy-to-clipboard.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 7d 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-copy-to-clipboard.instructions.md · 694 lines

How it starts

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

UI/UX Copy to Clipboard

Copy text to clipboard with visual feedback. Uses Clipboard API with graceful fallback.


OVERVIEW

This skill covers:

  1. Clipboard API implementation
  2. execCommand fallback for older browsers
  3. Visual feedback (tooltip, icon change)
  4. Token-aware button styling
  5. Accessibility announcements

HTML STRUCTURE

Basic Copy Button

<button 
  class="copy-btn"
  data-copy="https://example.com/share/abc123"
  aria-label="Copy link to clipboard"
>
  <i data-lucide="copy" class="copy-btn__icon"></i>
  <span class="copy-btn__text">Copy Link</span>
</button>

<!-- Screen reader announcement -->
<div id="copy-status" role="status" aria-live="polite" class="sr-only"></div>

Copy with Input Field

<div class="copy-field">
  <input 
    type="text" 
    class="copy-field__input" 
    value="https://example.com/share/abc123"
    readonly
    aria-label="Shareable link"
  >
  <button 
    class="copy-field__btn"
    aria-label="Copy to clipboard"
  >
    <i data-lucide="copy"></i>
  </button>
</div>

Code Block with Copy

<div class="code-block">
  <div class="code-block__header">
    <span class="code-block__lang">JavaScript</span>
    <button class="code-block__copy" aria-label="Copy code">
      <i data-lucide="copy"></i>
      <span>Copy</span>
    </button>
  </div>
  <pre class="code-block__content"><code>const greeting = "Hello, World!";</code></pre>
</div>

CSS STYLES

/* Basic copy button */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: background var(--dur-micro), border-color var(--dur-micro);
}

.copy-btn:hover {
  background: var(--bg-hover);
  border-color: var(--border-hover);
}

.copy-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.copy-btn__icon {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-micro);
}

/* Success state */
.copy-btn--success {
  background: var(--color-success-soft);
  border-color: var(--color-success);
  color: var(--color-success);
}

.copy-btn--success .copy-btn__icon {
  transform: scale(1.1);
}

/* Copy with input field */
.copy-field {
  display: flex;
  max-width: 400px;
}

.copy-field__input {
  flex: 1;
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-size: var(--text-sm);
  font-family: var(--font-mono);
}

.copy-field__input:focus {
  outline: none;
  border-color: var(--accent);
}

.copy-field__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: white;
  cursor: pointer;
  transition: background var(--dur-micro);
}

.copy-field__btn:hover {
  background: var(--accent-hover);
}

.copy-field__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.copy-field__btn svg {
  width: 18px;
  height: 18px;
}

/* Success state for field button */
.copy-field__btn--success {
  background: var(--color-success);
  border-color: var(--color-success);
}

/* Code block */
.code-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.code-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.code-block__lang {
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-block__copy {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: var(--text-xs);
  cursor: pointer;
  transition: color var(--dur-micro), background var(--dur-micro);
}

.code-block__copy:hover {
  color: var(--text);
  background: var(--bg-hover);
}

.code-block__copy svg {
  width: 14px;
  height: 14px;
}

.code-block__copy--success {
  color: var(--color-success);
}

.code-block__content {
  padding: var(--space-4);
  margin: 0;
  overflow-x: auto;
}

.code-block__content code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* Tooltip feedback */
.copy-btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-2);
  background: var(--text);
  color: var(--bg);
  font-size: var(--text-xs);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-micro);
}

.copy-btn[data-tooltip].show-tooltip::after {
  opacity: 1;
}

Read the full file on GitHub · 694 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. 7d ago First seen · 694 lines · 4,115 tokens per session scan A 9dadeccef7ef

Subscribe to this mod's changes

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

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens