web-perf

작성자: Cloudflare

Chrome DevTools MCP를 사용하여 웹 성능을 분석합니다. 핵심 웹 바이탈(FCP, LCP, TBT, CLS, 속도 지수)을 측정하고, 렌더링 차단 리소스, 네트워크 종속성 체인, 레이아웃 변경, 캐싱 문제 및 접근성 격차를 식별합니다. 페이지 로드 성능, Lighthouse 점수 또는 사이트 속도를 감사, 프로파일링, 디버깅 또는 최적화하라는 요청이 있을 때 사용합니다.

npx skills add https://github.com/cloudflare/skills --skill web-perf

Web Performance Audit

Your knowledge of web performance metrics, thresholds, and tooling APIs may be outdated. Prefer retrieval over pre-training when citing specific numbers or recommendations.

Retrieval Sources

SourceHow to retrieveUse for
web.devhttps://web.dev/articles/vitalsCore Web Vitals thresholds, definitions
Chrome DevTools docshttps://developer.chrome.com/docs/devtools/performanceTooling APIs, trace analysis
Lighthouse scoringhttps://developer.chrome.com/docs/lighthouse/performance/performance-scoringScore weights, metric thresholds

FIRST: Verify MCP Tools Available

Run this before starting. Try calling navigate_page or performance_start_trace. If unavailable, STOP—the chrome-devtools MCP server isn't configured.

Ask the user to add this to their MCP config:

"chrome-devtools": {
  "type": "local",
  "command": ["npx", "-y", "chrome-devtools-mcp@latest"]
}

Key Guidelines

  • Be assertive: Verify claims by checking network requests, DOM, or codebase—then state findings definitively.
  • Verify before recommending: Confirm something is unused before suggesting removal.
  • Quantify impact: Use estimated savings from insights. Don't prioritize changes with 0ms impact.
  • Skip non-issues: If render-blocking resources have 0ms estimated impact, note but don't recommend action.
  • Be specific: Say "compress hero.png (450KB) to WebP" not "optimize images".
  • Prioritize ruthlessly: A site with 200ms LCP and 0 CLS is already excellent—say so.

Quick Reference

TaskTool Call
Load pagenavigate_page(url: "...")
Start traceperformance_start_trace(autoStop: true, reload: true)
Analyze insightperformance_analyze_insight(insightSetId: "...", insightName: "...")
List requestslist_network_requests(resourceTypes: ["Script", "Stylesheet", ...])
Request detailsget_network_request(reqid: <id>)
A11y snapshottake_snapshot(verbose: true)

Workflow

Copy this checklist to track progress:

Audit Progress:
- [ ] Phase 1: Performance trace (navigate + record)
- [ ] Phase 2: Core Web Vitals analysis (includes CLS culprits)
- [ ] Phase 3: Network analysis
- [ ] Phase 4: Accessibility snapshot
- [ ] Phase 5: Codebase analysis (skip if third-party site)

Phase 1: Performance Trace

  1. Navigate to the target URL:

    navigate_page(url: "<target-url>")
    
  2. Start a performance trace with reload to capture cold-load metrics:

    performance_start_trace(autoStop: true, reload: true)
    
  3. Wait for trace completion, then retrieve results.

Troubleshooting:

  • If trace returns empty or fails, verify the page loaded correctly with navigate_page first
  • If insight names don't match, inspect the trace response to list available insights

Phase 2: Core Web Vitals Analysis

Use performance_analyze_insight to extract key metrics.

Note: Insight names may vary across Chrome DevTools versions. If an insight name doesn't work, check the insightSetId from the trace response to discover available insights.

Common insight names:

MetricInsight NameWhat to Look For
LCPLCPBreakdownTime to largest contentful paint; breakdown of TTFB, resource load, render delay
CLSCLSCulpritsElements causing layout shifts (images without dimensions, injected content, font swaps)
Render BlockingRenderBlockingCSS/JS blocking first paint
Document LatencyDocumentLatencyServer response time issues
Network DependenciesNetworkRequestsDepGraphRequest chains delaying critical resources

Example:

performance_analyze_insight(insightSetId: "<id-from-trace>", insightName: "LCPBreakdown")

Key thresholds (good/needs-improvement/poor):

  • TTFB: < 800ms / < 1.8s / > 1.8s
  • FCP: < 1.8s / < 3s / > 3s
  • LCP: < 2.5s / < 4s / > 4s
  • INP: < 200ms / < 500ms / > 500ms
  • TBT: < 200ms / < 600ms / > 600ms
  • CLS: < 0.1 / < 0.25 / > 0.25
  • Speed Index: < 3.4s / < 5.8s / > 5.8s

Phase 3: Network Analysis

List all network requests to identify optimization opportunities:

list_network_requests(resourceTypes: ["Script", "Stylesheet", "Document", "Font", "Image"])

Look for:

  1. Render-blocking resources: JS/CSS in <head> without async/defer/media attributes
  2. Network chains: Resources discovered late because they depend on other resources loading first (e.g., CSS imports, JS-loaded fonts)
  3. Missing preloads: Critical resources (fonts, hero images, key scripts) not preloaded
  4. Caching issues: Missing or weak Cache-Control, ETag, or Last-Modified headers
  5. Large payloads: Uncompressed or oversized JS/CSS bundles
  6. Unused preconnects: If flagged, verify by checking if ANY requests went to that origin. If zero requests, it's definitively unused—recommend removal. If requests exist but loaded late, the preconnect may still be valuable.

For detailed request info:

get_network_request(reqid: <id>)

Phase 4: Accessibility Snapshot

Take an accessibility tree snapshot:

take_snapshot(verbose: true)

Flag high-level gaps:

  • Missing or duplicate ARIA IDs
  • Elements with poor contrast ratios (check against WCAG AA: 4.5:1 for normal text, 3:1 for large text)
  • Focus traps or missing focus indicators
  • Interactive elements without accessible names

Phase 5: Codebase Analysis

Skip if auditing a third-party site without codebase access.

Analyze the codebase to understand where improvements can be made.

Detect Framework & Bundler

Search for configuration files to identify the stack:

ToolConfig Files
Webpackwebpack.config.js, webpack.*.js
Vitevite.config.js, vite.config.ts
Rolluprollup.config.js, rollup.config.mjs
esbuildesbuild.config.js, build scripts with esbuild
Parcel.parcelrc, package.json (parcel field)
Next.jsnext.config.js, next.config.mjs
Nuxtnuxt.config.js, nuxt.config.ts
SvelteKitsvelte.config.js
Astroastro.config.mjs

Also check package.json for framework dependencies and build scripts.

Tree-Shaking & Dead Code

  • Webpack: Check for mode: 'production', sideEffects in package.json, usedExports optimization
  • Vite/Rollup: Tree-shaking enabled by default; check for treeshake options
  • Look for: Barrel files (index.js re-exports), large utility libraries imported wholesale (lodash, moment)

Unused JS/CSS

  • Check for CSS-in-JS vs. static CSS extraction
  • Look for PurgeCSS/UnCSS configuration (Tailwind's content config)
  • Identify dynamic imports vs. eager loading

Polyfills

  • Check for @babel/preset-env targets and useBuiltIns setting
  • Look for core-js imports (often oversized)
  • Check browserslist config for overly broad targeting

Compression & Minification

  • Check for terser, esbuild, or swc minification
  • Look for gzip/brotli compression in build output or server config
  • Check for source maps in production builds (should be external or disabled)

Output Format

Present findings as:

  1. Core Web Vitals Summary - Table with metric, value, and rating (good/needs-improvement/poor)
  2. Top Issues - Prioritized list of problems with estimated impact (high/medium/low)
  3. Recommendations - Specific, actionable fixes with code snippets or config changes
  4. Codebase Findings - Framework/bundler detected, optimization opportunities (omit if no codebase access)

Cloudflare의 다른 스킬

agents-sdk
Cloudflare
Cloudflare Workers에서 Agents SDK를 사용하여 AI 에이전트를 구축하세요. 상태 기반 에이전트, 지속형 워크플로우, 실시간 WebSocket 앱, 예약 작업, MCP 서버 또는 채팅 애플리케이션을 만들 때 로드하세요. Agent 클래스, 상태 관리, 호출 가능 RPC, Workflows 통합 및 React 훅을 다룹니다.
official
building-ai-agent-on-cloudflare
Cloudflare
| Cloudflare에서 Agents SDK를 사용하여 상태 관리, 실시간 WebSocket, 예약 작업, 도구 통합 및 채팅 기능을 갖춘 AI 에이전트를 구축합니다. Workers에 배포되는 프로덕션 준비 에이전트 코드를 생성합니다. 사용 시기: 사용자가 "에이전트 구축", "AI 에이전트", "채팅 에이전트", "상태 저장 에이전트"를 원하거나, "Agents SDK"를 언급하거나, "실시간 AI", "WebSocket AI"가 필요하거나, 에이전트 "상태 관리", "예약 작업" 또는 "도구 호출"에 대해 질문할 때.
developmentofficial
building-mcp-server-on-cloudflare
Cloudflare
Cloudflare Workers에서 도구, OAuth 인증, 프로덕션 배포를 포함한 원격 MCP(Model Context Protocol) 서버를 구축합니다. 서버 코드를 생성하고, 인증 제공자를 구성하며, Workers에 배포합니다. 사용 시점: 사용자가 "MCP 서버 구축", "MCP 도구 생성", "원격 MCP", "MCP 배포", "MCP에 OAuth 추가"를 원하거나 Cloudflare에서 Model Context Protocol을 언급할 때. 또한 "MCP 인증" 또는 "MCP 배포"가 언급될 때도 트리거됩니다.
developmentofficial
cloudflare
Cloudflare
Cloudflare 플랫폼 전반을 다루는 스킬로, Workers, Pages, 스토리지(KV, D1, R2), AI(Workers AI, Vectorize, Agents SDK), 네트워킹(Tunnel, Spectrum), 보안(WAF, DDoS), 그리고 인프라스트럭처-애즈-코드(Terraform, Pulumi)를 포함합니다. 모든 Cloudflare 개발 작업에 사용하세요.
official
durable-objects
Cloudflare
Cloudflare Durable Objects를 생성하고 검토합니다. 상태 저장 조정(채팅방, 멀티플레이어 게임, 예약 시스템)을 구축하거나, RPC 메서드, SQLite 스토리지, 알람, WebSocket을 구현하거나, DO 코드를 모범 사례에 따라 검토할 때 사용합니다. Workers 통합, wrangler 구성, Vitest를 사용한 테스트를 다룹니다.
official
sandbox-sdk
Cloudflare
샌드박스 애플리케이션을 구축하여 안전한 코드 실행을 지원합니다. AI 코드 실행, 코드 인터프리터, CI/CD 시스템, 대화형 개발 환경을 구축하거나 신뢰할 수 없는 코드를 실행할 때 로드하세요. Sandbox SDK 수명 주기, 명령어, 파일, 코드 인터프리터 및 미리보기 URL을 다룹니다.
official
workers-best-practices
Cloudflare
Cloudflare Workers 코드를 프로덕션 모범 사례에 따라 검토하고 작성합니다. 새 Workers를 작성하거나, Worker 코드를 검토하거나, wrangler.jsonc를 구성하거나, 일반적인 Workers 안티 패턴(스트리밍, 플로팅 프로미스, 전역 상태, 시크릿, 바인딩, 관찰 가능성)을 확인할 때 로드합니다. 사전 학습된 지식보다 Cloudflare 문서에서 검색하는 것을 선호합니다.
official
wrangler
Cloudflare
Cloudflare Workers CLI를 사용하여 Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines 및 Secrets Store를 배포, 개발 및 관리할 수 있습니다. wrangler 명령어를 실행하기 전에 로드하여 올바른 구문과 모범 사례를 준수하세요.
official