What problem does it solve? AI agents that work in demos often fail unpredictably in production. This Skill provides a step-by-step procedure for building the operational harness around an agent — guardrails, verification loops, state checkpointing, observability, orchestration, and error recovery — so agent systems behave reliably under real-world conditions. ## Core Features & Use Cases - Defense-in-depth guardrails: Input injection detection, tool-level permission tiers (read/write/delete/external), and output PII filtering with approval gates for destructive operations. - Verification & feedback loops: Schema validation with Pydantic, assertion checks on tool results, and LLM-as-judge for high-stakes outputs. - Production resilience patterns: Retry with exponential backoff, model fallback chains, circuit breakers, token budget enforcement, checkpoint-based state recovery, and human escalation policies. - Use Case: You have a multi-agent workflow built with LangGraph that occasionally deletes records it shouldn't. Use this Skill to classify tools by risk tier, add approval gates for destructive calls, wire structured logging with run IDs, and pass the pre-production checklist before deploying. ## Quick Start Audit my agent system and add guardrails, checkpointing, retry logic, and a pre-production readiness checklist before deployment.