AIDE/DOCS/METHODOLOGY/AIDE Methodology Doc Hub

AIDE Methodology Doc Hub

Published
2026-05-09T11:12:48-07:00
Source commit
f1f6d3a
Cite as
https://aidemd.dev/docs/methodology/index?v=f1f6d3a

Pipeline Agents

AIDE ships the canonical pipeline agents that aide_init installs to .claude/agents/aide/. Most map to pipeline phases; the explorer is a read-only investigator:

AgentModelPhase(s)Brain Access
aide-spec-writeropusspecnone
aide-domain-expertsonnetresearchwrite
aide-strategistopussynthesizeread
aide-architectopusplanread (playbook + brain)
aide-implementorsonnetbuild, fixread (playbook)
aide-qasonnetqanone
aide-aligneropusalignnone
aide-auditoropusrefactorread (playbook + brain)
aide-explorersonnetinvestigation (read-only)read
aide-maintainersonnetpost-QA cleanupread (brain — verifies retro promotion)

The orchestrator (/aide) delegates to these agents by name. Each agent gets fresh context per phase — handoff is via files (.aide, plan.aide, todo.aide), not conversation. The explorer is the exception: it is a non-pipeline agent used for bug tracing, codebase questions, and intent-tree navigation — it never writes files. The maintainer is a precondition-gated cleanup pass: it runs once per closed feature (delegated by the orchestrator after QA passes and the retro is promoted to brain) to delete the per-module ephemerals (brief.aide, plan.aide, todo.aide) and, when the last in-flight feature closes, the project-wide .aide/session.aide.

Skills

AIDE ships two canonical skills that aide_init installs to .claude/skills/:

SkillPurpose
study-playbookNavigate the coding playbook top-down to load conventions before writing or reviewing code
brainSignpost — tells agents when a task needs cross-project knowledge external to the repo, and routes them through /aide:brain

The aide-architect and aide-auditor agents declare study-playbook in their frontmatter to load conventions before planning. Host teams build their own coding playbook inside the brain — an external, team-shareable knowledge store that the brain skill points at and the /aide:brain command navigates.

next →
Agent-Readable Code