What problem does it solve? LLM API costs and latency grow quickly when applications repeatedly send the same prompt prefixes or answer identical queries. This Skill provides caching strategies 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 caching, cutting input token costs. - Response Caching: Cache full LLM responses for identical or semantically similar queries to avoid redundant API calls. - 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 can reduce costs by up to 90% while improving time-to-first-token. ## Quick Start Ask the AI to design a caching strategy for your LLM application that caches the system prompt prefix and repeated user queries.