Does Autter slow down git?
For day-to-day use, the CLI should feel close to normal Git. The heaviest work happens when Autter needs to record checkpoint data, merge Git notes, or inspect a large commit range. If something feels slow, check the specific command first:autter statusinspects the current working treeautter statswalks commit history for the range you give itautter blamereads attribution for one fileautter debugchecks the installation and integrations
What runs locally
Local checkpointing and Git-note writes happen on the machine that is doing the edit or commit. That means:- your coding agent can checkpoint changes without waiting on the platform
- commit-time attribution stays with the repository
- background uploads only matter in connected mode
Connected mode can add background work after a commit, but it should not change how you prompt, stage, or commit.
What gets slower on large repos
The most common slowdown is history inspection, not the commit itself. Commands that may take longer on large repositories or wide ranges:autter stats main..HEADautter blame <file>autter show <commit-or-range>
How to keep performance predictable
- Keep the CLI installed on a local disk.
- Let the background service stay running.
- Re-run
autter install-hooksafter adding a new coding agent. - Use the narrowest command that answers your question.
When to investigate further
If Autter feels unusually slow, run:CLI command reference
See the exact flags for the commands this page mentions.

