500+ AI Agent Projects & Use Cases
The most comprehensive collection of AI agent projects, use cases, and working implementations.
🚀 Quick Start • 🗺️ Browse Agents • 🏭 By Industry • 🤝 Contribute • 📊 Frameworks Compared
What is this?
A curated collection of 500+ AI agent projects — production examples, tutorials, and working code spanning every major framework (LangGraph, CrewAI, AutoGen, Agno) and industry (Healthcare, Finance, Education, Cybersecurity, and more).
Who it's for:
- 🧑💻 Developers building their first or next AI agent
- 🔬 Researchers surveying the agent landscape
- 🏢 Teams evaluating frameworks for production use
- 🎓 Students learning agent architectures from real examples
⚡ Quick Start
Pick a framework and run an agent in under 5 minutes:
# Clone the repo
git clone https://github.com/ashishpatel26/500-AI-Agents-Projects.git
cd 500-AI-Agents-Projects
# Run any agent from the agents/ directory
cd agents/01-web-research-agent
pip install -r requirements.txt
cp .env.example .env # add your API key
python agent.py
All agents in
agents/are self-contained with their ownrequirements.txtand.env.example. No monorepo setup needed.
🗺️ Navigation Guide
| I want to... | Go to |
|---|---|
| Run a working agent right now | agents/ |
| Browse by AI framework | Framework-wise Use Cases |
| Browse by industry | Industry Use Cases |
| Understand which framework to use | Framework Comparison |
| Add my own agent | Contributing |
| Learn with a course | crewai_mcp_course/ |
📊 Framework Comparison
Choosing a framework? Here's when to use each:
| Framework | Best For | Complexity | Multi-Agent | Streaming | Local LLM |
|---|---|---|---|---|---|
| LangGraph | Stateful workflows, RAG pipelines, complex graphs | ⭐⭐⭐ | ✅ | ✅ | ✅ |
| CrewAI | Role-based teams, business automation, rapid prototyping | ⭐⭐ | ✅ | ✅ | ✅ |
| AutoGen | Code generation, research, self-healing workflows | ⭐⭐⭐ | ✅ | ✅ | ✅ |
| Agno | Lightweight single agents, tool integration, fast iteration | ⭐ | ✅ | ✅ | ✅ |
| LlamaIndex | Document Q&A, enterprise RAG, data pipelines | ⭐⭐ | ⚠️ | ✅ | ✅ |
Quick decision guide:
- Just starting out → Agno or CrewAI
- Need stateful graphs + RAG → LangGraph
- Building code-writing / research agents → AutoGen
- Enterprise document pipelines → LlamaIndex
🏭 Industry Use Cases
🔧 Browse by Framework
CrewAI
Role-based multi-agent framework. Great for business automation.
AutoGen
Microsoft's framework for code generation, execution, and multi-agent research.
Code Generation, Execution, and Debugging
Multi-Agent Collaboration
Sequential Multi-Agent Chats
Nested Chats
Tools
Multimodal Agents
Observability & Evaluation
Agno
Lightweight, fast agent framework. Best for single-agent tools and rapid prototyping.
LangGraph
State-machine framework for complex, stateful agent workflows and RAG pipelines.
🤝 Contributing
Contributions are welcome! 🎉 This repo grows through community contributions.
Ways to contribute:
- Add a working agent — create a folder in
agents/with runnable code - Add an external link — add a row to the industry or framework tables
- Fix a broken link — open an issue or PR
- Improve documentation — fix typos, add context, improve examples
To contribute:
- Fork the repository
- Create a branch:
feat/agent-nameorfix/description - Add your changes following the Contributing Guidelines
- Open a PR using the PR template
See CONTRIBUTION.md for full requirements (metadata.yaml, requirements.txt, etc.).
Star History
📜 License
This repository is licensed under the MIT License. See the LICENSE file for more information.
⭐ Star this repo if you find it useful — it helps others discover it!

