Saltar al contenido principal

Subagentes

Definición

Los subagentes son agentes que se ubican dentro de una jerarquía: a parent agent delegates sub-tasks to child agents (subagentes), que a su vez pueden delegar a más subagentes. Esto estructura la complejix work and keeps each agent focused.

Son una forma de implementar sistemas multi-agente con una cadena clara de responsabilidaty. The root agent owns the user-facing goal; subagents handle focused sub-tasks (por ej. recuperación, code execution, validation). Often used with spec-driven development or RDD so subagents receive and follow specs.

Cómo funciona

El agente raíz recibe la tarea, la divide en subtareas y las asigna al Subagente1, Subagente2, etc. (por rol o capacidad). Cada subagente ejecuta su propio bucle (posiblemente con herramientas y un LLM) and returns results to the root. The root aggregates results (por ej. merges, selects, or passes to another subagent) and either continues the loop or returns to the user. Subagents can be specialized (por ej. recuperación, code, critique) and use the same or different models. Clear contracts (inputs/outputs or tools) and error handling make the hierarchy debuggable and reusable.

Casos de uso

Subagents ayudan cuando una tarea se divide naturalmente en subtareas enfocadas que pueden delegarse y agregarse.

  • Root agent delegating recuperación, generation, and validation to subagents
  • Complex workflows (por ej. research, code review) with focused sub-tasks
  • Reusing the same subagent in different parent workflows

Documentación externa

Ventajas y desventajas

ProsCons
Clear separation of concernsCoordination and latency
Scalable to complex tasksNeed clear contracts and error handling
Reusable subagent capabilitiesDebugging across hierarchy can be hard

Ver también