Skip to main content

Sub-Agents

Sub-agents are specialized agents that the main agent can spawn to handle complex, multi-step tasks. Each sub-agent runs with its own prompt, tool set, and optional model override.

Built-in sub-agents

Ante ships with two built-in sub-agents:

General

A general-purpose agent for researching complex questions, searching for code, and executing multi-step tasks. The main agent delegates to this when it needs to perform a search it isn't confident about completing in a few tries.

Explorer

A fast agent specialized for codebase exploration. It can quickly find files by patterns, search code for keywords, and answer structural questions about the codebase.

Creating custom sub-agents

Create a markdown file in ~/.ante/agents/ with YAML frontmatter:

---
name: "security-reviewer"
description: "Reviews code for security vulnerabilities and OWASP top 10 issues"
color: "red"
---

You are a security-focused code reviewer. Analyze the provided code for:

- Injection vulnerabilities (SQL, command, XSS)
- Authentication and authorization flaws
- Sensitive data exposure
- Security misconfiguration
- Known vulnerable dependencies

Provide findings with severity ratings and remediation steps.

Frontmatter fields

FieldRequiredDescription
nameYesUnique identifier for the agent
descriptionYesWhat this agent does (shown to the main agent for delegation decisions)
modelNoOverride the LLM model for this agent
toolsNoRestrict which tools this agent can use
colorNoDisplay color in the TUI

How sub-agents work

When the main agent encounters a task that matches a sub-agent's description, it uses the Agent tool to spawn the sub-agent:

  1. The main agent evaluates available sub-agents and their descriptions
  2. It delegates the task via the Agent tool with a detailed prompt
  3. The sub-agent runs independently with its own context
  4. The result is returned to the main agent, which incorporates it into the conversation
┌────────────┐     Agent     ┌──────────────┐
│ Main Agent │ ────────────▶ │ Sub-Agent │
│ │ ◀──────────── │ (Explorer) │
│ │ Result └──────────────┘
│ │
│ │ Agent ┌──────────────┐
│ │ ────────────▶ │ Sub-Agent │
│ │ ◀──────────── │ (General) │
└────────────┘ Result └──────────────┘

Discovery

Sub-agents are discovered from:

  1. Built-in agents (General, Explorer)
  2. ~/.ante/agents/ directory

User-defined agents are loaded alongside the built-in ones. All available agents are registered at session initialization time.