npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@appfire-ux/vpat-agent

v0.20260709.0

Published

Claude Code VPAT/ACR agents for Appfire apps — /vpat-audit end-to-end: UI axe scan + evidence audit + CRUX ACR draft. Requires a running UI URL. One-command install.

Downloads

93

Readme

@appfire-ux/vpat-agent

One-command install of the VPAT/ACR audit pipeline for Appfire repos. Produces evidence from the running UI (axe-core scans, screenshots) and drafts an ACR using the official Appfire CRUX VPAT 2.5 Rev INT template.

Companion package to @appfire-ux/audit-agent (UX/UI audits) and @appfire-ux/guidelines (rules/skills).

Install

npm install -D @appfire-ux/vpat-agent @appfire-ux/guidelines
npx @appfire-ux/vpat-agent
npx @appfire-ux/guidelines

One-time scan dependencies:

npm install -D playwright axe-core
npx playwright install chromium

Open Claude Code and run:

/vpat-audit --url https://localhost:5173

UI URL is required for a credible VPAT. If you omit --url, the agent stops and asks for a link to a running environment before any scan.

Commands

| Command | Purpose | |---------|---------| | /vpat-audit | Full pipeline: a11y UI scan → VPAT repo audit → ACR draft | | /a11y-audit | Accessibility evidence only (axe + static audit → JSON for ACR) |

/vpat-audit arguments

/vpat-audit --url <base-url> [scope-path] [--lang pl|en] [--out-dir <path>] [--prod] [--routes /,/foo] [--skip-acr] [--skip-repo-audit]
  • --url <base-url>required unless you confirm when prompted (dev/staging/prod UI root)
  • --static-only — code-only audit; not recommended for VPAT (agent warns and asks for confirmation)
  • --prod — append -prod to report filenames
  • --skip-acr — stop after VPAT repo audit (no ACR draft)
  • --skip-repo-audit — re-draft ACR only from existing evidence

What gets installed

| File | Purpose | |------|---------| | .claude/commands/vpat-audit.md | /vpat-audit orchestrator | | .claude/commands/a11y-audit.md | /a11y-audit (VPAT evidence collection) | | .claude/agents/a11y-auditor.md | WCAG 2.2 + axe scan → A11Y-AUDIT-*.{md,html,json} | | .claude/agents/vpat-repo-auditor.md | Evidence-gap pre-audit → VPAT-REPO-AUDIT-*.{md,json} | | .claude/agents/vpat-acr-drafter.md | ACR draft → ACR-DRAFT-*.md (CRUX template) | | .claude/reference/vpat-crux-template.md | Official Appfire CRUX VPAT structure | | scripts/a11y-audit-scan.mjs | Playwright + axe-core per-route scanner | | scripts/ux-audit-capture.mjs | Screenshot capture fallback | | scripts/build-html-reports.mjs | MD → Confluence-ready HTML |

Output layout

docs/audits/
├── VPAT-REPO-AUDIT-<date>[-prod].{md,json}
├── ACR-DRAFT-<date>[-prod].md
└── a11y-audit/
    ├── A11Y-AUDIT-<date>[-prod].{md,html,json}
    ├── assets/*.png
    └── axe-results/*.json

Update

Phase 0 on every /vpat-audit run refreshes packages. Manual refresh:

npm update @appfire-ux/vpat-agent @appfire-ux/guidelines
npx @appfire-ux/vpat-agent
npx @appfire-ux/guidelines

With /full-audit

@appfire-ux/audit-agent /full-audit runs UX/UI/A11Y in parallel, then delegates the VPAT sequence to this package (install @appfire-ux/vpat-agent in the same repo).

Publishing (maintainers)

Pushes to main touching appfire-ux-vpat-agent/** or canonical VPAT files in .claude/ run .github/workflows/publish-vpat-agent.yml.