Back to Vault

Coding Agents
Tier 4
Aider
Summary
The benchmark terminal pair-programming agent. Its two signature patterns: a tree-sitter powered repo map that gives the model compressed, ranked codebase context, and diff-based edit formats that make model edits reliable and reviewable.
Key Takeaways
- Repo map: compressed, ranked codebase context beats raw file dumps
- Diff-based edits are more reliable than whole-file rewrites
- Git-native workflow: every agent change is a commit you can undo
Reliability Note
Official repository of an actively maintained project.
Flows informed by this source
2MCP & Tooling
Build a Repo Map for Code Navigation
Give your agent compressed, ranked codebase awareness - the tree-sitter repo-map pattern that beats raw file dumps.
01Extract symbols per file
02Rank by relevance
03Render within budget
+1 more steps to Done
Best forproduction-grade builds with strict verification
4 steps90-150 minutesAdvanced
MCP & Tooling
Design Tool Schemas for Agents
Write tool schemas that constrain model behavior: tight types, enums over strings, and parameters that make misuse hard.
01Audit schemas for looseness
02Tighten the schemas
03Make validation errors teach
+1 more steps to Done
Best forbuilders who have shipped a basic app before
4 steps60-90 minutesIntermediate