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.
git clone --depth 1 https://github.com/acaprino/daodanWrote 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.
[](https://agentmods.dev/commands/acaprino/daodan/pwa-audit)<a href="https://agentmods.dev/commands/acaprino/daodan/pwa-audit"><img src="https://agentmods.dev/badge/commands/acaprino/daodan/pwa-audit/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/acaprino/daodan/pwa-audit"><img src="https://agentmods.dev/badge/commands/acaprino/daodan/pwa-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00045 | $0.02153 |
| Opus 5 | $0.00023 | $0.01077 |
| Sonnet 5 | $0.00009 | $0.00431 |
| Haiku 4.5 | $0.00005 | $0.00215 |
Grade A, and why
pwa-audit scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- A service worker fetch handler that calls `event.respondWith(fetch(event.request))` unconditionally. Adds latency for zero caching benefit. How it starts
The opening of the file, as written. The whole thing — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/pwa-expert:pwa-audit
Adversarial PWA audit. Two modes, auto-detected from $ARGUMENTS:
- Live URL mode: if the argument starts with
http://orhttps://, fetch the page with Playwright, parse the manifest, test install criteria, check security headers, test offline behavior, and measure Core Web Vitals on the landing page. - Local code mode: otherwise, treat the argument as a path (default: current working directory). Locate the manifest file, service worker source, registration call, iOS meta tag block, and security-header configuration in the codebase. Parse and check.
Setup
Delegate this audit to the pwa-architect agent. The agent must read the relevant references from the pwa-development skill on-demand (not all upfront), targeting each section of the audit.
Reference reading order, as audit sections are reached:
- Manifest checks:
references/manifest.md,references/production-checklist.md§1. - Install criteria and prompts:
references/install-flows.md. - Service worker logic:
references/service-workers.md. - Security headers:
references/security.md. - Offline behavior:
references/service-workers.mdandreferences/storage-persistence.md. - Performance metrics:
references/performance.md. - Push notifications:
references/push-notifications.md. - Framework-specific files:
references/frameworks-tooling.md.
Mode A: Live URL
If $ARGUMENTS is a URL, use the playwright-skill tools:
- Launch a browser and navigate to the URL.
- Fetch
/manifest.webmanifest(and fall back to/manifest.json). Validate as JSON. Run the manifest checklist fromproduction-checklist.md§1. - Check the service worker registration: look for a
<script>registeringnavigator.serviceWorker.register(...), or for an existing controller vianavigator.serviceWorker.controller. - Check the install criteria from
install-flows.md: manifest valid,displaynotbrowser, SW registered withfetchhandler, HTTPS, 192+512 PNG icons present. - Check meta tags:
apple-mobile-web-app-capable,apple-mobile-web-app-status-bar-style,apple-mobile-web-app-title,apple-touch-icon,theme-color,viewport. - Check security headers via response headers: HTTPS plus HSTS, CSP presence (warn if
'unsafe-eval'is allowed),Cross-Origin-Opener-Policy,Cross-Origin-Embedder-Policy. - Test offline behavior: route the page through
page.context().setOffline(true), reload, and confirm a non-broken response (offline page or cached navigation). - Measure Core Web Vitals on the landing page (LCP, CLS at least; INP requires interaction). Compare against
performance.mdthresholds.
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.
- 4d ago First seen · 135 lines · 45 tokens per session scan A ffc7a584bb43
pwa-audit is a command published in the GitHub repository acaprino/daodan (9 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 2,153 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other commands, from other repositories
ui-flow-review
Review menus, HUD, navigation, and player flow from a UX perspective.
responsive-design-specialist
Use when a layout breaks between sizes. Arbitrary breakpoints, type that does not scale, images that blow out the grid, or a desktop design retrofitted onto mobile.
design-form
Design a form with the fewest fields that works, clear labels, and errors that help.
frontend-3d
You are an expert in 3D web development using Three.js, React Three Fiber, WebGL, and WebGPU. You create immersive 3D experiences for the web.
frontend-design
Read and follow the instructions in agents/frontend-design/design-all.md. Also read all referenced files in agents/frontend-design/reference/ as needed for the task.
get-component-source
The full TSX source of a component (append " demo" for its usage example).