PixelPilot uiux-micro-interactions.instructions.md

A library of small interface animations and feedback patterns, such as ripples, loading placeholders, toasts, pull-to-refresh, and drag-to-reorder. It also covers button and form interactions and honors the user's reduced-motion setting.

In plain words
What is it for?
Use it when building buttons, forms, notifications, loading screens, refresh gestures, or reorderable lists with motion that can be reduced or disabled.
Why use it?
It helps make interface actions and loading states easier to understand without overlooking people who prefer less movement.

Instructions file for GitHub Copilot

Install

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.

agentmods
npx agentmods add instructions/dev-lou/pixelpilot/uiux-micro-interactions
Clone the repo
git clone --depth 1 https://github.com/dev-lou/PixelPilot

Made for: GitHub Copilot.

Per session 5,219 This file is loaded in full into every session.
When invoked 5,219 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.05219 $0.05219
Opus 5 $0.02610 $0.02610
Sonnet 5 $0.01044 $0.01044
Haiku 4.5 $0.00522 $0.00522

Measured 2d ago against content hash 60d0bd94016f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

vscode/.github/instructions/uiux-micro-interactions.instructions.md · 873 lines

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:

  1. Ripple effects
  2. Skeleton loaders (shimmer, pulse, wave)
  3. Toast notifications
  4. Pull-to-refresh
  5. Drag-to-reorder
  6. Button feedback
  7. 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));
});

Read the full file on GitHub · 873 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. 2d ago First seen · 873 lines · 5,219 tokens per session scan A 60d0bd94016f

Subscribe to this mod's changes

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.

Related

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.

Deepractice/UIX · 365 tokens

wonder-blocks frontend-rules.instructions.md

Wonder Blocks design system conventions, component patterns, and coding standards.

Khan/wonder-blocks · 3,560 tokens

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

Ocean-Industries-Concept-Lab/openbridge-webcomponents · 2,554 tokens

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

Adityaraj0421/naksha-studio · 2,453 tokens

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.

chihebnabil/lovable-boilerplate · 4,058 tokens

tidyfactor-design AGENTS.md

Instructions for alwkala/tidyfactor-design, covering ⚡ skill & 24 modular slash commands (7 lifecycle stages) and critical architecture (non-negotiable).

alwkala/tidyfactor-design · 1,894 tokens