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.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ 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.
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.