Perf
design intelligence for ai coding agents. one unified cli, 36 commands across recon, review, build, plan, ship, test, reflect, power. zero npm deps.
npx -y skills add Dragoon0x/dragoon-skills --skill perfAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Static performance hints (large images, missing img dimensions, no loading=lazy, sync script tags) plus optional Lighthouse JSON report ingestion that surfaces failing audits ranked by potential ms savings. Use when the user wants to audit web performance or process a Lighthouse report. Dragoon does NOT run Lighthouse itself - generate the report with `npx lighthouse <url> --output json --output-path lh.json` and pass --lighthouse. Run as `node ~/.claude/skills/dragoon/skills/perf/scripts/perf.js [--lighthouse path]`.
SKILL.md
1.6 KB, as published. Nobody here has run it
/perf
Two halves: static hints from your codebase, and parsing of Lighthouse JSON reports.
When to use
- The user wants to audit web performance
- After running Lighthouse, to surface the most impactful audits
- Before launch, to catch image and script issues early
Static rules
perf-001large-image (>500KB) (medium)perf-002img-missing-dimensions causes CLS (low)perf-003img-without-loading-lazy below the fold (low)perf-004sync-script-tag blocks parsing (medium)
Lighthouse ingestion
npx lighthouse https://example.com --output json --output-path lh.json
dragoon perf --lighthouse lh.json
Output: scores per category, core web vitals (LCP/CLS/TBT/INP/FCP/SI), and the top 6 failing audits ranked by ms savings.
Run it
dragoon perf # static only
dragoon perf --lighthouse lh.json # add lighthouse summary
dragoon perf --severity medium # filter
dragoon perf --json # CI mode