YXZYSME/agentic-monorepo-template
Production-grade monorepo template for agentic AI frameworks — LangGraph, AutoGen, CrewAI, OpenAI Agents SDK. Follows AGENTS.md + Agent Skills Standard conventions.
Platform-specific configuration:
{
"mcpServers": {
"agentic-monorepo-template": {
"command": "npx",
"args": [
"-y",
"agentic-monorepo-template"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
█████╗ ██████╗ ███████╗███╗ ██╗████████╗██╗ ██████╗
██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██║██╔════╝
███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ██║██║
██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ██║██║
██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗
╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝
M O N O R E P O T E M P L A T E[](https://github.com/YXZYSME/agentic-monorepo-template/actions/workflows/ci.yml) [](https://www.python.org/downloads/) [](LICENSE) [](AGENTS.md)
Production-grade monorepo template for building agentic AI applications with LangGraph, AutoGen/AG2, CrewAI, and OpenAI Agents SDK. Follows the AGENTS.md standard and Agent Skills Standard conventions.
---
graph TB
subgraph Agents["🤖 Agents"]
R[Researcher]
C[Coder]
V[Reviewer]
end
subgraph Workflows["⚡ Workflows"]
SEQ[Sequential]
PAR[Parallel]
SUP[Supervisor]
SWM[Swarm]
end
subgraph Tools["🔧 Tools"]
WS[Web Search]
CE[Code Executor]
FM[File Manager]
MCP[MCP Client]
end
subgraph Memory["🧠 Memory"]
ST[Short-Term]
LT[Long-Term / Vector DB]
SS[Shared State]
end
subgraph Support["🛡️ Support"]
OBS[Observability]
GR[Guardrails]
EV[Evals]
end
Agents --> Workflows
Workflows --> Tools
Workflows --> Memory
Tools --> Support
Memory --> Support
OBS -.->|traces| Agents
GR -.->|validates| Workflows
EVLoading reviews...