Agents — Working Implementations
Each folder is a self-contained, runnable AI agent. No monorepo setup needed.
Quick Start
cd agents/<agent-name>
pip install -r requirements.txt
cp .env.example .env # fill in your API keys
python agent.py
Agent Index
| # | Agent | Framework | LLM | Industry | Difficulty |
|---|---|---|---|---|---|
| 01 | Web Research Agent | LangGraph | GPT-4o / Claude | General | ⭐⭐ |
| 02 | Code Review Agent | LangChain | GPT-4o / Claude | Software Dev | ⭐⭐ |
| 03 | PDF Q&A Agent | LlamaIndex | GPT-4o | Research | ⭐⭐ |
| 04 | SQL Query Agent | LangChain | GPT-4o | Data | ⭐⭐ |
| 05 | Email Drafting Agent | CrewAI | GPT-4o | Communication | ⭐ |
| 06 | News Summarizer Agent | LangChain | GPT-4o | Media | ⭐ |
| 07 | GitHub Issue Triager | LangGraph | GPT-4o / Claude | DevOps | ⭐⭐ |
| 08 | Data Analysis Agent | LangChain | GPT-4o | Analytics | ⭐⭐ |
| 09 | Resume Parser Agent | LangChain | GPT-4o | HR | ⭐ |
| 10 | Meeting Notes Agent | LangChain | GPT-4o | Productivity | ⭐⭐ |
| 11 | Stock Research Agent | LangChain | GPT-4o | Finance | ⭐⭐ |
| 12 | Travel Planner Agent | CrewAI | GPT-4o | Travel | ⭐⭐ |
| 13 | Customer Support Agent | LangGraph | GPT-4o | Customer Service | ⭐⭐⭐ |
| 14 | Social Media Content Agent | CrewAI | GPT-4o | Marketing | ⭐ |
| 15 | Unit Test Generator Agent | LangChain | GPT-4o / Claude | Software Dev | ⭐⭐ |
| 16 | Documentation Writer Agent | LangChain | GPT-4o / Claude | Software Dev | ⭐⭐ |
| 17 | Recipe Recommendation Agent | LangChain | GPT-4o | Food | ⭐ |
| 18 | Job Application Agent | CrewAI | GPT-4o | HR | ⭐⭐ |
| 19 | Competitive Analysis Agent | LangGraph | GPT-4o | Business | ⭐⭐⭐ |
| 20 | Multi-Agent Debate System | LangChain | GPT-4o | Research | ⭐⭐⭐ |
Adding Your Agent
- Create a folder:
agents/NN-your-agent-name/ - Include:
agent.py,requirements.txt,.env.example,README.md,metadata.yaml - Open a PR following the PR template