A plug-and-play AI development team for Cursor and Claude Code. Clone into any project, get 10 specialized AI agents that work together to plan, design, build, test, and deploy your software.
Powered by Graphify for 71x token reduction on large codebases.
| Agent | Role | Invoke |
|---|---|---|
| 🎯 Team Lead | Orchestrates tasks, reviews PRs, resolves conflicts | /team-lead |
| 🏗️ Architect | System design, API contracts, DB schemas | /architect |
| ⚙️ Backend Engineer | APIs, business logic, integrations | /backend |
| 🎨 Frontend Engineer | UI components, state, responsive design | /frontend |
| 🧪 QA Automation | Test strategy, unit/integration/e2e tests | /qa |
| 📊 Data Engineer | Pipelines, ETL, analytics, data modeling | /data-eng |
| 🚀 DevOps Engineer | CI/CD, Docker, K8s, infra-as-code | /devops |
| 📋 Product Manager | PRDs, user stories, acceptance criteria | /pm |
| 🧠 Prompt Engineer | Optimizes agent prompts, maintains prompt library | /prompt-eng |
| 🔧 Generalist | Quick tasks, prototyping, glue code | /generalist |
git clone https://github.com/manan45/my-agents.git .my-agents
cd .my-agents && bash install.shThen use slash commands:
/team-lead "Break down: user auth with OAuth2"
/architect "Design the DB schema for multi-tenant SaaS"
/team "Build a complete auth system" # spawns full agent team
git clone https://github.com/manan45/my-agents.git .my-agents
cd .my-agents && bash install-cursor.shRules auto-load via .cursor/rules/. Use @agent-name in Composer.
Graphify builds a knowledge graph of your codebase so agents query structure instead of reading raw files.
pip install graphifyy
graphify install
/graphify . # builds the graphAll agents consult GRAPH_REPORT.md before grepping files — saving up to 71x tokens per query.
You describe a feature
↓
Team Lead breaks it into tasks
↓
PM writes PRD → Architect designs → Backend + Frontend build
↓
QA writes tests → DevOps deploys → Team Lead reviews
With Claude Code Agent Teams (Opus 4.6), agents run in parallel with their own context windows and communicate directly.
my-agents/
├── CLAUDE.md # Claude Code instructions
├── AGENTS.md # Cross-platform agent instructions
├── .cursorrules # Cursor rules
├── agents/ # 10 agent definitions (SKILL.md + system-prompt.md)
├── commands/ # Slash commands (/plan, /build, /test, /deploy)
├── workflows/ # Multi-agent orchestration templates
├── dashboard/ # HTML dashboard (no deps)
└── docs/ # Setup guides
- Python 3.10+ (for Graphify)
- Claude Code OR Cursor 2.4+
- For Agent Teams: Claude Opus 4.6 + experimental flag
MIT