Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/dev-lou/pixelpilot/uiux-micro-interactionsgit clone --depth 1 https://github.com/dev-lou/PixelPilotWhat 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 | $0.05219 | $0.05219 |
| Opus 5 | $0.02610 | $0.02610 |
| Sonnet 5 | $0.01044 | $0.01044 |
| Haiku 4.5 | $0.00522 | $0.00522 |
Grade A, and why
PixelPilot uiux-micro-interactions.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 2d 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 — 873 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI/UX Micro-Interactions Library
Token-aware micro-interactions that respect prefers-reduced-motion. Enhance UX with subtle, meaningful animations.
OVERVIEW
Micro-interactions provide feedback and delight. This skill covers:
- Ripple effects
- Skeleton loaders (shimmer, pulse, wave)
- Toast notifications
- Pull-to-refresh
- Drag-to-reorder
- Button feedback
- Form interactions
Critical Rule: All animations MUST respect prefers-reduced-motion.
REDUCED MOTION FOUNDATION
/* Base transition that respects user preference */
:root {
--dur-micro: 150ms;
--dur-base: 250ms;
--dur-slow: 400ms;
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
1. RIPPLE EFFECT
CSS + JavaScript
.ripple-container {
position: relative;
overflow: hidden;
}
.ripple {
position: absolute;
border-radius: 50%;
background: var(--accent);
opacity: 0.3;
transform: scale(0);
pointer-events: none;
}
.ripple.animate {
animation: ripple-animation var(--dur-slow) var(--ease-out) forwards;
}
@keyframes ripple-animation {
to {
transform: scale(4);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.ripple.animate {
animation: none;
opacity: 0;
}
}
export function createRipple(event: MouseEvent, container: HTMLElement) {
// Check for reduced motion preference
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
return;
}
const rect = container.getBoundingClientRect();
const ripple = document.createElement('span');
const diameter = Math.max(rect.width, rect.height);
const radius = diameter / 2;
ripple.style.width = ripple.style.height = `${diameter}px`;
ripple.style.left = `${event.clientX - rect.left - radius}px`;
ripple.style.top = `${event.clientY - rect.top - radius}px`;
ripple.className = 'ripple';
// Remove existing ripples
const existingRipple = container.querySelector('.ripple');
if (existingRipple) {
existingRipple.remove();
}
container.appendChild(ripple);
// Trigger animation
requestAnimationFrame(() => {
ripple.classList.add('animate');
});
// Clean up
ripple.addEventListener('animationend', () => {
ripple.remove();
});
}
// Usage
document.querySelectorAll('.btn').forEach(btn => {
btn.classList.add('ripple-container');
btn.addEventListener('click', (e) => createRipple(e, btn));
});
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.
- 2d ago First seen · 873 lines · 5,219 tokens per session scan A 60d0bd94016f
PixelPilot uiux-micro-interactions.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 5,219 tokens to every session, about $0.0261 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
UIX CLAUDE.md
Instructions for Deepractice/UIX, covering uix project rules, design system: lucid ui, colors, forbidden and preferred patterns.
wonder-blocks frontend-rules.instructions.md
Wonder Blocks design system conventions, component patterns, and coding standards.
openbridge-webcomponents building-blocks.instructions.md
Instructions for Ocean-Industries-Concept-Lab/openbridge-webcomponents, covering building blocks & svg helpers, agent safety rules (context + mirroring), packages/openbridge-webcomponents/src/building-blocks/ and packages/openbridge-webcomponents/src/svghelpers/.
naksha-studio copilot-instructions.md
Instructions for Adityaraj0421/naksha-studio, covering naksha design team — github copilot, activation triggers, the design team, design rules for code generation and css custom properties (always use these patterns).
lovable-boilerplate design.instructions.md
Instructions for chihebnabil/lovable-boilerplate, covering design system guidelines, critical design rules, never create, always create and core design philosophy.
tidyfactor-design AGENTS.md
Instructions for alwkala/tidyfactor-design, covering ⚡ skill & 24 modular slash commands (7 lifecycle stages) and critical architecture (non-negotiable).