- 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.5 KiB
1.5 KiB
/fix-issues - Fix Lighthouse Issues
Apply fixes for Lighthouse audit failures to improve scores.
Steps
- Load the most recent Lighthouse audit results
- Prioritize issues by impact: high-impact, medium-impact, low-impact
- For Performance issues:
- Add lazy loading to below-the-fold images
- Optimize image formats and sizes (WebP, AVIF)
- Add preload hints for critical resources
- Defer non-critical JavaScript and CSS
- For Accessibility issues:
- Add missing alt text to images
- Fix color contrast ratios
- Add ARIA labels to interactive elements
- Ensure proper heading hierarchy
- For Best Practices issues:
- Fix mixed content (HTTP resources on HTTPS pages)
- Add security headers (CSP, X-Frame-Options)
- Update deprecated APIs
- For SEO issues:
- Add missing meta descriptions and titles
- Fix mobile viewport configuration
- Add structured data markup
- Apply each fix incrementally and verify it resolves the flagged audit
- Re-run Lighthouse to measure the improvement
- Report: fixes applied, score changes, remaining issues
Rules
- Fix high-impact issues first for maximum score improvement
- Do not break existing functionality while fixing audit issues
- Test visual appearance after applying performance optimizations
- Verify accessibility fixes with manual keyboard navigation
- Keep performance optimizations progressive (do not block rendering)
- Document each fix for team awareness and future maintenance