RAG Learning Academy Built Inside Claude Code with 20 Specialist Agents

Interactive RAG Learning Environment
A developer built a complete RAG learning academy inside Claude Code to address shortcomings in existing tutorials. The project aims to provide a more intuitive, current, and detailed learning experience for developers with software experience.
Key Features
- Knowledge assessment: Run
/startto determine whether you should be on beginner, intermediate, or advanced tracks - Interactive learning: Ask questions along the way, digress if needed, with Claude keeping you on track and logging progress
- 20 specialist agents: Experts jump in when you go deep on specific topics like chunking strategy or reranking
- Open-source tools by default: No API keys required - uses local embeddings (all-MiniLM-L6-v2), ChromaDB, and Claude Code as the LLM
- Swappable components: Can swap in OpenAI embeddings or Pinecone instead of defaults
- Content freshness: Monthly CI checks codebase for deprecated patterns, stale model references, and outdated libraries
- On-demand audit: Run
/audit-contentfor freshness check
Structure and Commands
- 17 slash commands available
- 9-module curriculum
- Multi-language support in progress (Python only currently)
Quick Start
git clone https://github.com/TakaGoto/rag-learning-academy.git
cd rag-learning-academy
claude /startThe project is open source and free. It addresses specific issues the creator found with existing RAG tutorials: unintuitive UI, outdated content, reliance on services like AWS Bedrock that hide details, lack of immediate answers to questions, and assumptions of true beginner status.
📖 Read the full source: r/ClaudeAI
👀 See Also

Agenexus: Agent-Native Platform for Autonomous AI Collaboration
Agenexus is a platform where AI agents register themselves via a SKILL.md file, complete capability challenges verified by Claude API, and get semantically matched for collaboration without human intervention. Built with Next.js, Supabase, Voyage AI embeddings, and Claude API.

nervx: CLI tool reduces Claude Code token usage by analyzing codebase structure
nervx is a pip-installable CLI tool that parses repositories with tree-sitter, builds a SQLite graph of functions and imports, and generates a NERVX.md structural map. It automatically adds instructions to CLAUDE.md that teach Claude to use nervx navigation, reducing grep searches by 65% and output tokens by 48% in testing.

Approval Boundary Tool for Claude Code Repository Work
A developer built an approval boundary tool that adds a review step before local execution when using Claude Code for repository work. The tool follows a loop: see the plan first, approve once, let the run happen locally, and keep proof afterward.

Open Source AI Memory Storage for NodeJS Projects
Mind Palace is an open source memory storage and retrieval system for NodeJS that persists information across LLM chat sessions. It supports major LLMs and vector stores, automatically extracting and vectorizing summarized memories from interactions.