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

preloadpreload 搜索

Agent Skill

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

总安装

6,452

周安装

261

GitHub Stars

173

下载量

2,025
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/patternsdev/skills --skill preload

简介

Preload 搜索技能用于查找、检索和筛选相关信息,支持关键词和场景匹配。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的技能。
  • 需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • preload 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Preload

Table of Contents

Preload (<link rel="preload">) is a browser optimization that allows critical resources (that may be discovered late) to be requested earlier. If you are comfortable thinking about how to manually order the loading of your key resources, it can have a positive impact on loading performance and metrics in the Core Web Vitals. That said, preload is not a panacea and requires an awareness of some trade-offs.

When to Use

  • Use this when critical resources (fonts, scripts, images) are discovered late in the loading process
  • This is helpful for improving Time To Interactive (TTI) and Largest Contentful Paint (LCP)

When NOT to Use

  • For non-critical resources — preloading too many assets delays the resources that actually matter for initial render
  • When resources are already discovered early by the browser's preload scanner (e.g., inline <script> tags in <head>)
  • When overuse leads to browser warnings about unused preloaded resources, indicating wasted bandwidth

Instructions

  • Use <link rel="preload"> for resources needed immediately on the current page
  • Be careful not to delay First Contentful Paint by preloading too many resources
  • Use as attribute to specify the resource type (script, style, font, image)
  • For fonts and other CORS-fetched resources, set crossorigin on the preload to match the eventual request mode
  • Only preload resources that must be visible within ~1 second of initial render

Details

<link rel="preload" href="emoji-picker.js" as="script">
...
</head>
<body>
  ...
  <script src="stickers.js" defer></script>
  <script src="video-sharing.js" defer></script>
  <script src="emoji-picker.js" defer></script>

When optimizing for metrics like Time To Interactive or First Input Delay, preload can be useful to load JavaScript bundles (or chunks) that are necessary for interactivity. Keep in mind that great care is needed when using preload as you want to avoid improving interactivity at the cost of delaying resources (like hero images or fonts) necessary for First Contentful Paint or Largest Contentful Paint.

If you are trying to optimize the loading of first-party JavaScript, you can also consider using <script defer> in the document <head> vs. <body> to help with early discover of these resources.

Preload in single-page apps

While prefetching is a great way to cache resources that may be requested some time soon, we can preload resources that need to be used instantly. Maybe it's a certain font that is used on the initial render, or certain images that the user sees right away.

Say our EmojiPicker component should be visible instantly on the initial render. Although it should not be included in the main bundle, it *should* get loaded in parallel. Just like *prefetch*, we can add a magic comment in order to let Webpack know that this module should be preloaded.

const EmojiPicker = import(/* webpackPreload: true */ "./EmojiPicker");
Webpack 4.6.0+ allows preloading of resources by adding /* webpackPreload: true */ to the import. In order to make preloading work in older versions of webpack, you'll need to add the preload-webpack-plugin to your webpack config.

After building the application, we can see that the EmojiPicker will be preloaded.

 Asset                             Size       Chunks                          Chunk Names
    emoji-picker.bundle.js         1.49 KiB   emoji-picker [emitted]          emoji-picker
    vendors~emoji-picker.bundle.js 171 KiB    vendors~emoji-picker [emitted]  vendors~emoji-picker
    main.bundle.js                 1.34 MiB   main  [emitted]                 main

Entrypoint main = main.bundle.js
(preload: vendors~emoji-picker.bundle.js emoji-picker.bundle.js)

The actual output is visible as a link tag with rel="preload" in the head of our document.

<link rel="preload" href="emoji-picker.bundle.js" as="script" />
<link rel="preload" href="vendors~emoji-picker.bundle.js" as="script" />

The preloaded EmojiPicker could be loaded in parallel with the initial bundle. Unlike prefetch, where the browser still had a say in whether it thinks it's got a good enough internet connection and bandwidth to actually prefetch the resource, a preloaded resource will get preloaded no matter what.

Instead of having to wait until the EmojiPicker gets loaded after the initial render, the resource will be available to us instantly! As we're loading assets with smarter ordering, the initial loading time may increase significantly depending on your users device and internet connection. Only preload the resources that have to be visible ~1 second after the initial render.

Preload + the async hack

Should you wish for browsers to download a script as high-priority, but not block the parser waiting for a script, you can take advantage of the preload + async hack below. The download of other resources may be delayed by the preload in this case, but this is a trade-off a developer has to make:

<link rel="preload" href="emoji-picker.js" as="script">
<script src="emoji-picker.js" async>

Font preloads must use crossorigin

Fonts are fetched as CORS resources, even when they are self-hosted on the same origin. This means the preload request and the eventual @font-face request need to use the same fetch mode, or the preload cannot be reused.

If you preload a font without crossorigin, the browser will typically make a no-cors preload request and later a separate cors request when CSS discovers the font. That leads to a double fetch of the same file and wastes bandwidth.

Avoid:

<link rel="preload" href="/fonts/inter-roman.woff2" as="font" type="font/woff2">

Prefer:

<link
  rel="preload"
  href="/fonts/inter-roman.woff2"
  as="font"
  type="font/woff2"
  crossorigin
>

And make sure the @font-face matches the same resource:

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-roman.woff2") format("woff2");
  font-display: swap;
}

This same rule applies more broadly: if the eventual consumer fetches a resource with CORS semantics, the preload should match that mode too.

Preload in Chrome 95+

Thanks to some fixes to preload's queue-jumping behavior in Chrome 95+, the feature is slightly safer to use more broadly. Pat Meenan of Chrome's new recommendations for preload suggest:

  • Putting it in HTTP headers will jump ahead of everything else
  • Generally, preloads will load in the order the parser gets to them for anything >= Medium so be careful putting preloads at the beginning of the HTML.
  • Font preloads are probably best towards the end of the head or beginning of the body
  • Import preloads should be done after the script tag that needs the import (so the actual script gets loaded/parsed first)
  • Image preloads will have a low priority and should be ordered relative to async scripts and other low/lowest priority tags

Conclusions

Again, use preload sparingly and measure its impact in production. If the preload for your image is earlier in the document than it is, this can help browsers discover it (and order relative to other resources). When used incorrectly, preloading can cause your image to delay First Contentful Paint (e.g CSS, Fonts) - the opposite of what you want. Also note that for such reprioritization efforts to be effective, it also depends on servers prioritizing requests correctly.

You may also find <link rel="preload"> to be helpful for cases where you need to fetch scripts without executing them.

A variety of web.dev articles touch on how to use Preload to:

Source

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.24%
按下载量换算774

Claude

30.86%
按下载量换算625

Cursor

18.76%
按下载量换算380

Gemini CLI

9.65%
按下载量换算195

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills