{"id":31649442,"url":"https://github.com/hamzakamelen/dev-team","last_synced_at":"2025-10-18T23:27:25.292Z","repository":{"id":312560166,"uuid":"1047661203","full_name":"hamzakamelen/dev-team","owner":"hamzakamelen","description":"DevTeam is an AI-powered multi-agent system that acts as your virtual developer team. It routes queries to expert agents (Frontend, Backend, AI, Full Stack) with guardrails and interactive Chainlit UI.","archived":false,"fork":false,"pushed_at":"2025-08-31T13:45:02.000Z","size":277,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-31T15:33:40.954Z","etag":null,"topics":["agentic-ai","chainlit","dev-team","multiagent-systems","openaiagentssdk","python"],"latest_commit_sha":null,"homepage":"https://dev-team-71001020aa16.herokuapp.com/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hamzakamelen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-30T23:30:28.000Z","updated_at":"2025-08-31T13:46:49.000Z","dependencies_parsed_at":"2025-08-31T15:33:43.289Z","dependency_job_id":"4782062b-f33c-4f7a-b95d-90ed9a3bd5a6","html_url":"https://github.com/hamzakamelen/dev-team","commit_stats":null,"previous_names":["hamzakamelen/dev-team"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/hamzakamelen/dev-team","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzakamelen%2Fdev-team","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzakamelen%2Fdev-team/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzakamelen%2Fdev-team/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzakamelen%2Fdev-team/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hamzakamelen","download_url":"https://codeload.github.com/hamzakamelen/dev-team/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzakamelen%2Fdev-team/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278740831,"owners_count":26037480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agentic-ai","chainlit","dev-team","multiagent-systems","openaiagentssdk","python"],"created_at":"2025-10-07T07:43:07.414Z","updated_at":"2025-10-07T07:43:20.331Z","avatar_url":"https://github.com/hamzakamelen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevTeam – AI-Powered Developer Team 👨‍💻🤖\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"assets/DevTeam.jpeg\" alt=\"DevTeam Logo\" width=\"400\"/\u003e\n\u003c/p\u003e\n\nAn **AI-powered developer assistant** built with [OpenAI Agents](https://github.com/openai/agents), [Chainlit](https://docs.chainlit.io/), and [Gemini API](https://ai.google.dev/).\nIt acts as a **multi-agent system** with specialized experts for **Frontend, Backend, AI, and Full Stack Development**, managed by a central **Manager Agent**.\n\nThe system includes **guardrails** for input and output validation to ensure domain relevance.\n\n---\n\n## 🚀 Features\n\n* **Multi-Agent Setup**\n\n  * Frontend Expert (React, CSS, JS, UI/UX)\n  * Backend Expert (APIs, Databases, Server Architecture)\n  * AI Expert (ML/DL, LLMs, Agents, RAG)\n  * Full Stack Expert (Frontend + Backend + AI + DevOps)\n* **Manager Agent** → Routes queries to the correct expert.\n* **Guardrails** → Input \u0026 Output validation ensures responses stay domain-related.\n* **Summarizer Agent** → Keeps conversations concise by summarizing long histories.\n* **Interactive Chat UI** powered by Chainlit.\n\n\n## **Installation**\n\n### 1. Clone the repo\n\n```bash\ngit clone https://github.com/hamzakamelen/dev-team.git\ncd dev-team\n```\n\n### 2. Create virtual environment with `uv`\n\n```bash\nuv init .\nuv add -r requirements.txt\n```\n\nOr manually install with pip:\n\n```bash\npip install -r requirements.txt\n```\n\n### 3. Activate the environment\n\n```bash\n# Windows\n.venv\\Scripts\\activate\n\n# Linux / macOS\nsource .venv/bin/activate\n```\n\n---\n\n## ⚙️ Environment Variables\n\nCreate a `.env` file in the project root:\n\n```env\nGEMINI_API_KEY=your_gemini_api_key_here\n```\n\n---\n\n## ▶️ Running the Project\n\nRun normally:\n\n```bash\nuv run app.py\n```\n\nRun with Chainlit UI:\n\n```bash\nuv run chainlit run app.py -w\n```\n\nThen open [http://localhost:8000](http://localhost:8000) to chat with your **AI Developer Team**.\n\n---\n\n## 📂 Project Structure\n\n```\n.\n├── main.py              # Entry point (Chainlit handlers \u0026 chat flow)\n├── dev_agents/          # Specialized agents (experts, manager, summarizer)\n│   ├── __init__.py\n│   ├── experts.py\n│   ├── manager.py\n│   ├── summarizer.py\n│\n├── guardrails/          # Input \u0026 Output guardrails\n│   ├── __init__.py\n│   ├── input_guardrail.py\n│   ├── output_guardrail.py\n│\n├── utils/               # Helper functions \u0026 history utils\n│   ├── __init__.py\n│   ├── helpers.py\n│\n├── config/              # Project-wide settings\n│   ├── __init__.py\n│   ├── settings.py\n│\n├── requirements.txt     # Python dependencies\n├── .env                 # API keys (ignored by git)\n└── README.md            # Documentation\n```\n\n---\n\n## 📋 Requirements\n\nDependencies are listed in `requirements.txt`. Main ones include:\n\n* `python-dotenv` → Load environment variables\n* `openai-agents` → Multi-agent orchestration\n* `chainlit` → Chat UI\n* `requests` → API calls\n\n---\n\n## 🎯 Usage\n\nOnce running, the chatbot greets you with:\n\n\u003e “Hi! 👋 Welcome to DevTeam - your AI-powered Developer Team.\n\u003e I can help you with:\n\u003e\n\u003e * Frontend Development\n\u003e * Backend Development\n\u003e * Artificial Intelligence\n\u003e * Full Stack Development”\n\nJust ask a question, and the **Manager Agent** will route it to the correct expert.\n\n---\n\n## 🛡️ Guardrails\n\n* **Input Guardrail** → Blocks irrelevant queries (e.g., unrelated to dev/AI).\n* **Output Guardrail** → Ensures final response remains within supported domains.\n\n---\n\n## 🤝 Contributing\n\nPRs are welcome! For major changes, open an issue first to discuss what you’d like to change.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamzakamelen%2Fdev-team","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhamzakamelen%2Fdev-team","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamzakamelen%2Fdev-team/lists"}