← スキル一覧に戻る

performance-audit
by Manuelvillarvieites
⭐ 0🍴 0📅 2026年1月20日
SKILL.md
name: performance-audit description: Run Lighthouse audit and verify Core Web Vitals. Use at project end before release. Triggers on "performance", "Lighthouse", "Core Web Vitals", "speed test", "page speed".
Performance Audit
Verify website performance meets Core Web Vitals standards.
Core Web Vitals Targets
| Metric | Target | What it measures |
|---|---|---|
| LCP | < 2.5s | Largest Contentful Paint (loading) |
| FID | < 100ms | First Input Delay (interactivity) |
| CLS | < 0.1 | Cumulative Layout Shift (stability) |
Audit Process
1. Run Lighthouse
# Using Chrome DevTools
# 1. Open site in Chrome
# 2. DevTools > Lighthouse tab
# 3. Run audit (Mobile + Desktop)
# Or CLI
npx lighthouse https://localhost:3000 --view
2. Check Results
Target Scores:
- Performance: > 90
- Accessibility: > 90
- Best Practices: > 90
- SEO: > 90
3. Common Issues & Fixes
LCP Issues:
- Add
priorityto above-fold images - Preload critical fonts
- Use Next.js Image component
- Enable image optimization
CLS Issues:
- Set explicit width/height on images
- Reserve space for dynamic content
- Avoid layout shifts from fonts
FID Issues:
- Minimize JavaScript bundle
- Use dynamic imports for heavy components
- Defer non-critical scripts
Checklist
Images:
- All images use WebP format
- Above-fold images have
priority - Images have width/height set
- Responsive images use
sizesprop
Fonts:
- Fonts loaded via next/font
- Font display: swap enabled
- No flash of unstyled text
JavaScript:
- No unused dependencies
- Dynamic imports for heavy components
- No render-blocking scripts
General:
- Lighthouse Performance > 90
- No console errors
- Mobile responsive
- HTTPS enabled
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です