经 AI Skill Hub 精选评估,AI开发团队 获评「强烈推荐」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
AI开发团队 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
AI开发团队 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/olehsvyrydov/AI-development-team
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"ai----": {
"command": "npx",
"args": ["-y", "ai-development-team"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 AI开发团队 执行以下任务... Claude: [自动调用 AI开发团队 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"ai____": {
"command": "npx",
"args": ["-y", "ai-development-team"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
A reusable AI agent-team framework for your editor. ~29 specialist agent skills (a 15-agent core team + optional specialists) plus a workflow-engine and an enforced, proportional workflow with approval gates — process, not prompts. Open-source, no lock-in; works in Claude Code, Cursor, Kiro & VS Code, free by default.
/po → /arch → /secops → [/fin] → [/legal] → [/ui] → /fe | /be → /rev → /qa + /e2e → /verify
The framework is a portable agent layer you install once and use across every project. It ships four things:
claude/skills/) — lean SKILL.md personas that load deep references/ on demand; tech stacks (React/Angular/Vue, Java/Kotlin/Python/PHP, …) are references the role self-routes to, not separate agents.workflow-engine — a skill that classifies each change and refuses to skip a required gate.workflow.yaml — a versioned workflow definition, right-sized to the change via solo → small-team → regulated presets.install.sh) — wires the skills, commands, and templates into whichever editor(s) you use.| Component | Required | Version |
|---|---|---|
| [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | Yes | Latest |
| Python | For Multi-LLM only | 3.11+ |
| [OpenRouter API key](https://openrouter.ai/) | For Multi-LLM only | Pay-per-use |
The core framework (15-agent core team + optional specialists) works with just Claude Code — no additional dependencies.
---
git clone https://github.com/olehsvyrydov/AI-development-team.git
cd AI-development-team
./install.sh # interactive: pick your editor(s)
The universal installer wires up whichever editors you choose and emits the right config for each — no lock-in:
| Editor | What it installs |
|---|---|
| **Claude Code** | .claude/skills + .claude/commands + CLAUDE.md |
| **Cursor** | .cursor/rules/ai-dev-team.mdc + AGENTS.md |
| **Kiro** | .kiro/steering/ai-dev-team.md + AGENTS.md |
| **VS Code (Copilot)** | .github/copilot-instructions.md + AGENTS.md |
./install.sh --editors=all --preset=solo --yes # non-interactive (preset: solo|small-team|regulated)
./install.sh --editors=claude --scope=user # global ~/.claude (Claude Code)
./install.sh --dry-run # preview, change nothing
./install.sh --link # symlink content (dev mode)
./install.sh --uninstall # remove what it installed
Optional advanced Claude backends (Atlassian, memory MCP, hooks): scripts/setup-claude-backends.sh.
~/.claude/
├── CLAUDE.md # Global instructions (TDD workflow, approval gates)
├── TEAM_WORKFLOW.md # Complete team process documentation
│
├── skills/ # 29 agent skill files (15 core + specialists; stacks as references)
│ ├── management/ # Product Owner, Scrum Master, Business Analyst
│ ├── architecture/ # Solution Architect, GraphQL Developer
│ ├── development/
│ │ ├── backend/ # Java/Spring, Kotlin, PHP/Laravel, Python/FastAPI
│ │ ├── frontend/ # React/Next.js, Angular, Vue, Flutter
│ │ └── mobile/ # Native iOS/Android
│ ├── quality/
│ │ ├── review/ # Full-stack, Backend, Frontend, PHP reviewers
│ │ ├── testing/ # QA, E2E (Playwright/Detox), BDD/Cucumber, unit testers
│ │ └── verify/ # Completion auditor (gate)
│ ├── operations/ # DevOps, SecOps, MLOps, SRE, Terraform
│ ├── design/ # UI/UX Designer, UX Research, JavaFX Designer
│ ├── compliance/ # Accountant, Legal (generic + UK regional variants)
│ ├── marketing/ # Product Marketing Strategist
│ ├── specialized/ # Technical Writer, Kai (self-improving meta-agent)
│ └── workflow-engine/ # Workflow contract + gate-check + ledger
│
├── commands/ # 50 slash commands
│ ├── [role-based] # /po, /sm, /ba, /arch, /fe, /be, /rev, /qa, /e2e ...
│ ├── [persona aliases] # /max, /luda, /jorge, /finn, /james, /adam ...
│ └── [utility] # /agents, /bug, /issue, /memory, /all, /kai ...
│
├── templates/ # 6 document templates
│ ├── adr-template.md # Architecture Decision Records
│ ├── user-story-template.md # User stories with Given/When/Then AC
│ ├── sprint-template.md # Sprint planning & tracking
│ ├── code-review-template.md # Structured code review reports
│ ├── investigation-report-template.md
│ └── retrospective-template.md
│
└── workflow/ # workflow.yaml + schema + optional MCP adapters
---
By default the team is file-based — Backlog.md tickets + a markdown knowledge base, zero paid accounts. Jira/Confluence are an optional overlay: enable them in workflow.yaml and connect the Atlassian MCP server:
claude mcp add --scope user --transport http atlassian https://mcp.atlassian.com/v1/mcp
feature/PROJ-123-description), commit messages (PROJ-123: Implement feature)---
These activate alongside core agents when working with specific technologies:
| Skill | Extends | Technology |
|---|---|---|
| Angular Developer | Frontend | Angular 21, Signals, NgRx SignalStore |
| Vue Developer | Frontend | Vue 3, Composition API, Pinia, Nuxt 3 |
| Flutter Developer | Frontend | Flutter/Dart, Riverpod, Material 3 |
| Kotlin Developer | Backend | Kotlin 2.1, Coroutines, KMP |
| Quarkus Developer | Backend | Quarkus, Panache, GraalVM Native |
| FastAPI Developer | Backend | Python FastAPI, async, Pydantic v2 |
| Laravel Developer | Backend | PHP/Laravel, Eloquent, Filament, Livewire 3 |
| Spring Kafka | Backend | Kafka 4.x, Reactor Kafka, DLT/retry |
| JavaFX Developer | Desktop | JavaFX 21+, FXML, Scene Builder |
| GraphQL Developer | Architect | Apollo, Federation, DataLoader |
| Terraform Specialist | DevOps | Multi-cloud IaC, state management |
| Cucumber BDD | E2E Tester | Gherkin, step definitions, Cucumber-JVM/JS |
| HMRC API | Backend | UK Making Tax Digital, OAuth2 Gateway |
| Backend Reviewer | Reviewer | Java/Kotlin focus, Checkstyle, SonarQube |
| Frontend Reviewer | Reviewer | TypeScript focus, ESLint, accessibility |
| PHP Reviewer | Reviewer | PHP/Laravel focus, PHPStan, Psalm |
| Backend Tester | Tester | JUnit 5, Testcontainers, StepVerifier |
| Frontend Tester | Tester | Jest, React Testing Library, Vitest |
| JavaFX Designer | UI Designer | JavaFX CSS, FXML layouts |
| UK Accountant | Accountant | UK-specific tax, HMRC, IR35 |
| UK Legal Counsel | Legal | English & Welsh Law, GDPR UK |
| UK Self-Employment | UK Accountant | SA103, Class 4 NI, MTD quarterly |
---
/bug Login button doesn't work on mobile Safari
Creates a structured investigation → reproduction test → TDD fix → code review → E2E test.
| One mega-prompt | **AI Dev Team** | |
|---|---|---|
| Process | hope it remembers | **enforced gates** that can refuse to proceed |
| Right-sizing | same weight for a typo and a feature | **proportional** (change-class + presets) |
| Expertise | one generalist | **role specialists** + on-demand stack references |
| Lock-in | often tool-specific | **vendor-neutral**, 4 editors, free defaults |
---
本项目是一个完整的虚拟软件开发团队,旨在为 Claude Code 提供支持。该团队由 40 个专门的 AI 代理组成,从产品负责人到 E2E 测试员,通过结构化的工作流程、审批门户、TDD 和语义知识检索进行协作。每个代理都是一个 Claude Code 实例。
该框架包括一个智能知识平台,包含三个系统:
环境依赖与系统要求:
高质量的AI开发工具,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:AI开发团队 的核心功能完整,质量优秀。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | AI-development-team |
| 原始描述 | 开源MCP工具:An AI dev team in your editor — ~48 specialist agents and an enforced, proportio。⭐10 · Python |
| Topics | ai-agentsai-dev-toolsanthropic |
| GitHub | https://github.com/olehsvyrydov/AI-development-team |
| License | MIT |
| 语言 | Python |
收录时间:2026-06-05 · 更新时间:2026-06-05 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端