vendor-all
Installation
SKILL.md
When to use this skill
- You are building a web project and it loads assets from a CDN.
- You want to remove trackers and keep the site offline-capable.
- You need to pin a version of a JS, CSS, or font dependency.
How to use
- Audit the HTML for remote URLs, analytics, and social embeds.
- Download assets with
wgetorcurl, or install from npm and copy out the needed files. - Rewrite links to point at
assets/vendor/, keep license/attribution notes, and add subresource integrity. - Use
npm/pnpm/yarnwhere you need lockfiles and version pinning.
Examples
- "Replace a Google Fonts link with self-hosted
woff2files." - "Vendor
htmxandbootstrapintoassets/vendor/with SRI hashes." - "Build a
LICENSES.mdfor all vendored assets."