PixelPilot uiux-audit-automation.instructions.md

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

An automated accessibility audit workflow for checking a web page or component against accessibility rules such as WCAG, the standard for making websites usable by people with disabilities.

In plain words
What is it for?
Scanning a live URL or local development page with axe-core and producing a prioritized accessibility report.
Why use it?
It finds accessibility violations and organizes suggested fixes, reducing the need to identify problems manually.

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-audit-automation
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-audit-automation.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-audit-automation.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-audit-automation)
Your own site
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-audit-automation"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-audit-automation.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,169 This file is loaded in full into every session.
When invoked 2,169 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.02169 $0.02169
Opus 5 $0.01085 $0.01085
Sonnet 5 $0.00434 $0.00434
Haiku 4.5 $0.00217 $0.00217

Measured 4d ago against content hash c77f06325727, 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-audit-automation.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 4d 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-audit-automation.instructions.md · 321 lines

How it starts

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

UI/UX Audit Automation 2026

Navigate → inject axe-core → scan → report → fix. Produces a structured WCAG 2.1 AA + 3.0 violation report for any live URL or local dev server page.


PREREQUISITES

# Required MCP: Chrome DevTools (or Puppeteer MCP)
# Confirm it is active before running any step:
# - Tool: browser_navigate, browser_evaluate, browser_screenshot

# axe-core CDN (injected at runtime — no install needed):
AXE_CDN = "https://cdnjs.cloudflare.com/ajax/libs/axe-core/4.9.1/axe.min.js"

STEP 1 — NAVIGATE TO TARGET

// Via Chrome DevTools MCP tool: browser_navigate
await browser_navigate({ url: TARGET_URL });
// Wait for network idle — important for SPAs
await browser_evaluate({ script: `
  await new Promise(resolve => {
    if (document.readyState === 'complete') return resolve();
    window.addEventListener('load', resolve);
  });
  await new Promise(r => setTimeout(r, 500)); // extra tick for hydration
` });

For local dev servers, use http://localhost:PORT/PATH. For SPAs, navigate to the specific route — not just /.


STEP 2 — INJECT AXE-CORE

await browser_evaluate({ script: `
  // Inject axe-core from CDN
  const script = document.createElement('script');
  script.src = '${AXE_CDN}';
  document.head.appendChild(script);
  await new Promise((res, rej) => {
    script.onload = res;
    script.onerror = () => rej(new Error('axe-core failed to load'));
  });
  console.log('axe-core loaded:', typeof axe !== 'undefined');
` });

STEP 3 — RUN THE SCAN

const results = await browser_evaluate({ script: `
  // Run full axe scan with WCAG 2.1 AA + 2.2 tags
  const results = await axe.run(document, {
    runOnly: {
      type: 'tag',
      values: ['wcag2a', 'wcag2aa', 'wcag21a', 'wcag21aa', 'wcag22aa', 'best-practice']
    },
    resultTypes: ['violations', 'incomplete'],
  });

  // Summarise for output
  return {
    url:        location.href,
    timestamp:  new Date().toISOString(),
    violations: results.violations.map(v => ({
      id:          v.id,
      impact:      v.impact,          // critical | serious | moderate | minor
      description: v.description,
      help:        v.help,
      helpUrl:     v.helpUrl,
      wcag:        v.tags.filter(t => t.startsWith('wcag')),
      nodes:       v.nodes.map(n => ({
        html:    n.html.slice(0, 200),
        summary: n.failureSummary,
        target:  n.target,
      })),
    })),
    incomplete: results.incomplete.length,
    passes:     results.passes.length,
  };
` });

Read the full file on GitHub · 321 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. 4d ago First seen · 321 lines · 2,169 tokens per session scan A c77f06325727

Subscribe to this mod's changes

PixelPilot uiux-audit-automation.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,169 tokens to every session, about $0.0108 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