- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
1.4 KiB
1.4 KiB
/run-audit - Run Lighthouse Audit
Execute a Lighthouse performance audit on web pages.
Steps
- Ask the user for the target URL or list of URLs to audit
- Determine the audit categories: Performance, Accessibility, Best Practices, SEO, PWA
- Configure Lighthouse settings: device type (mobile/desktop), throttling, viewport
- Run Lighthouse audit for each target URL
- Parse the results: overall scores and individual metric values
- Extract Core Web Vitals: LCP, FID/INP, CLS with pass/fail status
- List all failing audits grouped by category with their impact level
- Identify the top 5 performance opportunities with estimated savings
- Extract diagnostic information: main thread blocking time, resource counts
- Compare scores against targets: green (90+), orange (50-89), red (0-49)
- Save the full HTML report and JSON results to the reports directory
- Present a summary dashboard with scores and key recommendations
Rules
- Default to mobile device emulation as it is the stricter test
- Run audits at least 3 times and use median scores to reduce variability
- Focus on Core Web Vitals as they directly impact search ranking
- Do not audit localhost unless the user explicitly requests it
- Include the Lighthouse version in the report for reproducibility
- Compare against previous audit results when available
- Flag any score drop of more than 5 points as a regression