#aider
38 items tagged #aider.
38 items tagged #aider.
Every Aider turn re-sends the full chat history. After 30+ turns that history can cost more than the code change itself. Here is how to control it.
Aider's voice mode lets you speak prompts instead of typing them, using Whisper for transcription. Here's when it speeds up the loop and when it quietly wrecks it.
Aider uses a cheap secondary model for commit messages, summaries, and name suggestions. Here's what that flag does, when it helps, and when to turn it off.
Aider's git-native approach makes it better than IDE-based tools for large refactors that span dozens of files. Here's the workflow I use.
A single CONVENTIONS.md file in your repo, loaded into every Aider session, drops the rate of style-mismatch fixes from common to rare. Here's what to put in it.
Architect mode runs two model calls per turn: a strong model plans, a cheaper model edits. The math works for some tasks and not others. Here's the decision rule.
Aider's --subtree-only flag is necessary but not sufficient. Here's the four-file pattern for keeping aider focused on one package while still letting it see shared types.
I migrated an internal admin tool from jQuery to React using Aider as the primary tool for the mechanical parts. Here's the breakdown of what worked, what didn't, and the cost.
Aider's auto-commit feature can run pre-commit hooks. Configured well, this means the linter rejects bad suggestions before they reach your branch. Configured badly, it loops forever.
Aider's edit format is well-suited to test-driven development. Write the failing test, ask aider to make it pass, review the diff. The structure produces better code than letting aider write both.
Aider's auto-test feature wraps any shell command. For projects with custom Makefile-driven builds, the integration is straightforward but has gotchas.