PixelPilot: Instructions file for GitHub Copilot

vscode/.github/instructions/uiux-scroll-restoration.instructions.md

PixelPilot uiux-scroll-restoration.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 2,847 tokens per session, scanned A, original, MIT.

A guide for saving and restoring a user's scroll position when they move between pages. It covers React Router, vanilla JavaScript, Laravel, Livewire, and reduced-motion preferences.

In plain words
What is it for?
Use it to restore list or article positions after navigation and to scroll new pages appropriately.
Why use it?
It prevents users from losing their place when they return to a page, while keeping new navigation behaviour predictable.

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-scroll-restoration.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-scroll-restoration.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-scroll-restoration.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-scroll-restoration)
Your own site
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-scroll-restoration"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-scroll-restoration.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,847 This file is loaded in full into every session.
When invoked 2,847 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.02847 $0.02847
Opus 5 $0.01424 $0.01424
Sonnet 5 $0.00569 $0.00569
Haiku 4.5 $0.00285 $0.00285

Measured 3d ago against content hash 141bdfd593ca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

PixelPilot uiux-scroll-restoration.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 3d 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-scroll-restoration.instructions.md · 526 lines

How it starts

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

Scroll Restoration Skill

Preserve user scroll position across page navigations for better UX.


CORE PRINCIPLE

Rule: When a user navigates away and returns, restore their scroll position. For fresh navigations, scroll to top. Always respect prefers-reduced-motion.


REACT ROUTER (v6+)

Using ScrollRestoration Component

// app/root.tsx or App.tsx
import { ScrollRestoration } from 'react-router-dom';

export default function App() {
  return (
    <>
      <Outlet />
      <ScrollRestoration
        getKey={(location, matches) => {
          // Use pathname as key (default behavior)
          return location.pathname;
          
          // Or use location key for history-based restoration
          // return location.key;
        }}
      />
    </>
  );
}

Custom Scroll Restoration Hook

// hooks/useScrollRestoration.ts
import { useEffect, useLayoutEffect, useRef } from 'react';
import { useLocation } from 'react-router-dom';

const scrollPositions = new Map<string, number>();

export function useScrollRestoration() {
  const location = useLocation();
  const prevPathRef = useRef<string | null>(null);
  const prefersReducedMotion = useRef(
    typeof window !== 'undefined' &&
    window.matchMedia('(prefers-reduced-motion: reduce)').matches
  );

  // Save scroll position before navigation
  useEffect(() => {
    const handleBeforeUnload = () => {
      scrollPositions.set(location.pathname, window.scrollY);
    };

    // Save on route change
    return () => {
      scrollPositions.set(location.pathname, window.scrollY);
    };
  }, [location.pathname]);

  // Restore scroll position after navigation
  useLayoutEffect(() => {
    const savedPosition = scrollPositions.get(location.pathname);
    
    // Scroll behavior based on motion preference
    const scrollOptions: ScrollToOptions = {
      top: savedPosition ?? 0,
      left: 0,
      behavior: prefersReducedMotion.current ? 'instant' : 'instant' // Always instant for restoration
    };

    // Use requestAnimationFrame to ensure DOM is ready
    requestAnimationFrame(() => {
      window.scrollTo(scrollOptions);
    });

    prevPathRef.current = location.pathname;
  }, [location.pathname]);
}

// Usage in App.tsx
function App() {
  useScrollRestoration();
  return <Outlet />;
}

Read the full file on GitHub · 526 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. 3d ago First seen · 526 lines · 2,847 tokens per session scan A 141bdfd593ca

Subscribe to this mod's changes

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