Add a Launcher guide with runtime setup, Installs, Instances, and screenshot capture notes. Link the guide from README, quickstart, and docs index, and clarify the v1.20-to-v2.0 image upgrade path with backup/restore screenshots.
4.3 KiB
Self Update
Using Self Update in the Web UI
For day-to-day upgrades inside a running instance:
- Open Settings UI → Update tab
- Open Self Update
- Wait for the update checker to see if you have the latest version or if there's an available update.
The UI will tell you when a new A0 update is available for download. Backups are automatically managed internally during the update process.
Technical reference
Agent Zero includes a Docker-oriented self-update flow for switching to a specific repository version tag on main, testing, or development.
How it works
- The Web UI writes a YAML request file outside
/a0so the request survives upgrades and downgrades. - Agent Zero restarts.
- The durable updater in
/exereads the YAML request before starting the UI. - It cleans the root
uvcache whenuvis available. - If requested, it creates a zip backup of
/a0/usr. - It fetches the requested branch and update target from the official Agent Zero repository.
- It updates
/a0while preserving gitignored paths such as/a0/usr. - It starts Agent Zero again and waits for
/api/healthto become healthy. - If the UI does not become healthy within the allowed time, it restores the previous checkout and starts that version again.
Durable files
The self-update flow stores its runtime files outside /a0:
- Trigger file:
/exe/a0-self-update.yaml - Status file:
/exe/a0-self-update-status.yaml - Last attempt log:
/exe/a0-self-update.log
Because these files live in /exe, you can recover from an older downgraded /a0 by creating a new update YAML manually.
Backup behavior
The updater automatically creates a backup of a0/usr.
Version selection
The Web UI preloads repository version choices for the selected branch into a standard selector.
Only versions from the current major release line are listed in the selector. If newer major lines are available on the selected branch, the UI shows an attention banner that links to the Docker update guide.
The selector also includes latest when the selected branch is still on the current major line:
- On
main,latestresolves to the newest reachable release tag onmain. It is displayed aslatest (vX.Y). - On
testinganddevelopment,latestresolves to the current branch head. It is displayed aslatest (vX.Y+N)when the branch head isNcommits past the newest reachable tag, orlatest (vX.Y)when it is exactly on a tag.
Agent Zero version tags follow this format:
v{major}.{minor}
Examples:
v1.0v1.1
Tags below v1.0 are ignored by the selector and rejected by the self-update request validator.
Major version limitation
Self-update is intentionally limited to changes within the same major line.
If a newer major line exists, the UI points you to the Docker setup guide because those upgrades require downloading a new Docker image. They can include operating system level changes or other breaking changes outside the repository checkout.
v1.20 to v2.0
Use the Docker image update path for v1.20 -> v2.0. Self Update can show that a newer major release line exists, but it intentionally keeps the version selector inside the current major line.
The important part is moving a backup zip into a fresh v2.0 container:
- In the old v1.20 Web UI, create a backup from Settings -> Check for Updates -> Backup & Restore -> Create Backup.
- Pull
agent0ai/agent-zero:latestin Docker Desktop or Docker CLI. For the v2.0 release,latestis the v2.0 image. - Start a new container from that image, or use the latest card in Agent Zero Launcher.
- Restore the downloaded backup zip into the new v2.0 Instance.
- Verify the new Instance before deleting the old v1.20 container.
For command examples, see Updating from v1.20 to v2.0.
Safety notes
- Gitignored paths are preserved during update
- Obsolete tracked files are removed as part of the checkout replacement
- Rollback is automatic when the updated UI fails its health check
- The updater itself lives outside
/a0, so it is not lost by downgrading to an older repository state

