Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

webperf-media网络性能媒体

Agent Skill

webperf-media 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,570

周安装

105

GitHub Stars

1,405

下载量

823
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:webperf-media(网络性能媒体)
来源仓库:https://github.com/nucliweb/webperf-snippets
仓库路径:skills/webperf-media
安装命令:
npx skills add https://github.com/nucliweb/webperf-snippets --skill webperf-media
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nucliweb/webperf-snippets --skill webperf-media

简介

webperf-media 用于查找、检索和筛选相关信息。

  • 适用于根据关键词或任务场景从来源中获取信息的场景。
  • 通过 npx skills add 命令安装,建议查看原始 README 掌握用法。
  • 使用前需确认权限与维护状态,避免触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

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)

  1. 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)

  1. Image-Element-Audit.js - Check format, dimensions, lazy loading
  2. 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)

  1. 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 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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.22%
按下载量换算273

Claude

31.11%
按下载量换算256

Cursor

18.84%
按下载量换算155

Gemini CLI

8.87%
按下载量换算73

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills