Learn Claude Code is an educational repository that teaches how modern AI coding agents work by walking learners through a sequence of progressively more complex agent implementations, starting with a minimal Bash-based agent and culminating in agents with explicit planning, subagents, and skills. It emphasizes a hands-on learning path where each version (from v0 to v4) adds conceptual building blocks like the core agent loop, todo planning, task decomposition, and domain knowledge skills, illuminating the patterns behind what makes a true AI agent tick. The goal is to demystify agent architectures like Claude Code by having learners build simplified versions themselves and observe how tools, memory management, planning constraints, and context isolation contribute to reliable agent behavior. Along the way, the project teaches fundamentals such as how to let models call external tools, maintain clean memory for long tasks, and inject domain expertise without retraining the model.
Features
- Step-by-step agent development tutorials
- Multiple agent versions with increasing complexity
- Core agent loop and tool interaction explained
- Explicit planning and task decomposition patterns
- Context management and subagent isolation
- Domain-knowledge skill integration demonstrations