Paige automatically tracks every change the AI makes to your bot code. Each save creates a commit — a snapshot of your bot at that moment in time. You can browse this history, inspect what changed in any commit, and restore your bot to a previous version if something goes wrong. There’s no manual saving required.Documentation Index
Fetch the complete documentation index at: https://howto.paigeme.dev/llms.txt
Use this file to discover all available pages before exploring further.
How commits work
Every time you ask the AI agent to change your bot code and it saves those changes, a commit is recorded. Commits include a description of what changed and a complete snapshot of your code at that point, so you always have a full record of how your bot evolved.Commits are created automatically by the AI when it saves code. You don’t need to do anything to enable version history — it’s on for every project.
View your commit history
Go to Version History
In the project sidebar, click Version History. You’ll see a list of all commits for this project, ordered from most recent to oldest.
Restore a previous version
If a recent change broke your bot or you want to go back to an earlier working state, you can restore any commit.Find the commit to restore
Browse your commit history and open the commit you want to revert to. Review the diff to confirm it’s the right version.
Click Restore
Click the Restore button on that commit. Paige will immediately deploy that version of your bot code.
Confirm your bot is working
Use Paige Dev to send a test message and verify the restored version behaves as expected.