Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Audits stylesheet loading, inline CSS volume, image alt text, image formats, and Next.js Image component usage. Use when checking page speed related to HTML structure. For render-blocking scripts, image dimensions, lazy loading, and resource hints, see the core-web-vitals skill.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 82% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -46% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -58% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -55% | 0% |
| case-21 | ✗→✓ | ▲ Improved | -32% | 0% |
Audit HTML-level factors that affect page load speed.
> Note: Render-blocking scripts, image dimensions/lazy loading, preconnect hints, and font loading are handled by the core-web-vitals skill. Do not duplicate those checks here.
Count all <script src="..."> elements:
Measure total character count of all style="..." attributes + <style> element contents:
| Condition | Status | |---|---| | Total > 5000 characters | ⚠️ WARN "Move styles to external stylesheet for caching" | | Total ≤ 5000 | ✅ PASS |
<link rel="stylesheet"> elements| Condition | Status | |---|---| | All images have alt attribute | ✅ PASS | | Any image missing alt | ❌ FAIL "Critical for SEO and accessibility" |
.jpg, .jpeg, .png, .gif extensions → ⚠️ WARN "Consider WebP or AVIF for smaller file sizes"/_next/image src → ⚠️ WARN "Consider using Next.js <Image> component for automatic optimization"<script> tags (no src) should be counted separately from external scripts — they contribute to page weight but not network requests<style> elements inside <noscript> blocks should be excluded from inline CSS volumesrc="data:image/...") bypass network loading but increase HTML size — flag as ⚠️ WARN if total base64 content exceeds 10KB<img src="*.svg">) do not need WebP/AVIF conversion — exclude from image format checks<Image> component detection: look for /_next/image in src or srcset attributes, or data-nimg attributeOther measured skills in the registry, with their headline benchmark lift.