Claude-skill-registry caching-strategy-helper
Recommend caching strategies and invalidation patterns. Use when a mid-level developer needs performance guidance.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/caching-strategy-helper" ~/.claude/skills/majiayu000-claude-skill-registry-caching-strategy-helper && rm -rf "$T"
manifest:
skills/data/caching-strategy-helper/SKILL.mdsource content
Caching Strategy Helper
Purpose
Recommend caching strategies and invalidation patterns.
Inputs to request
- Hot paths and read/write ratios.
- Freshness and consistency requirements.
- Traffic patterns and cache budgets.
Workflow
- Identify hot paths, read/write ratios, and freshness needs.
- Recommend cache type and eviction policy.
- Outline invalidation triggers and metrics.
Output
- Caching plan with risks and metrics.
Quality bar
- Clarify stale data tolerances.
- Include cache hit metrics to validate.