💾
DevOpsJavaScript

Content Hash Cache Pattern

by xu-xiang

Content Hash Cache Pattern is a DevOps skill for Claude Code, published by xu-xiang in everything-claude-code-zh.

1.9K stars307 forkson xu-xiang/everything-claude-code-zhAdded 2026/08/18+1% in starsRepository updated 2026/03/05
ai-agentsanthropicclaudeclaude-codedeveloper-toolseverything-claude-codellmmcponeskillproductivity
Install in seconds
Install Content Hash Cache Pattern
Copy Content Hash Cache Pattern into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/xu-xiang/everything-claude-code-zh/tree/main/skills/content-hash-cache-pattern ~/.claude/skills/content-hash-cache-pattern

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/xu-xiang/everything-claude-code-zh.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/content-hash-cache-pattern/SKILL.md in xu-xiang/everything-claude-code-zh
Installs to
~/.claude/skills/content-hash-cache-pattern
Collection
One of 25 skills cataloged from this repository
Category
DevOps798 skills

What Content Hash Cache Pattern does

Content Hash Cache Pattern caches expensive file processing results using SHA-256 content hashes instead of file paths, so cached results survive file moves and invalidate automatically on content changes. Use it when building file processing pipelines, CLIs with cache flags, or adding caching to pure functions.

Content Hash Cache Pattern is cataloged under DevOps on DirSkills. Content Hash Cache Pattern comes from a repository tagged ai-agents, anthropic, claude, claude-code and developer-tools.

Documentation

README

内容哈希文件缓存模式 (Content-Hash File Cache Pattern)

使用 SHA-256 内容哈希(而非文件路径)作为缓存键,缓存高昂的文件处理结果(如 PDF 解析、文本提取、图像分析)。与基于路径的缓存不同,这种方法在文件移动/重命名后依然有效,并在内容变化时自动失效。

何时激活

  • 构建文件处理流水线(Pipeline),如 PDF、图像或文本提取
  • 处理成本高昂且需要重复处理相同文件
  • 需要提供 --cache/--no-cache 命令行选项
  • 希望在不修改现有纯函数(Pure Functions)的情况下为其添加缓存功能

核心模式

1. 基于内容哈希的缓存键

使用文件内容(而非路径)作为缓存键:

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Content Hash Cache Pattern

  • What else does xu-xiang publish alongside Content Hash Cache Pattern?

    Content Hash Cache Pattern is one of 25 skills that DirSkills catalogs from xu-xiang/everything-claude-code-zh, the repository it ships in. Its siblings there include API Design Patterns, Article Writing and Autonomous Loops. Each one is a separate skill with its own page in this directory, installs the same way Content Hash Cache Pattern does, and is maintained by xu-xiang in that same repository. The rest of the collection is listed on the xu-xiang/everything-claude-code-zh page.

  • How does Content Hash Cache Pattern compare to other DevOps skills?

    Content Hash Cache Pattern ranks #279 by stars among the 798 DevOps skills in this catalog. The most-starred ones next to it are Backend Patterns, API Connector Builder and Migration. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Content Hash Cache Pattern against them. Open each page to compare what they document and how they install.

More from xu-xiang/everything-claude-code-zh

Content Hash Cache Pattern is one of 25 skills cataloged on DirSkills from xu-xiang/everything-claude-code-zh.

See all 25 skills
📐
2w ago

API Design Patterns

API Design Patterns provides conventions and best practices for designing consistent, developer-friendly REST APIs, including resource naming, HTTP status codes, pagination, filtering, error responses, versioning, and rate limiting.
DevOps
1.9K307
✍️
2w ago

Article Writing

Article Writing drafts long-form content such as articles, guides, tutorials, and newsletters in a specific voice captured from examples or brand guidelines. Use it when you need polished copy longer than a paragraph with consistent tone, structure, and credibility.
Writing
1.9K307
🔁
2w ago

Autonomous Loops

Autonomous Loops provides patterns and architectures for running Claude Code without human intervention, from simple claude -p pipelines to RFC-driven multi-agent DAG orchestration. Use it to set up autonomous development workflows, CI/CD pipelines, parallel agents, and quality gates.
Automation
1.9K307
⚙️
2w ago

Backend Patterns

Backend Patterns provides architectural patterns and best practices for building scalable server-side applications, covering REST API design, repository/service layers, database optimization, caching, and error handling. Use it when implementing Node.js, Express, or Next.js API routes.
DevOps
1.9K307
🛠️
2w ago

C++ Coding Standards

C++ Coding Standards provides a set of rules and best practices based on the C++ Core Guidelines for writing modern, safe, and idiomatic C++ code. Use it when writing, reviewing, or refactoring C++ code to enforce type safety, resource safety, immutability, and clarity.
Quality
1.9K307
🧪
2w ago

C++ Testing

C++ Testing guides writing and debugging C++17/20 tests with GoogleTest/Mock, CMake/CTest, coverage, and sanitizers. Use it when creating or fixing C++ tests, configuring CI test gates, or diagnosing flaky failures.
Quality
1.9K307