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.
What this skill does
# 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-Subparts.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"** →
Related in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.