perf-astro

Astro Performance Playbook

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "perf-astro" with this command: npx skills add tech-leads-club/agent-skills/tech-leads-club-agent-skills-perf-astro

Astro Performance Playbook

Astro-specific optimizations for 95+ Lighthouse scores.

Quick Setup

npm install astro-critters @playform/compress

// astro.config.mjs import { defineConfig } from 'astro/config' import critters from 'astro-critters' import compress from '@playform/compress'

export default defineConfig({ integrations: [ critters(), compress({ CSS: true, HTML: true, JavaScript: true, Image: false, SVG: false, }), ], })

Integrations

astro-critters

Automatically extracts and inlines critical CSS. No configuration needed.

What it does:

  • Scans rendered HTML for above-the-fold elements

  • Inlines only the CSS those elements need

  • Lazy-loads the rest

Build output shows what it inlined:

Inlined 40.70 kB (80% of original 50.50 kB) of _astro/index.xxx.css.

@playform/compress

Minifies HTML, CSS, and JavaScript in the final build.

Options:

compress({ CSS: true, // Minify CSS HTML: true, // Minify HTML JavaScript: true, // Minify JS Image: false, // Skip if using external image optimization SVG: false, // Skip if SVGs are already optimized })

Layout Pattern

Structure your Layout.astro for performance:


import '../styles/global.css'

<!doctype html> <html lang="pt-BR"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />

&#x3C;!-- Font fallback (prevents FOIT) -->
&#x3C;style>
  @font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter');
  }
&#x3C;/style>

&#x3C;!-- Non-blocking Google Fonts -->
&#x3C;link rel="preconnect" href="https://fonts.googleapis.com">
&#x3C;link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
&#x3C;link
  rel="stylesheet"
  href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&#x26;display=swap"
  media="print"
  onload="this.media='all'"
/>
&#x3C;noscript>
  &#x3C;link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&#x26;display=swap">
&#x3C;/noscript>

&#x3C;!-- Preload LCP images -->
&#x3C;link rel="preload" as="image" href="/hero.png" fetchpriority="high">

&#x3C;title>{title}&#x3C;/title>

&#x3C;!-- Defer third-party scripts -->
&#x3C;script>
  let loaded = false;
  function loadAnalytics() {
    if (loaded) return;
    loaded = true;
    // Load GTM, analytics, etc.
  }
  ['scroll', 'click', 'touchstart'].forEach(e => {
    document.addEventListener(e, loadAnalytics, { once: true, passive: true });
  });
  setTimeout(loadAnalytics, 5000);
&#x3C;/script>

</head> <body> <slot /> </body> </html>

Measuring

npx lighthouse https://your-site.com --preset=perf --form-factor=mobile

See also:

  • perf-lighthouse - Running audits, reading reports, setting budgets

  • perf-web-optimization - Core Web Vitals, bundle size, caching strategies

Checklist

  • astro-critters installed and configured

  • @playform/compress installed and configured

  • Google Fonts use media="print" onload pattern

  • Third-party scripts deferred to user interaction

  • LCP images preloaded in <head>

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

subagent-creator

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

technical-design-doc-creator

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

perf-lighthouse

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

decomposition-planning-roadmap

No summary provided by upstream source.

Repository SourceNeeds Review