Skip to content

v0.1.6

Choose a tag to compare

@Nainish-Rai Nainish-Rai released this 11 Jun 10:38
· 10 commits to main since this release

What's new in 0.1.6

README: Full user-flow 30-second quickstart

Replaced the 3-bullet quickstart with a 7-step walkthrough. Each step
shows both the natural-language Codex prompt and the equivalent CLI
command, so a reader can follow along either way:

Step What you do Codex prompt CLI command
0 Install curl ... install.sh | bash -s -- --all
1 Initialize a repo agent-rollback init
2 Discover the tool surface "what can you do for checkpoints?" agent-rollback --help
3 Checkpoint + do something risky "make a checkpoint called 'green tests' and refactor the auth module" agent-rollback checkpoint "green tests"
4 Browse checkpoints "show me checkpoints" agent-rollback list / tui
5 Roll back "go to the last checkpoint" agent-rollback revert ... --yes
6 See what changed "what did the refactor change vs the green tests checkpoint?" agent-rollback diff from to

The new TOC has anchor links for each step.

Install

npm install -g agent-rollback
# or one-liner with skill + MCP auto-register
curl -fsSL https://raw.githubusercontent.com/Nainish-Rai/agent-rollback/main/scripts/install.sh | bash -s -- --all