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

AgentRolePrimary Focus
PlannerStrategic ArchitectTask decomposition, planning
CTOTechnical DirectorArchitecture decisions, tech stack
DatabaseData ArchitectSchema design, migrations
BackendBackend EngineerAPIs, services, business logic
FrontendFrontend EngineerUI/UX implementation
AuthSecurity SpecialistAuthentication, authorization
DevOpsInfrastructure EngineerCI/CD, deployment, monitoring
TestingQA EngineerTest strategy, automation
ReviewerCode ReviewerQuality assurance, best practices
DebuggerDebug SpecialistIssue diagnosis, resolution
SecuritySecurity AnalystVulnerability analysis, hardening
CoderFull-Stack DeveloperImplementation, TDD
ResearcherTechnology AnalystResearch, feasibility studies
WriterDocumentation SpecialistDocs, guides, tutorials

Context Files

All agents should read:

  • CONTEXT.md - Current project context and state
  • IMPLEMENTATION-PLAN.md - Active implementation plan

Agent Communication

Agents communicate through:

  1. Memory System - Persistent shared memory (ppmManager)
  2. Task Results - Output stored for downstream agents
  3. Governance - All actions pass through GovernanceManager

Adding New Agents

  1. Create <role>.md in this directory
  2. Follow the standard template (Protocol, Capabilities, Constraints)
  3. Register in src/core/agents/ if needed
  4. Update this index