From 852112ba0838ca6e83208f207ef6096c50b41933 Mon Sep 17 00:00:00 2001 From: HAL9000 Date: Fri, 8 May 2026 06:24:07 +0000 Subject: [PATCH] fix(docs): correct plan rollback command signature in CHANGELOG and CONTRIBUTORS (PR #8674) The command signature was documented as `agents plan rollback ` which omitted the required first parameter. Corrected to: agents plan rollback [] Also added Epic #8493 reference and --format/-f flag details. ISSUES CLOSED: #8557 Epic: #8493 --- CHANGELOG.md | 8 +------- CONTRIBUTORS.md | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70dc68d04..dbadebaa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -119,13 +119,7 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). failure paths. Comprehensive BDD test coverage validates the fix under concurrent execution and confirms proper cleanup behavior. -- **Plan Rollback Command** (#8557): Implemented `agents plan rollback ` - command for checkpoint-based plan state restoration. Restores a plan to a previous - checkpoint state, discarding decisions made after the checkpoint. Supports `--yes/-y` - flag to skip confirmation prompts, `--to-checkpoint` as a named option alternative, - and `--format/-f` for output format selection (rich/plain/json/yaml). Includes - comprehensive BDD test coverage (>= 97%) and spec-aligned output formatting with - rollback summary, changes reverted, impact analysis, and post-rollback state panels. +- **Plan Rollback Command** (#8557): Implemented `agents plan rollback []` command for checkpoint-based plan state restoration in Epic #8493. Restores a plan's sandbox to the state captured at a given checkpoint, discarding decisions made after that checkpoint. The checkpoint is specified either as a positional `` argument (second parameter) or via the `--to-checkpoint` named option. Supports `--yes/-y` flag to skip confirmation prompts, and `--format/-f` for output format selection (rich/plain/json/yaml). Includes comprehensive BDD test coverage (>= 97%) and spec-aligned output formatting with rollback summary, changes reverted, impact analysis, and post-rollback state panels. ### Fixed diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 323284186..15b02543f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -33,4 +33,4 @@ Below are some of the specific details of various contributions. * HAL 9000 has contributed the LLMTraceRepository data-integrity fix (PR #8185 / issue #7505): replaced the unconditional `session.commit()` in `LLMTraceRepository.save()` with a dual-path implementation that respects the UnitOfWork pattern — flushing only when an external session is provided, and flushing + committing + closing when operating standalone. This eliminates premature transaction commits, loss of rollback capability, and a docstring/implementation mismatch. * HAL 9000 has contributed the ACMS Index Data Model and File Traversal Engine (PR #9664 / issue #9579): foundational data structures for indexed context entries with hot/warm/cold/archive storage tier classification, tag system, and a timeout-safe chunked file traversal engine for large projects with 10,000+ files. * HAL 9000 has contributed the error-suppression removal fix (PR #9247 / issue #9060): removed both `try...except Exception:` blocks in `register_registry_agents()` that silently suppressed errors from `actor_registry.list_actors()` and the route bridge refresh, enabling exceptions to propagate per CONTRIBUTING.md fail-fast policy. Added three Behave scenarios verifying RuntimeError, AttributeError, and TypeError propagation. -* HAL 9000 has contributed the agents plan rollback command (PR #8674 / issue #8557): implemented checkpoint-based plan state restoration with the `agents plan rollback ` CLI command, enabling plans to be restored to previous checkpoints, discarding post-checkpoint decisions, and resuming execution from the rolled-back state. Includes BDD test coverage (>= 97%) for rollback, decision discarding, and plan resume functionality as part of Epic #8493 (Checkpoint & Rollback System). +* HAL 9000 has contributed the agents plan rollback command (PR #8674 / issue #8557): implemented checkpoint-based plan state restoration with the `agents plan rollback []` CLI command as part of Epic #8493, enabling plans to be restored to previous checkpoints, discarding post-checkpoint decisions, and resuming execution from the rolled-back state. Supported by `--yes/-y`, `--to-checkpoint`, and `--format/-f` flags. Includes comprehensive BDD test coverage (>= 97%) for rollback, decision discarding, and plan resume functionality.