PageSpeed Enhancer Skill
A structured, batch-wise audit-and-fix workflow for all four Lighthouse pillars. Always follow the batch flow in order. Never jump straight to fixes without completing the scan and risk assessment phases.
Detailed Guide
Read the detailed guide before executing this skill. It retains the complete procedure and reference material. Treat its safety, prerequisites, and validation requirements as mandatory. For focused work, load the relevant sections; for end-to-end work, read the guide completely.
When to Use This Skill
- User pastes a PageSpeed Insights report or mentions Lighthouse scores
- User asks to improve Core Web Vitals (LCP, FCP, CLS, TBT, SI)
- User needs help with render-blocking resources, unused JavaScript, image optimisation, security headers, ARIA compliance, or SEO meta-tag fixes
- User asks "why is my LCP slow", "fix accessibility issues", "improve my SEO score", or "my site scores 80 on performance"
- Any mention of PageSpeed, Lighthouse, Web Vitals, or site speed
Examples
Example 1: User pastes a PageSpeed report
User: "My site scores 65 on Performance. LCP is 4.2s."
Agent:
- Parses the score summary table — identifies LCP as critical bottleneck
- Runs Batch A scan — finds lazy-loaded hero image and render-blocking CSS
- Outputs risk report: F1.1 (CSS @import → link) ranked P1, F1.5 (LCP image eager) ranked P1
- Applies Fix Batch 1, verifies with re-test
Example 2: User asks about slow LCP
User: "Why is my LCP slow?"
Agent:
- Asks for a PageSpeed report URL or pasted results
- Runs LCP-specific audit from Batch A — checks TTFB, element render delay, lazy loading
- Identifies the LCP element, its current loading strategy, and the critical path chain
- Recommends targeted fix (preload, eager loading, or server response time improvement)
Limitations
- Does not run actual Lighthouse or PageSpeed tests — the user must provide the report or URL
- Security header recommendations assume the user controls the deployment platform (Netlify, Vercel, etc.)
- Fixes are general patterns; exact file paths and config syntax may vary by project setup
- Does not cover server-level optimisations (CDN config, PHP opcode caching, database queries, etc.)
- Image conversion commands assume the user has the required tools installed (cwebp, sharp, Pillow)
- CSP guidance uses a report-only iterative approach — the final policy must be tuned to each project's actual resource origins
1---2name: pagespeed-enhancer3description: Scan, audit, and fix web performance issues across all four Lighthouse/PageSpeed Insights pillars — Performance, Accessibility, Best Practices, and SEO — in structured batches.4---56# PageSpeed Enhancer Skill78A structured, batch-wise audit-and-fix workflow for all four Lighthouse pillars. Always follow the batch flow in order. Never jump straight to fixes without completing the scan and risk assessment phases.910---1112## Detailed Guide1314Read [the detailed guide](references/detailed-guide.md) before executing this skill. It retains the complete procedure and reference material. Treat its safety, prerequisites, and validation requirements as mandatory. For focused work, load the relevant sections; for end-to-end work, read the guide completely.1516## When to Use This Skill1718- User pastes a PageSpeed Insights report or mentions Lighthouse scores19- User asks to improve Core Web Vitals (LCP, FCP, CLS, TBT, SI)20- User needs help with render-blocking resources, unused JavaScript, image optimisation, security headers, ARIA compliance, or SEO meta-tag fixes21- User asks "why is my LCP slow", "fix accessibility issues", "improve my SEO score", or "my site scores 80 on performance"22- Any mention of PageSpeed, Lighthouse, Web Vitals, or site speed2324---2526## Examples2728### Example 1: User pastes a PageSpeed report2930**User:** "My site scores 65 on Performance. LCP is 4.2s."3132**Agent:**331. Parses the score summary table — identifies LCP as critical bottleneck342. Runs Batch A scan — finds lazy-loaded hero image and render-blocking CSS353. Outputs risk report: F1.1 (CSS @import → link) ranked P1, F1.5 (LCP image eager) ranked P1364. Applies Fix Batch 1, verifies with re-test3738### Example 2: User asks about slow LCP3940**User:** "Why is my LCP slow?"4142**Agent:**431. Asks for a PageSpeed report URL or pasted results442. Runs LCP-specific audit from Batch A — checks TTFB, element render delay, lazy loading453. Identifies the LCP element, its current loading strategy, and the critical path chain464. Recommends targeted fix (preload, eager loading, or server response time improvement)4748---4950## Limitations5152- Does not run actual Lighthouse or PageSpeed tests — the user must provide the report or URL53- Security header recommendations assume the user controls the deployment platform (Netlify, Vercel, etc.)54- Fixes are general patterns; exact file paths and config syntax may vary by project setup55- Does not cover server-level optimisations (CDN config, PHP opcode caching, database queries, etc.)56- Image conversion commands assume the user has the required tools installed (cwebp, sharp, Pillow)57- CSP guidance uses a report-only iterative approach — the final policy must be tuned to each project's actual resource origins5859---