What problem does it solve? AI-powered features fail in predictable ways: LLM calls crash on rate limits without retry logic, RAG pipelines retrieve irrelevant chunks, embedding search returns semantically close but irrelevant results, fine-tuning runs overfit from eval leakage, and code interpreters execute untrusted LLM output without isolation. This Skill codifies production patterns for each failure mode. ## Core Features & Use Cases - LLM Integration & Prompting: API client wrappers with exponential backoff retry, structured output validation via Zod/Pydantic, prompt versioning, and multi-model routing. - RAG & Embedding Search: Document chunking, vector store setup, hybrid BM25 + vector search with reciprocal rank fusion, similarity thresholds, and embedding model version pinning. - AI Agents & Sandboxes: Stateful agent architecture with scheduling and human-in-the-loop approval, plus Docker-based code execution sandboxes with resource limits and network isolation. - Use Case: When building a support chatbot, use this Skill to set up a RAG pipeline with hybrid retrieval, wrap LLM calls with retry and schema validation, and add a sandboxed code interpreter for data analysis queries. ## Quick Start Ask the AI to audit your LLM API usage and add retry logic with structured output validation using the rune llm-integration workflow.