Skip to content

aix backups

Configuring editors can be destructive. aix creates backups of every file it modifies before writing to it.

  • Local: .aix/.tmp/backups/ — Backups of files within your project.
  • Global: ~/.aix/backups/ — Backups of global editor config files (e.g., Windsurf’s mcp_config.json).

List all available backups.

Backups are automatically cleaned up based on the settings in ai.json:

{
"aix": {
"cache": {
"maxBackups": 5,
"maxBackupAgeDays": 30
}
}
}