mrkeyoor.com_
Wed 16 Sept 05:25 UTC
AI Toolsevaluationupdated 27 Aug 2026

aider review

Aider is a terminal coding assistant that sends repository context to an LLM, applies edits, and works with Git so developers can inspect or undo what changed. It supports hosted and local models, codebase maps, lint and test commands, images, web pages, and an editor watch mode.

+143stars / 7d
Verdict

Our Aider run passed 473 tests, but 10 failed, 9 ended in setup errors, and pip-audit reported 126 known vulnerabilities after a 772 MB install. It remains a strong fit for an experienced developer who wants model choice and Git-visible edits in the terminal. Do not drop this commit into unattended automation or a security-sensitive workstation until the advisories, environment precedence, and failure exit codes are checked.

We ran it

Lab card: what happened when we ran aiderScreenshot of aider (aider.chat)
Install✓ · 104s171 packages · 772 MB
Build✓ · 9s
Tests✗ · 658s473 passed · 10 failed · 1 skipped · 9 errors of 492 (pytest)
Known vulns126(pip-audit)
Repo685 files~42,721 lines of source · 77.7 MB · 10 CI workflows · tests dir

Answers from our run

Does aider build from source?

Dependencies installed in 104 seconds (171 packages), and the build succeeded in 9 seconds. We cloned commit 5dc9490 into a clean Debian container with 3 CPUs and no project-specific setup.

Do aider's tests pass?

Not all of them: 473 of 492 passed and 10 failed when we ran the project's own test command (pytest), with 9 collection errors. Some failures need services or credentials a bare container does not have.

Does aider have known vulnerabilities in its dependencies?

pip-audit flagged 126 known advisories in the dependency tree at the time of our run.

Who should not use aider?

Security-sensitive teams that cannot review dependency advisories: our pip audit reported 126 known vulnerabilities in the installed environment.

What are the alternatives to aider?

Continue, Cline, OpenHands. Our Aider run passed 473 tests, but 10 failed, 9 ended in setup errors, and pip-audit reported 126 known vulnerabilities after a 772 MB install.

Setup3/5104-second install and 772 MB before model credentials
Docs5/5Installation, providers, Git, config, and workflows are well covered
Community4/548,521 stars with active issue discussion in August 2026
Maturity2/5126 advisories and an unclean suite need investigation

Discussed on

  1. hnAider: AI pair programming in your terminal432 points
  2. hnAider: AI pair programming in your terminal21 points
  3. hnShow HN: Navigator Mode (Like Claude Code) for Aider16 points
  4. hnThe new Aider-CE fork of Aider is now official14 points
  5. hnAider: AI pair programming in your terminal4 points

Who it’s for

Developers who prefer a terminal and Git diff over a separate AI editor.
Teams willing to choose and pay for their own model provider while keeping the coding interface open source.
Engineers who want an assistant to run existing linters and tests after it edits files.
Polyglot repositories that benefit from a generated map instead of sending every file on each prompt.

Who it’s NOT for

Security-sensitive teams that cannot review dependency advisories: our pip audit reported 126 known vulnerabilities in the installed environment.
Headless automation that trusts exit code 0 as proof of success: open issue 5552 reproduces that code after exhausted API connection retries.
Developers who run tools inside unfamiliar clones without checking .env: open issue 5622 reports project files overriding exported provider keys and endpoints.
Anyone expecting deterministic edits from a model: Aider can run tests and create Git commits, but model output still needs review.
Small containers or occasional users who object to a 772 MB Python environment for a terminal client.

Setup reality

Our sandbox installed commit 5dc9490 in 104 seconds, adding 171 packages and using 772 MB. The build passed in 9 seconds. Tests failed after 658 seconds: 473 passed, 10 failed, 1 skipped, and 9 collection or setup errors.

Normal use needs a model and its credentials, unless you configure a local model. The README shows DeepSeek, Anthropic, and OpenAI keys. Voice, web-page retrieval, images, linting, tests, and editor watch mode each add permissions or external tools to consider.

The log shows a missing Playwright Chromium executable, a failed request to a self-signed test site, four repository tests failing because UID 1000 had no passwd entry, and five help tests timing out after 120 seconds. Pip-audit reported 126 known vulnerabilities, which needs triage before team rollout.

Git makes Aider's edits inspectable and reversible

Aider runs inside a repository, chats about requested changes, edits files, and integrates with Git. Automatic commits give each accepted edit a boundary that familiar diff, log, revert, and branch tools can inspect. That suits developers who want an AI collaborator inside their existing shell rather than an editor replacement. It also makes accidental changes easier to isolate, provided the user reads the diff instead of treating a commit as approval.

The interface covers more than chat. Aider builds a map of the codebase, supports more than 100 programming languages according to its README, accepts images and web pages as context, watches editor comments, and can run linters or tests after edits. Model access is separate from the tool: users bring a provider key or configure a local model. That freedom is useful, but output quality, price, privacy, and rate limits follow the chosen model.

The 772 MB install is heavy for a terminal client

Our clean Debian container installed commit 5dc9490 in 104 seconds. The process added 171 Python packages and occupied 772 MB on disk. The checkout itself contained 685 files, roughly 42,721 lines of source, and 77.7 MB. Aider is still simple to invoke, but its dependency footprint looks more like a full Python application than a small command-line utility.

The documented setup uses aider-install, then starts Aider inside a project with a model name and API key. The README gives examples for DeepSeek, Anthropic, and OpenAI, while separate documentation covers many other hosted and local models. Teams should standardize model names, environment-variable ownership, spending limits, and which repository files may enter prompts before they make it a daily tool.

What happened when we ran it

Our run built successfully in 9 seconds after the 104-second install. Tests then ran for 658 seconds and exited with code 1. Pytest reported 473 passed, 10 failed, 1 skipped, 9 collection or setup errors, and 67 passing subtests. That is substantial successful coverage, but it is not a passing suite.

The log identifies several environment-specific failures without proving one shared cause. Playwright could not find its Chromium headless executable. A web test failed to retrieve content from self-signed.badssl.com. Four repository sanity tests raised getpwuid(): uid not found: 1000, and five help tests exceeded their 120-second timeout. These findings show what the checked-out commit expected from a fresh container; they do not tell us which failures reproduce on a normal developer account.

Pip-audit reported 126 known vulnerabilities in the installed packages. That count is the largest adoption concern in our run, even though it does not say that Aider itself is directly exploitable. Owners need the advisory list, affected versions, reachable code paths, and available upgrades before accepting the environment. The repository had 10 CI workflow files, no Dockerfile, and a tests directory.

Project .env files can change which provider receives code

Open issue 5622 reports that Aider loads dotenv files with override enabled, allowing a repository's .env values to replace provider keys, proxy settings, and API base URLs already exported in the shell. The report points to commit 5dc9490 and the load_dotenv call in aider/main.py. If confirmed in your setup, entering a clone and starting Aider could send code to a different compatible endpoint than the operator intended.

Until that behavior changes or is disproved, inspect .env, .aider.conf.yml, and repository instructions before launch. Print the effective provider and base URL through a safe configuration check that does not reveal secrets. Security teams should also review open issue 5621, which reports raw provider exception text entering opted-in PostHog telemetry. The report notes that some exception URLs may carry keys or internal hostnames; this is an open report, not our sandbox measurement.

Exit code 0 is unsafe evidence for unattended runs

Aider can take a message non-interactively, which makes it tempting to place in scripts. Open issue 5552 documents a malformed API endpoint, exhausted retries, a printed connection failure, and process exit code 0. A scheduler that equates zero with completed work may record that run as successful even though no useful model response arrived. The issue remained active in August 2026.

Automation should therefore check the expected diff, test result, output marker, or artifact instead of trusting the process status alone. It should also bound retries and cost, isolate credentials, and refuse unrelated file changes. Those controls are useful for any coding model, but the reported zero exit code makes them directly relevant here. Aider's strongest workflow remains interactive pair programming with a human watching the session and Git state.

Active issues outpace the latest release tag

GitHub showed 48,521 stars, 1,825 combined issues and pull requests, and a last push on May 22, 2026. New issue reports and discussion were active in August 2026, so the community has not gone quiet. The combined count is not a defect total, though it does signal a large support and contribution queue around a widely used tool.

The latest GitHub release was v0.86.0 from August 9, 2025. Its notes added model support, adjusted undo output, fixed settings replacement, and updated LiteLLM. A stale release tag alone does not prove abandonment, especially with later pushes and fresh issue activity. It does mean teams should decide whether to pin the release or a later commit, then reproduce our 10 failures and triage all 126 audit findings on that exact choice.

Aider earns a controlled trial because the terminal and Git workflow is practical, the documentation is deep, and most of our tests passed. The 772 MB environment, audit result, and current automation reports keep it out of the install-and-forget category. Start in a disposable branch, restrict credentials, review every diff, and make the repository's own tests the acceptance gate.

Alternatives

ProjectWhat it isPick it when
Continue gh↗An open-source coding assistant built around IDE integrations and configurable models.pick this instead when an editor sidebar and inline IDE workflow matter more than a terminal-first interface.
Cline gh↗A VS Code agent that can edit files, run commands, and use browser tools with approval steps.pick this instead when you want visible action approvals inside VS Code rather than a Git-centered terminal session.
OpenHands gh↗A larger agent platform for delegated software tasks in an isolated runtime.pick this instead when task delegation and sandboxed execution matter more than pair programming in the current shell.

Sources

  1. Aider README
  2. Aider v0.86.0 release
  3. Headless API failure exit-code report
  4. Dotenv precedence report
  5. Telemetry exception report

More ai tools reviews

DLSS5-Feeder · Concat · LocalMiniDrama · agents-towards-production · Marinara-Engine · AI-Engineering-Coach · the whole board →