Aider vs Cursor: your own key against a finished product

Aider is free software that bills you nothing and your model provider everything. Cursor is $20 a month and is the editor itself. That is not a features comparison, it is a decision about who owns the meter and who owns your editing surface.

By the Continuum team. We build a workbench that runs Claude Code, Codex, and their peers, so the model rates quoted here are the ones our own cost analytics ship with.

The short version

Aider is an Apache 2.0 terminal tool that works with almost any model, including local ones, and auto-commits every change. Cursor is a VS Code fork at $20/mo whose Tab completion is the best in the category. Aider wins on control, model choice, and cost at light use. Cursor wins on the editing hour and on being actively shipped.

What you need to know
  • Aider is free software; you pay only your model provider.
  • Cursor Pro is $20/mo, and Tab plus Auto mode do not draw credits.
  • Aider works with almost any model, including local ones.
  • Aider auto-commits every change, which is the best idea in it.
  • Aider's last tagged release was v0.86.0 in August 2025. Check that before you standardise on it.

Side by side

Checked against the vendor pages and the GitHub API, August 2026.

AiderCursor
ShapeTerminal tool, editor-agnosticA VS Code fork
LicenceApache 2.0Proprietary
Price$0 plus your token spendFree tier, Pro $20; Pro+ and Ultra prices not published
ModelsAlmost any, including local via OllamaSeveral, chosen by Cursor
Predictive editingNoneTab, the best in the category
Git integrationAuto-commits every changeStandard editor git
Repo awarenessRepo map built from your treeIndexed codebase
Offline / air-gappedYes, with a local modelNo
Runs in CIYes, scriptableA separate CLI exists
Team controlsNoneTeams $40/user, SSO, analytics
Last tagged releasev0.86.0, August 2025Continuous
GitHub stars48,000Closed source

Who is actually cheaper

Free plus tokens is not the same as free, and the comparison has a clean threshold. Cursor Pro is $20 a month and includes a $20 credit pool, unlimited Tab completion, and Auto mode that does not draw on the pool at all. So the question is exactly this: does your Aider token bill come to more or less than $20 a month?

What decides which side of $20 you land on.

Usage shapeAider billVerdict
A few sessions a week, a mid-tier modelLow single digitsAider
Daily use, frontier model, large repo mapComfortably past $20Cursor, on price alone
A local model on your own hardware$0Aider, decisively
Mostly autocomplete while you typeAider does not do thisCursor
Long agent runs with a big contextGrows fast, no ceilingCursor, for the predictable bill
Occasional bursts, quiet monthsNear zero in a quiet monthAider
Installing Aider, August 2026.
# recommended installer
python -m pip install aider-install
aider-install

# one-liners
curl -LsSf https://aider.chat/install.sh | sh                 # macOS, Linux
powershell -ExecutionPolicy ByPass -c "irm https://aider.chat/install.ps1 | iex"   # Windows

# or with uv / pipx
uv tool install --force --python python3.12 --with pip aider-chat@latest
pipx install aider-chat

# first run, pick your provider
cd ~/code/your-project
aider --model sonnet --api-key anthropic=<key>

The maintenance question

This is the part most comparisons skip, and it is the one that should change your mind. Aider is not abandoned, but its cadence has changed a great deal, and if you are choosing a tool to standardise a team on, that is a fact you want before the decision rather than after.

Aider repository state, read from the GitHub API on 7 August 2026.

SignalValue
Latest tagged releasev0.86.0, 9 August 2025
Last push to main22 May 2026
ArchivedNo
Stars48,021
Open issues1,779
LicenceApache 2.0

Commits are still landing, so the project is alive. But a year without a tagged release, in a category where a new frontier model ships every few weeks, has a specific practical consequence: Aider maintains its model list by hand. The most recent commits at the time of writing were adding newer Claude model names to that list. If you want a model released last month, you may be installing from main, or waiting.

Auto-commit is the best idea in Aider

Aider commits every change it makes, with a generated message. It sounds like a small convenience and it is not. It turns "what did the agent change" from an archaeology exercise into git log, and it makes any individual edit revertable without unwinding the rest of the session.

  • Every edit is a commit, so git revert works at the granularity of a decision.
  • Review becomes a log read. You can walk the session in order rather than diffing a pile.
  • A bad turn costs one commit, not a session, which changes how much freedom you are willing to give it.

Watch mode means the answer can be both

Aider is editor-agnostic on purpose. Its watch mode monitors your files and acts on AI comments you type in whatever editor you like, which includes Cursor. So the comparison people frame as either/or has a third answer that is genuinely common: Cursor for the editing hour, Aider for the agent loop on your own key.

Hour of the dayTool
Typing code you are designingCursor, for Tab
Reading unfamiliar codeCursor, for the editor
A change you can describe in a sentenceAider, and it commits it
Work on a model Cursor does not offerAider
Anything on an air-gapped machineAider, local model
A big refactor you want to review as a diffCursor
A scripted change across many reposAider, it scripts cleanly

Which to pick

If youPickWhy
Want the typing to be fasterCursorTab has no equivalent in Aider
Have a model requirementAiderAny provider, including local
Work air-gapped or under data rulesAiderNothing has to leave the machine
Want a predictable monthly billCursorA subscription has a ceiling
Use it a few times a weekAiderQuiet months cost nothing
Are buying for a teamCursorTeams billing, SSO, analytics
Want the tool to keep pace with new modelsCursorSomeone else maintains that list
Want to read and modify the tool itselfAiderApache 2.0, Python

If you are genuinely undecided, the cheap experiment is to run Aider for a fortnight against a key with a spending limit while keeping Cursor on its free tier. At the end you have two numbers that settle it: your token bill, and how often you missed Tab.

Questions people ask

The software is free and Apache 2.0 licensed. You pay your model provider per token, so a light user might spend a couple of dollars a month and a heavy user on a frontier model can pass $20 without noticing.

It is not archived and commits were still landing on main as of 22 May 2026, but the latest tagged release is v0.86.0 from 9 August 2025. In a category where models ship every few weeks, and where Aider maintains its model list by hand, that gap is worth knowing before you standardise on it.

Not entirely. Aider has no predictive editing, which is the single feature people pay Cursor for. It can replace Cursor's agent mode if you want your own model choice and per-token billing.

Yes. Aider is editor-agnostic and its watch mode responds to AI comments you type in any editor, Cursor included. Running both is a real setup rather than a compromise.

Aider, if your token spend stays under about $20 a month or you run a local model, because Cursor Pro is $20 flat and includes a $20 credit pool. Cursor, once you are using a frontier model daily on a large repository.

Yes, including through Ollama, which is the strongest argument for it. That makes air-gapped and data-restricted work possible in a way no subscription editor can match.

It commits every change it makes with a generated message. That makes any individual edit revertable and turns reviewing a session into reading a git log rather than untangling one large diff.

Yes, Cursor ships a command-line agent alongside the editor, with a non-interactive print mode for scripts and pipelines. It does not change the core comparison, which is about who owns the model choice and the meter.

Sources

Every figure above was read from these pages on August 2026. Vendors reprice without notice; if you find a stale number, tell us.

  1. Aider documentation
  2. Cursor pricing
  3. Aider-AI/aider on GitHub
  4. Cursor documentation
Try it

Any model,
one meter.

Continuum runs subscription agents and your own keys side by side, with one spend view by repo across all of them.

free app · your subscriptions · local-first