What problem does it solve? LLM API costs and latency grow quickly when applications repeatedly send the same prompt prefixes or regenerate identical responses. This Skill provides caching patterns that reduce token spend and response times by caching at the prompt prefix, full response, and document levels. ## Core Features & Use Cases - Anthropic Prompt Caching: Structure prompts so repeated prefixes are cached by Claude's native prompt caching, cutting input token costs. - Response Caching: Cache full LLM responses for identical or semantically similar queries to avoid redundant generation. - Cache Augmented Generation (CAG): Pre-cache documents directly in the prompt as an alternative to runtime RAG retrieval. - Use Case: A support chatbot sends the same 10,000-token system prompt with every request. Applying prompt caching to that prefix reduces input costs dramatically while keeping per-user context dynamic. ## Quick Start Ask the AI to design a caching strategy for your LLM application that combines Anthropic prompt caching for the system prompt with response caching for repeated user queries.