What problem does it solve? LLM API calls are expensive and slow when the same prompts, prefixes, or documents are sent repeatedly. This Skill provides guidance on caching at multiple levels—prompt prefixes, full responses, and pre-cached documents—to reduce latency and API costs. ## Core Features & Use Cases - Anthropic Prompt Caching: Structure prompts so repeated prefixes are cached by Claude's native prompt caching, cutting cost on long system prompts and shared context. - 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 chatbot sends the same 10,000-token knowledge base with every user question. By caching that prefix, each request only pays for the new user turn, dramatically lowering cost and time-to-first-token. ## Quick Start Ask the AI to design a caching strategy for your LLM application that uses Anthropic prompt caching for the system prompt and response caching for repeated user queries.