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

configure-cache-busting配置缓存清除

Agent Skill

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

总安装

1,346

周安装

55

GitHub Stars

28

下载量

436
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-cache-busting

简介

configure-cache-busting 配置内容哈希和缓存清除策略,优化资源加载。

  • 适用于 Next.js、Vite 构建和 CDN 缓存头设置。
  • 帮助解决构建输出不一致和缓存未更新问题。
  • 安装前请确认权限范围、维护状态及是否会修改构建脚本。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

When to Use This Skill

Use this skill when...Use another approach when...
Configuring content hashing for Next.js or Vite buildsOptimizing server-side caching (nginx, CDN config directly)
Setting up CDN cache headers for Vercel or CloudflareDebugging build output issues (system-debugging agent)
Verifying cache-busting compliance after a framework upgradeConfiguring general CI/CD workflows (/configure:workflows)
Adding build verification scripts for hashed assetsSetting up container builds (/configure:container)
Auditing static asset caching strategy across a projectProfiling frontend performance (browser devtools)

Context

  • Project root:!pwd
  • Package files:!find. -maxdepth 1 -name 'package.json'
  • Next.js config:!find. -maxdepth 1 -name 'next.config.*'
  • Vite config:!find. -maxdepth 1 -name 'vite.config.*'
  • Build output:!find. -maxdepth 1 -type d \(-name '.next' -o -name 'dist' -o -name 'out' \)
  • CDN config:!find. -maxdepth 2 \(-path './vercel.json' -o -path './_headers' -o -path './_redirects' -o -path './public/_headers' \)
  • Project standards:!find. -maxdepth 1 -name '.project-standards.yaml'

Parameters

Parse from command arguments:

  • --check-only: Report compliance status without modifications (CI/CD mode)
  • --fix: Apply fixes automatically without prompting
  • --framework <nextjs|vite>: Override framework detection
  • --cdn <cloudflare|vercel|none>: Specify CDN provider for cache header configuration

Execution

Execute this cache-busting configuration check:

Step 1: Detect project framework

Identify the framework from file structure:

IndicatorFrameworkConfig File
next.config.js or next.config.mjsNext.jsnext.config.*
next.config.tsNext.jsnext.config.ts
vite.config.js or vite.config.tsVitevite.config.*
.next/ directoryNext.js (built)Detection only
dist/ directory + vite in package.jsonVite (built)Detection only

Check package.json dependencies for "next" or "vite".

If both detected, prompt user to specify with --framework. If neither detected, report unsupported and exit.

Step 2: Analyze current cache-busting state

For the detected framework, read config files and check:

Next.js - Read next.config.js/ts and check:

  • generateBuildId configured for deterministic builds
  • assetPrefix configured for CDN
  • compress: true enabled
  • poweredByHeader: false for security
  • generateEtags configured
  • Cache headers configured in headers() function

Vite - Read vite.config.js/ts and check:

  • build.rollupOptions.output.entryFileNames uses [hash]
  • build.rollupOptions.output.chunkFileNames uses [hash]
  • build.rollupOptions.output.assetFileNames uses [hash]
  • build.manifest: true for SSR/manifest-based routing
  • build.cssCodeSplit configured appropriately

Step 3: Detect CDN provider

Identify CDN from project files:

IndicatorCDN Provider
vercel.json existsVercel
.vercelignore existsVercel
_headers in root or public/Cloudflare Pages
_redirects existsCloudflare Pages / Netlify
wrangler.toml existsCloudflare Workers/Pages
None of the aboveGeneric / None

Step 4: Generate compliance report

Print a formatted compliance report:

Cache-Busting Compliance Report
================================
Project: [name]
Framework: [Next.js 14.x | Vite 5.x]
CDN Provider: [Vercel | Cloudflare | None detected]

Framework Configuration:
  Config file             next.config.js              [EXISTS | MISSING]
  Asset hashing           [hash] in filenames         [ENABLED | DISABLED]
  Build manifest          manifest files              [GENERATED | MISSING]
  Deterministic builds    Build ID configured         [PASS | NOT SET]
  Compression             gzip/brotli enabled         [PASS | DISABLED]

Cache Headers:
  Static assets           immutable, 1y               [CONFIGURED | MISSING]
  HTML files              no-cache, must-revalidate   [CONFIGURED | MISSING]
  API routes              varies by route             [CONFIGURED | N/A]
  CDN configuration       vercel.json/_headers        [EXISTS | MISSING]

Build Output (if built):
  Hashed filenames        app.[hash].js               [DETECTED | NOT BUILT]
  Content addressing      Unique hashes per version   [PASS | DUPLICATE]
  Manifest integrity      Valid manifest.json         [PASS | INVALID]

Overall: [X issues found]

Recommendations:
  [List specific fixes needed]

If --check-only, stop here.

Step 5: Apply configuration (if --fix or user confirms)

Based on detected framework, create or update config files using templates from REFERENCE.md:

  1. Next.js: Update next.config.js/ts with deterministic builds, compression, cache headers
  2. Vite: Update vite.config.js/ts with content hashing, manifest, chunk splitting

Step 6: Configure CDN cache headers

Based on detected CDN provider, create or update cache header configuration using templates from REFERENCE.md:

  • Vercel: Create/update vercel.json with header rules
  • Cloudflare Pages: Create public/_headers with cache rules
  • Generic: Provide nginx configuration reference

Step 7: Add build verification

Create scripts/verify-cache-busting.js to verify content hashing works after build. Add package.json scripts for build verification. Use the verification script template from REFERENCE.md.

Step 8: Configure CI/CD verification

Add cache-busting verification step to GitHub Actions workflow. Use the CI workflow template from REFERENCE.md.

Step 9: Update standards tracking

Update .project-standards.yaml:

standards_version: "2025.1"
last_configured: "[timestamp]"
components:
  cache-busting: "2025.1"
  cache-busting-framework: "[nextjs|vite]"
  cache-busting-cdn: "[vercel|cloudflare|none]"
  cache-busting-verified: true

Step 10: Print final report

Print a summary of changes applied, cache strategy overview, and next steps for verification.

For detailed configuration templates and code examples, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Quick compliance check/configure:cache-busting --check-only
Auto-fix all issues/configure:cache-busting --fix
Next.js project only/configure:cache-busting --fix --framework nextjs
Vite project only/configure:cache-busting --fix --framework vite
Cloudflare CDN headers/configure:cache-busting --fix --cdn cloudflare
Vercel CDN headers/configure:cache-busting --fix --cdn vercel

Output

Provide:

  1. Compliance report with framework and CDN configuration status
  2. List of changes made (if --fix) or proposed (if interactive)
  3. Verification instructions and commands
  4. CDN cache header examples
  5. Next steps for deployment and monitoring

See Also

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.92%
按下载量换算152

Claude

29.85%
按下载量换算130

Cursor

20.73%
按下载量换算90

Gemini CLI

9.47%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills