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-copy-to-clipboard.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-copy-to-clipboard)<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>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.04115 | $0.04115 |
| Opus 5 | $0.02057 | $0.02057 |
| Sonnet 5 | $0.00823 | $0.00823 |
| Haiku 4.5 | $0.00411 | $0.00411 |
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.
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:
- Clipboard API implementation
- execCommand fallback for older browsers
- Visual feedback (tooltip, icon change)
- Token-aware button styling
- 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;
}
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.
- 7d ago First seen · 694 lines · 4,115 tokens per session scan A 9dadeccef7ef
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.
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.
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.