What problem does it solve? Building LLM agents that reason, call tools, remember context, and collaborate reliably requires navigating multiple frameworks and failure modes; this Skill provides tested patterns and runnable scripts for the full agent lifecycle. ## Core Features & Use Cases - Agent Architectures: Implement ReAct, Plan-and-Execute, hierarchical, and multi-agent patterns with LangGraph, CrewAI, and raw OpenAI function calling. - Memory & Human-in-the-Loop: Add short-term, long-term, and episodic memory plus approval gates using LangGraph interrupt() and checkpointers. - Runnable Orchestration Scripts: Use scripts/build_agent.py for a ReAct agent CLI and scripts/multi_agent.py for sequential, parallel, and hierarchical multi-agent runs with execution traces. - Use Case: You need a research pipeline where one agent gathers facts, another writes a report, and a reviewer approves before delivery; run multi_agent.py with the hierarchical pattern and a YAML agent config. ## Quick Start Ask the agent to build a tool-using LLM agent with a calculator and file reader, then run scripts/build_agent.py with your OpenAI API key set.