Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Gentleman-Programming/agent-teams-lite/llms.txt

Use this file to discover all available pages before exploring further.

Agent Teams Lite uses a delegate-only orchestrator pattern where the main agent never does phase work directly. All execution happens in specialized sub-agents with fresh context.

Architecture Overview

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  ORCHESTRATOR (your main agent β€” gentleman, default, etc) β”‚
β”‚                                                           β”‚
β”‚  Responsibilities:                                        β”‚
β”‚  β€’ Detect when SDD is needed                              β”‚
β”‚  β€’ Launch sub-agents via Task tool                        β”‚
β”‚  β€’ Show summaries to user                                 β”‚
β”‚  β€’ Ask for approval between phases                        β”‚
β”‚  β€’ Track state: which artifacts exist, what's next        β”‚
β”‚                                                           β”‚
β”‚  Context usage: MINIMAL (only state + summaries)          β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
               β”‚
               β”‚ Task(subagent_type: 'general', prompt: 'Read skill...')
               β”‚
    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
    β”‚                                                      β”‚
    β–Ό          β–Ό          β–Ό         β–Ό         β–Ό           β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚EXPLORE β”‚β”‚PROPOSE β”‚β”‚  SPEC  β”‚β”‚ DESIGN β”‚β”‚ TASKS  β”‚β”‚ APPLY  β”‚ ...
β”‚        β”‚β”‚        β”‚β”‚        β”‚β”‚        β”‚β”‚        β”‚β”‚        β”‚
β”‚ Fresh  β”‚β”‚ Fresh  β”‚β”‚ Fresh  β”‚β”‚ Fresh  β”‚β”‚ Fresh  β”‚β”‚ Fresh  β”‚
β”‚context β”‚β”‚context β”‚β”‚context β”‚β”‚context β”‚β”‚context β”‚β”‚context β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Key insight: The orchestrator stays lightweight by delegating all work. Each sub-agent gets a fresh context window, reducing hallucinations and improving output quality.

The Dependency Graph

Agent Teams Lite phases follow a directed acyclic graph (DAG). Each phase has dependencies that must complete before it can run. Or let the implementer detect it from your codebase (test files alongside source). This cycle repeats for every task, ensuring test coverage grows with implementation.
See the TDD Workflow Guide for detailed examples and best practices.

Verification (v2.0)

The Verifier sub-agent performs real test execution:
1

Run test suite

Executes your project’s test command:
npm test
# or
pytest
# or
make test
Captures output and checks for failures.
2

Generate spec compliance matrix

Maps each requirement from the specs to test results:
RequirementStatusTest Coverage
Theme toggle switches between light/darkβœ… PASSThemeToggle.test.ts:12
System preference detected on first loadβœ… PASSThemeContext.test.ts:34
Preference persists to localStorageβœ… PASSThemeContext.test.ts:45
3

Report issues by severity

  • CRITICAL β€” Requirement not met, blocks merge
  • WARNING β€” Edge case missing, should fix
  • SUGGESTION β€” Nice-to-have improvement
Example:
## Verification Report

**Status**: PASSED with warnings

### Test Results
βœ“ 42/42 tests passing
βœ“ 94% code coverage (threshold: 80%)

### Spec Compliance
βœ“ 7/7 requirements verified

### Warnings
- Consider testing theme toggle keyboard accessibility (WCAG 2.1)

What’s Next?

Commands Reference

Learn all the SDD commands in detail

Sub-Agents Architecture

Dive deeper into the sub-agent system

Workflow Guide

Master the complete SDD workflow

Delta Specs

Learn how delta specs work

Build docs developers (and LLMs) love