Ultra-Dex Agent Index (v6.0.0)
The Ultra-Dex Agent Index provides role definitions for AI agents in the Ultra-Dex orchestration system.
This directory contains role definitions for all AI agents in the Ultra-Dex orchestration system.
Swarm Pipeline Order
For multi-agent swarm execution, agents follow this pipeline:
planner → cto → database → backend → frontend → testing → reviewer
Agent Roles
| Agent | Role | Primary Focus |
|---|---|---|
| Planner | Strategic Architect | Task decomposition, planning |
| CTO | Technical Director | Architecture decisions, tech stack |
| Database | Data Architect | Schema design, migrations |
| Backend | Backend Engineer | APIs, services, business logic |
| Frontend | Frontend Engineer | UI/UX implementation |
| Auth | Security Specialist | Authentication, authorization |
| DevOps | Infrastructure Engineer | CI/CD, deployment, monitoring |
| Testing | QA Engineer | Test strategy, automation |
| Reviewer | Code Reviewer | Quality assurance, best practices |
| Debugger | Debug Specialist | Issue diagnosis, resolution |
| Security | Security Analyst | Vulnerability analysis, hardening |
| Coder | Full-Stack Developer | Implementation, TDD |
| Researcher | Technology Analyst | Research, feasibility studies |
| Writer | Documentation Specialist | Docs, guides, tutorials |
Context Files
All agents should read:
CONTEXT.md- Current project context and stateIMPLEMENTATION-PLAN.md- Active implementation plan
Agent Communication
Agents communicate through:
- Memory System - Persistent shared memory (
ppmManager) - Task Results - Output stored for downstream agents
- Governance - All actions pass through
GovernanceManager
Adding New Agents
- Create
<role>.mdin this directory - Follow the standard template (Protocol, Capabilities, Constraints)
- Register in
src/core/agents/if needed - Update this index