webperf-media
Intelligent media optimization with automated workflows for images, videos, and SVGs. Includes decision trees that detect LCP images (triggers format/lazy-loading/priority analysis), identify layout shift risks (missing dimensions), and flag lazy loading issues (above-fold lazy or below-fold eager). Features workflows for complete media audit, LCP image investigation, video performance (poster optimization), and SVG embedded bitmap detection. Cross-skill integration with Core Web Vitals (LCP/CLS impact) and Loading (priority hints, resource preloading). Provides performance budgets and format recommendations based on content type. Use when the user asks about image optimization, LCP is an image/video, layout shifts from media, or media loading strategy. Compatible with Chrome DevTools MCP.
Best use case
webperf-media is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Intelligent media optimization with automated workflows for images, videos, and SVGs. Includes decision trees that detect LCP images (triggers format/lazy-loading/priority analysis), identify layout shift risks (missing dimensions), and flag lazy loading issues (above-fold lazy or below-fold eager). Features workflows for complete media audit, LCP image investigation, video performance (poster optimization), and SVG embedded bitmap detection. Cross-skill integration with Core Web Vitals (LCP/CLS impact) and Loading (priority hints, resource preloading). Provides performance budgets and format recommendations based on content type. Use when the user asks about image optimization, LCP is an image/video, layout shifts from media, or media loading strategy. Compatible with Chrome DevTools MCP.
Teams using webperf-media should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/webperf-media/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How webperf-media Compares
| Feature / Agent | webperf-media | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Intelligent media optimization with automated workflows for images, videos, and SVGs. Includes decision trees that detect LCP images (triggers format/lazy-loading/priority analysis), identify layout shift risks (missing dimensions), and flag lazy loading issues (above-fold lazy or below-fold eager). Features workflows for complete media audit, LCP image investigation, video performance (poster optimization), and SVG embedded bitmap detection. Cross-skill integration with Core Web Vitals (LCP/CLS impact) and Loading (priority hints, resource preloading). Provides performance budgets and format recommendations based on content type. Use when the user asks about image optimization, LCP is an image/video, layout shifts from media, or media loading strategy. Compatible with Chrome DevTools MCP.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for ChatGPT
Find the best AI skills to adapt into ChatGPT workflows for research, writing, summarization, planning, and repeatable assistant tasks.
AI Agent for YouTube Script Writing
Find AI agent skills for YouTube script writing, video research, content outlining, and repeatable channel production workflows.
SKILL.md Source
# WebPerf: Media Performance JavaScript snippets for measuring web performance in Chrome DevTools. Execute with `mcp__chrome-devtools__evaluate_script`, capture output with `mcp__chrome-devtools__get_console_message`. ## Scripts - `scripts/Image-Element-Audit.js` — Image Element Audit - `scripts/SVG-Embedded-Bitmap-Analysis.js` — SVG Embedded Bitmap Analysis - `scripts/Video-Element-Audit.js` — Video Element Audit ## Common Workflows ### Complete Media Audit When the user asks for media optimization or "audit images and videos": 1. **Image-Element-Audit.js** - Analyze all images (format, lazy loading, sizing, fetchpriority) 2. **Video-Element-Audit.js** - Analyze all videos (poster, preload, formats, autoplay) 3. **SVG-Embedded-Bitmap-Analysis.js** - Detect inefficient bitmap images embedded in SVGs ### Image Optimization Workflow When the user asks "optimize images" or "check image performance": 1. **Image-Element-Audit.js** - Full image audit 2. Cross-reference with **webperf-loading** skill: - Find-Above-The-Fold-Lazy-Loaded-Images.js (incorrectly lazy-loaded images) - Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js (missing lazy loading) - Find-Images-With-Lazy-and-Fetchpriority.js (contradictory attributes) - Priority-Hints-Audit.js (LCP image should have fetchpriority="high") ### Video Performance Audit When the user asks "optimize videos" or "check video performance": 1. **Video-Element-Audit.js** - Full video audit 2. Cross-reference with **webperf-core-web-vitals** skill: - LCP-Video-Candidate.js (check if video/poster is LCP) 3. Cross-reference with **webperf-loading** skill: - Priority-Hints-Audit.js (video poster priority) - Resource-Hints-Validation.js (video preload) ### LCP Image Investigation When LCP is an image and needs optimization: 1. Cross-reference with **webperf-core-web-vitals** skill: - LCP.js (measure LCP) - LCP-Image-Entropy.js (analyze image complexity) 2. **Image-Element-Audit.js** - Check format, dimensions, lazy loading 3. Cross-reference with **webperf-loading** skill: - Find-Above-The-Fold-Lazy-Loaded-Images.js (should NOT be lazy) - Priority-Hints-Audit.js (should have fetchpriority="high") - Resource-Hints-Validation.js (consider preload) ### Layout Shift from Images When CLS is caused by images without dimensions: 1. **Image-Element-Audit.js** - Check for missing width/height attributes 2. Cross-reference with **webperf-core-web-vitals** skill: - CLS.js (measure total CLS) 3. Cross-reference with **webperf-interaction** skill: - Layout-Shift-Loading-and-Interaction.js (when shifts occur) ### SVG Optimization Audit When the user asks about SVG performance or file sizes are large: 1. **SVG-Embedded-Bitmap-Analysis.js** - Detect raster images embedded in vector SVGs 2. Recommend SVGO optimization for SVGs without embedded bitmaps 3. Recommend extracting bitmaps to separate image files with proper formats ## Decision Tree Use this decision tree to automatically run follow-up snippets based on results: ### After Image-Element-Audit.js - **If images missing width/height attributes** → Layout shift risk, run: 1. **webperf-core-web-vitals:CLS.js** (measure CLS impact) 2. **webperf-interaction:Layout-Shift-Loading-and-Interaction.js** (timing of shifts) 3. Recommend adding explicit dimensions to all images - **If images using wrong format (JPEG for graphics, PNG for photos)** → Recommend: - Modern formats: WebP, AVIF - Appropriate format for content type - Format-specific compression settings - **If images much larger than display size** → Recommend: - Responsive images with srcset - Appropriate image CDN sizing - srcset with multiple sizes for different viewports - **If above-the-fold images are lazy-loaded** → Run: 1. **webperf-loading:Find-Above-The-Fold-Lazy-Loaded-Images.js** (confirm) 2. **webperf-core-web-vitals:LCP.js** (measure LCP impact) 3. Recommend removing loading="lazy" from above-fold images - **If LCP image lacks fetchpriority="high"** → Run: 1. **webperf-core-web-vitals:LCP.js** (measure current LCP) 2. **webperf-loading:Priority-Hints-Audit.js** (full priority audit) 3. Recommend adding fetchpriority="high" to LCP image - **If below-the-fold images are NOT lazy-loaded** → Run: 1. **webperf-loading:Find-non-Lazy-Loaded-Images-outside-of-the-viewport.js** (confirm) 2. Recommend adding loading="lazy" to offscreen images - **If images have both loading="lazy" AND fetchpriority="high"** → Run: 1. **webperf-loading:Find-Images-With-Lazy-and-Fetchpriority.js** (confirm contradiction) 2. Recommend removing one of the conflicting attributes - **If images competing with critical resources** → Run: 1. **webperf-loading:Find-render-blocking-resources.js** (resource priority conflicts) 2. **webperf-loading:TTFB-Resources.js** (identify slow image CDN) - **If images missing alt text** → Accessibility issue, recommend adding descriptive alt text ### After Video-Element-Audit.js - **If video is LCP candidate** → Run: 1. **webperf-core-web-vitals:LCP-Video-Candidate.js** (confirm) 2. **webperf-core-web-vitals:LCP.js** (measure LCP) 3. **webperf-core-web-vitals:LCP-Sub-Parts.js** (break down timing) 4. Optimize video poster image or consider image alternative - **If video missing poster** → Recommend: - Adding poster image for better perceived performance - Using first frame or custom thumbnail - Optimizing poster as you would an image - **If video uses preload="auto"** → Bandwidth concern, evaluate: - Is video above-the-fold? Keep preload="auto" - Is video below-the-fold? Change to preload="metadata" or "none" - Is autoplay intended? Verify preload matches intent - **If autoplay video without muted** → Browser will block, recommend: - Adding muted attribute - Or removing autoplay - **If video missing multiple formats** → Recommend: - WebM for Chrome/Firefox - MP4 as fallback for Safari - Order sources by efficiency (WebM first) - **If large video files (>5MB)** → Recommend: - Compression/transcoding - Adaptive bitrate streaming (HLS, DASH) - Loading strategy optimization ### After SVG-Embedded-Bitmap-Analysis.js - **If bitmap images found in SVGs** → Recommend: 1. Extract bitmaps to separate files 2. Use WebP/AVIF format for extracted images 3. Reference images from SVG with <image> element 4. Or convert to pure vector if possible - **If large embedded bitmaps (>100KB)** → Critical inefficiency: - SVG parsing overhead + large bitmap = worst of both worlds - Urgently recommend extraction - **If multiple small bitmaps in SVG** → Consider: - CSS sprites for small icons - SVG symbols for reusable graphics - Extracting to individual optimized images ### Performance Budget Thresholds Use these thresholds to trigger recommendations: **Image File Sizes:** - **Warning**: Individual image > 500KB → Check format and compression - **Critical**: Individual image > 1MB → Urgent optimization needed - **Total images**: > 5MB on initial load → Implement lazy loading **Image Formats:** - **JPEG for graphics/icons** → Recommend PNG or SVG - **PNG for photos** → Recommend JPEG, WebP, or AVIF - **GIF for animations** → Recommend video (MP4/WebM) or animated WebP - **No modern formats (WebP/AVIF)** → Recommend upgrading **Image Dimensions:** - **Intrinsic size > 2x display size** → Recommend responsive images - **Intrinsic size < display size** → Upscaling = blurry, provide larger source **Video File Sizes:** - **Warning**: Video > 10MB → Consider compression or streaming - **Critical**: Video > 50MB → Urgent optimization or streaming needed **Lazy Loading:** - **Above-fold images lazy-loaded** → Critical LCP impact, fix immediately - **Below-fold images NOT lazy-loaded** → Wasted bandwidth, implement lazy loading - **>10 images eager-loaded** → Excessive, implement lazy loading **Priority Hints:** - **LCP image without fetchpriority="high"** → Add for 10-30% LCP improvement - **Non-LCP images with fetchpriority="high"** → Remove, wasting browser hints - **Lazy + fetchpriority="high" conflict** → Fix contradiction ## References - `references/snippets.md` — Descriptions and thresholds for each script - `references/schema.md` — Return value schema for interpreting script output
Related Skills
webperf
Web performance measurement and debugging toolkit. Use when the user asks about web performance, wants to audit a page, or says "analyze performance", "debug lcp", "check ttfb", "measure core web vitals", "audit images", or similar.
webperf-resources
Intelligent network quality analysis with adaptive loading strategies. Detects connection type (2g/3g/4g), bandwidth, RTT, and save-data mode, then automatically triggers appropriate optimization workflows. Includes decision trees that recommend image compression for slow connections, critical CSS inlining for high RTT, and save-data optimizations (disable autoplay, reduce quality). Features connection-aware performance budgets (500KB for 2g, 1.5MB for 3g, 3MB for 4g+) and adaptive loading implementation guides. Cross-skill integration with Loading (TTFB impact), Media (responsive images), and Core Web Vitals (connection impact on LCP/INP). Use when the user asks about slow connections, mobile optimization, save-data support, or adaptive loading strategies. Compatible with Chrome DevTools MCP.
webperf-loading
Intelligent loading performance analysis with automated workflows for TTFB investigation (DNS/connection/server breakdown), render-blocking detection, script performance deep dive (first vs third-party attribution), font optimization, and resource hints validation. Includes decision trees that automatically analyze TTFB sub-parts when slow, detect script loading anti-patterns (async/defer/preload conflicts), identify render-blocking resources, and validate resource hints usage. Features workflows for complete loading audit (6 phases), backend performance investigation, and priority optimization. Cross-skill integration with Core Web Vitals (LCP resource loading), Interaction (script execution blocking), and Media (lazy loading strategy). Use when the user asks about TTFB, FCP, render-blocking, slow loading, font performance, script optimization, or resource hints. Compatible with Chrome DevTools MCP.
webperf-interaction
Intelligent interaction performance analysis with automated workflows for INP debugging, scroll jank investigation, and main thread blocking. Includes decision trees that automatically run script attribution when long frames detected, break down input latency phases, and correlate layout shifts with interactions. Features workflows for complete interaction audit, third-party script impact analysis, and animation performance debugging. Cross-skill integration with Core Web Vitals (INP/CLS correlation) and Loading (script execution analysis). Use when the user asks about slow interactions, janky scrolling, unresponsive pages, or INP optimization. Compatible with Chrome DevTools MCP.
webperf-core-web-vitals
Intelligent Core Web Vitals analysis with automated workflows and decision trees. Measures LCP, CLS, INP with guided debugging that automatically determines follow-up analysis based on results. Includes workflows for LCP deep dive (5 phases), CLS investigation (loading vs interaction), INP debugging (latency breakdown + attribution), and cross-skill integration with loading, interaction, and media skills. Use when the user asks about Core Web Vitals, LCP optimization, layout shifts, or interaction responsiveness. Compatible with Chrome DevTools MCP.
openclaw-media-gen
Generate images & videos with AIsa. Gemini 3 Pro Image (image) + Qwen Wan 2.6 (video) via one API key.
media-compress
Compress and convert images and videos using ffmpeg. Use when the user wants to reduce file size, change format, resize, or optimize media files. Handles common formats like JPG, PNG, WebP, MP4, MOV, WebM. Triggers on phrases like "compress image", "compress video", "reduce file size", "convert to webp/mp4", "resize image", "make image smaller", "batch compress", "optimize media".
transloadit-media-processing
Process media files (video, audio, images, documents) using Transloadit. Use when asked to encode video to HLS/MP4, generate thumbnails, resize or watermark images, extract audio, concatenate clips, add subtitles, OCR documents, or run any media processing pipeline. Covers 86+ processing robots for file transformation at scale.
media
Visual and video content creation — illustrations, diagrams, mermaid flowcharts, infographics, header images, PAI pack icons, thumbnails, comics, and programmatic video via Remotion. USE WHEN art, header images, visualizations, mermaid, diagrams, flowcharts, infographics, pack icons, video, animation, motion graphics, Remotion, video rendering, YouTube thumbnails, comics, comparisons, frameworks, maps, timelines, taxonomies, stats, aphorisms, recipe cards, annotated screenshots, D3 dashboards, embossed logo wallpaper, remove background, essay illustration, technical diagrams, content to animation, generate image, Midjourney.
remediating-s3-bucket-misconfiguration
This skill provides step-by-step procedures for identifying and remediating Amazon S3 bucket misconfigurations that expose sensitive data to unauthorized access. It covers enabling S3 Block Public Access at account and bucket levels, auditing bucket policies and ACLs, enforcing encryption, configuring access logging, and deploying automated remediation using AWS Config and Lambda.
performing-endpoint-vulnerability-remediation
Performs vulnerability remediation on endpoints by prioritizing CVEs based on risk scoring, deploying patches, applying configuration changes, and validating fixes. Use when remediating findings from vulnerability scans, responding to critical CVE advisories, or maintaining endpoint compliance with patch management SLAs. Activates for requests involving vulnerability remediation, CVE patching, endpoint vulnerability management, or security fix deployment.
implementing-vulnerability-remediation-sla
Vulnerability remediation SLAs define mandatory timeframes for patching or mitigating identified vulnerabilities based on severity, asset criticality, and exploit availability. Effective SLA programs