fix(docs): correct plan rollback command signature in CHANGELOG and CONTRIBUTORS (PR #8674)
CI / status-check (pull_request) Blocked by required conditions
CI / push-validation (pull_request) Successful in 35s
CI / helm (pull_request) Successful in 45s
CI / build (pull_request) Successful in 1m11s
CI / lint (pull_request) Successful in 1m16s
CI / quality (pull_request) Successful in 1m16s
CI / typecheck (pull_request) Successful in 1m32s
CI / security (pull_request) Successful in 1m42s
CI / e2e_tests (pull_request) Successful in 4m12s
CI / benchmark-publish (pull_request) Has been skipped
CI / integration_tests (pull_request) Failing after 4m30s
CI / benchmark-regression (pull_request) Failing after 26s
CI / unit_tests (pull_request) Successful in 9m45s
CI / docker (pull_request) Failing after 12m31s
CI / coverage (pull_request) Failing after 12m31s

The command signature was documented as `agents plan rollback <checkpoint-id>`
which omitted the required <plan-id> first parameter. Corrected to:
  agents plan rollback <plan-id> [<checkpoint-id>]

Also added Epic #8493 reference and --format/-f flag details.

ISSUES CLOSED: #8557
Epic: #8493
This commit is contained in:
2026-05-08 06:24:07 +00:00
parent f32985b60a
commit 852112ba08
2 changed files with 2 additions and 8 deletions
+1 -7
View File
@@ -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 <checkpoint-id>`
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 <plan-id> [<checkpoint-id>]` 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 `<checkpoint-id>` 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
+1 -1
View File
@@ -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 <checkpoint-id>` 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 <plan-id> [<checkpoint-id>]` 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.