DerianCardenas/AI-Agents
This repo contains a guidebase of how to implement and use a complete software team using AI Agents
Platform-specific configuration:
{
"mcpServers": {
"AI-Agents": {
"command": "npx",
"args": [
"-y",
"AI-Agents"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> A structured guide to build and orchestrate a complete AI-powered software development team using specialized agents, MCP tools, and shared memory across projects.
Stop prompting AI one task at a time. This repo gives you a reusable team of specialized agents ā each with a defined role, tools, memory, and conventions ā that work together to design, build, test, and document software projects.
---
---
Most people use AI as a single assistant. This repo treats AI as a team:
You describe what to build
ā
PO defines the User Stories
ā
Scrum Master coordinates the team and manages tasks
ā
DBA designs the database schema
ā
Backend implements the API
ā
Frontend builds the UI
ā
Tester runs E2E tests
ā
DocGen documents everythingEach agent has one responsibility, knows only its own routes, and updates its own memory at the end of every task.
---
The agent is the specialization. The project context is swappable:
Backend Agent + context of Project A ā works on Project A
Backend Agent + context of Project B ā works on Project BYou never create new agents per project ā you create new contexts.
Each agent maintains its own memory file per project:
memory-backend.md ā endpoints created, patterns used, decisions made
memory-dba.md ā tables, relations, design decisions
memory-tester.md ā what was tested, bugs found, coverageNo more re-explaining what was already built.
Agents interact with the real world through MCP (Model Context Protocol) se
Loading reviews...