Academy → Using HermesOfficial documentation · clear explanation

Subagent Delegation

التفويض إلى الوكلاء الفرعيين

Beginner to advanced21 minutes3 questions2026-08-09
The idea in one minute

Start with meaning, then move to detail.

This lesson explains Subagent Delegation as part of using Hermes and understanding its behavior. You will learn what it does, when it matters, and the smallest safe test that proves it works.

If you are new

If you are new, do not memorize names. Focus on three questions: what problem does this solve, what access does it need, and how can you verify the result?

For hands-on use

For practice, inspect the first example, identify its effects, run it on test data, and compare the result with the source claim.

For specialists

For advanced readers, inspect Single Task, Parallel Batch, How Subagent Context Works, then verify failure modes and version compatibility.

What do you need first?

Start with installation if you have not run Hermes yet.

What will you know?

A clear outcome before you read.

  • Understand Subagent Delegation without assumed prior knowledge.
  • Separate the source description from what still needs testing in your environment.
  • Read the first command and identify its inputs and outputs before copying it.
Lesson terms

Short definitions before the details.

Provider
The service that runs or provides access and authentication to a model.
Automation
Running work later or repeatedly with explicit success and failure conditions.
Official page description

Spawn isolated child agents for parallel workstreams with delegate_task

Topic map

What does the source say, and in what order?

  1. 01
    Single Task

    Start here to understand the core idea or structure.

  2. 02
    Parallel Batch

    Read this after the foundation, then connect it to the previous step.

  3. 03
    How Subagent Context Works

    Read this after the foundation, then connect it to the previous step.

  4. 04
    Practical Examples

    Read this after the foundation, then connect it to the previous step.

  5. 05
    Parallel Research

    Read this after the foundation, then connect it to the previous step.

  6. 06
    Code Review + Fix

    Read this after the foundation, then connect it to the previous step.

  7. 07
    Multi-File Refactoring

    Read this after the foundation, then connect it to the previous step.

  8. 08
    Batch Mode Details

    Read this after the foundation, then connect it to the previous step.

  9. 09
    Durable background completions

    Read this after the foundation, then connect it to the previous step.

  10. 10
    Model Override

    Finish here to verify the result and special cases.

Examples from the official page

Copy only after you understand the effect.

## Parallel Batch Up to 3 concurrent subagents by default (configurable, no hard ceiling):
## How Subagent Context Works :::warning Critical: Subagents Know Nothing Subagents start with a **completely fresh conversation**. They have zero knowledge of the parent's conversation history, prior tool calls, or anything discussed before delegation. The subagent's only context comes from the `goal` and `context` fields the parent agent populates when it calls `delegate_task`. ::: This means the parent agent must pass **everything** the subagent needs in the call:
The subagent receives a focused system prompt built from your goal and context, instructing it to complete the task and provide a structured summary of what it did, what it found, any files modified, and any issues encountered. ## Practical Examples ### Parallel Research Research multiple topics simultaneously and collect summaries:
Try it now

Read the first command and identify its inputs and outputs before copying it.

Match every command to your installed Hermes version, review the files and accounts it can reach, and use non-sensitive data for the first test. If this explanation differs from the source, the official source wins.

Knowledge check

Three decisions before completion.

1. What is the source of truth when “Subagent Delegation” changes?
2. What is the best way to apply this lesson?
3. What should happen before a step can modify files or an external account?