# Foundationagents Metagpt

> Multi-agent framework — assign roles (PM, architect, engineer) cho GPT team, build software từ 1 requirement. Dùng khi cần orchestrate multi-agent pipeline phức tạp.

- Skill: `yanacuti1121/foundationagents-metagpt` (Agent Skill)
- Install (CLI): `npx skillmds add yanacuti1121/foundationagents-metagpt`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yanacuti1121/foundationagents-metagpt/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: yanacuti1121 (https://skillmd.com/u/yanacuti1121)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/yanacuti1121/foundationagents-metagpt

---


MetaGPT: `Code = SOP(Team)` — materialize software company SOPs thành LLM agent team.

## Core idea

Input 1 line requirement → output user stories, competitive analysis, requirements, data structures, APIs, code, docs.

Roles: Product Manager · Architect · Project Manager · Engineer · QA

## Install

```bash
pip install --upgrade metagpt
```

## Quick start

```python
import asyncio
from metagpt.team import Team
from metagpt.roles import ProjectManager, ProductManager, Architect, Engineer

async def main():
    team = Team()
    team.hire([ProductManager(), Architect(), ProjectManager(), Engineer()])
    team.invest(investment=3.0)
    team.run_project("Build a FastAPI CRUD app for task management")
    await team.run(n_round=5)

asyncio.run(main())
```

## MGX — production product

https://mgx.dev — #1 Product of the Week ProductHunt (Mar 2025)

## Source

https://github.com/FoundationAgents/MetaGPT · ⭐68K

