PixelPilot uiux-unique-ideas.instructions.md

PixelPilot uiux-unique-ideas.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 4,265 tokens per session, scanned A, original, MIT.

A guide for creating varied, context-specific visual effects and small interactions in user interfaces, while using shared design tokens and accessibility practices.

In plain words
What is it for?
Use it when designing animations, hover effects, touch gestures, haptic feedback, or other interface details for mobile and desktop products.
Why use it?
It helps avoid repeating the same decorative effects and provides rules for adapting interactions to the product type and device.

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-unique-ideas
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-unique-ideas.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-unique-ideas.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-unique-ideas)
Your own site
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-unique-ideas"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-unique-ideas.svg" alt="Measured on agentmods" height="20"></a>
Per session 4,265 This file is loaded in full into every session.
When invoked 4,265 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.04265 $0.04265
Opus 5 $0.02132 $0.02132
Sonnet 5 $0.00853 $0.00853
Haiku 4.5 $0.00426 $0.00426

Measured yesterday against content hash 4f8e78dbd4a2, 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-unique-ideas.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 yesterday.

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-unique-ideas.instructions.md · 653 lines

How it starts

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

UI/UX Unique Ideas Generator

Generate fresh, context-specific wow effects that never repeat. Every effect uses design tokens and respects accessibility.


MEMORY PROMPT

Before generating effects, ask:

"What effects did you use in the last session/project?"

This ensures variety across projects. Track previously used effects to avoid repetition.


DECISION TREE

START
  │
  ├─ What is the design language?
  │   ├─ Luxury → Slow, elegant, minimal animations
  │   ├─ Expressive → Bold, energetic, playful animations
  │   ├─ Minimalist → Subtle, precise, barely-there effects
  │   ├─ Technical → Functional, data-driven, no decorative
  │   └─ Other → Balance between subtle and engaging
  │
  ├─ What is the context?
  │   ├─ Serious (legal, medical, gov) → Avoid playful effects
  │   ├─ Creative (portfolio, agency) → More freedom for wow
  │   ├─ E-commerce → Focus on product, subtle UI effects
  │   └─ SaaS → Professional polish, micro-interactions
  │
  ├─ What is the primary device?
  │   ├─ Mobile → Touch gestures, haptic feedback
  │   ├─ Desktop → Hover effects, cursor interactions
  │   └─ Both → Progressive enhancement
  │
  └─ What element needs enhancement?
      ├─ Hero section → Entry animations, scroll effects
      ├─ Navigation → Hover states, transitions
      ├─ Cards/Grid → Hover reveals, stagger animations
      ├─ CTAs → Attention-grabbing, subtle motion
      └─ Data viz → Dynamic updates, transitions

IDEA CATEGORIES (20+)

1. SCROLL EFFECTS

Parallax Depth Layers
.parallax-container {
  perspective: 1000px;
  perspective-origin: center;
}

.parallax-layer--back {
  transform: translateZ(-200px) scale(1.2);
}

.parallax-layer--mid {
  transform: translateZ(-100px) scale(1.1);
}

.parallax-layer--front {
  transform: translateZ(0);
}
Scroll-Triggered Reveals
.reveal {
  opacity: 0;
  transform: translateY(var(--space-8));
  transition: opacity var(--dur-slow), transform var(--dur-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

Read the full file on GitHub · 653 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. yesterday First seen · 653 lines · 4,265 tokens per session scan A 4f8e78dbd4a2

Subscribe to this mod's changes

PixelPilot uiux-unique-ideas.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,265 tokens to every session, about $0.0213 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-09-03.

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

packmind packmind-front-end-ui-and-design-systems.instructions.md

Instructions for PackmindHub/packmind: This standard establishes guidelines for using Chakra UI v3 through the @packmind/ui design system to ensure consistent UI implementation across the frontend application. The @packmind/ui package prov... .

PackmindHub/packmind · 290 tokens

openbridge-webcomponents ui-components.instructions.md

Instructions for Ocean-Industries-Concept-Lab/openbridge-webcomponents, covering ui components instructions, architecture, elevation variants via @mixin style, slot conventions and event naming.

Ocean-Industries-Concept-Lab/openbridge-webcomponents · 964 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