feat(plan-correction): implement correction data model and persistence
CI / benchmark-publish (pull_request) Has been skipped
CI / helm (pull_request) Successful in 41s
CI / lint (pull_request) Successful in 54s
CI / build (pull_request) Successful in 59s
CI / benchmark-regression (pull_request) Failing after 1m8s
CI / quality (pull_request) Successful in 1m14s
CI / typecheck (pull_request) Successful in 1m45s
CI / security (pull_request) Successful in 1m45s
CI / push-validation (pull_request) Successful in 21s
CI / integration_tests (pull_request) Successful in 3m54s
CI / unit_tests (pull_request) Successful in 4m27s
CI / e2e_tests (pull_request) Failing after 4m44s
CI / docker (pull_request) Successful in 1m41s
CI / coverage (pull_request) Successful in 11m56s
CI / status-check (pull_request) Failing after 4s

Implement CorrectionRepositoryProtocol in the domain layer as the port
for correction attempt record persistence. The protocol defines CRUD
operations (create, get, list_by_plan, update_state, delete) following
the clean architecture pattern with dependency inversion.

Removes out-of-scope checkpoint CLI code (issue #8559) that was
accidentally included in this PR, which caused undefined Behave step
failures in CI. Aligns CHANGELOG.md and CONTRIBUTORS.md with the
actual delivered scope.

ISSUES CLOSED: #8531
This commit is contained in:
2026-04-24 21:20:55 +00:00
committed by CleverThis
parent 2732fd11a7
commit 409147a2f2
+1
View File
@@ -22,6 +22,7 @@ Below are some of the specific details of various contributions.
* HAL 9000 has contributed the plugin entry point security hardening fix (#7476): enforced entry point allowlist validation before importing plugin modules to prevent malicious plugin loading.
* HAL 9000 has contributed the benchmark workflow separation (#9040): moved the benchmark-regression job out of the default PR workflow into a dedicated scheduled workflow, reducing median PR CI turnaround time from 99-132 minutes to under 30 minutes.
* HAL 9000 has contributed the agent-evolution-pool-supervisor PR metadata assignment (#7888): the supervisor now automatically looks up the Type/Automation label and earliest open milestone before dispatching improvement PR creation workers, ensuring all generated improvement PRs have correct Type labels and milestone assignments.
* HAL 9000 has contributed the correction data model domain protocol (PR #8685 / issue #8531): implemented `CorrectionRepositoryProtocol` as the domain port for correction attempt record persistence, enabling the Plan Correction Engine (v3.2.0) to persist correction attempts durably across operations.
* This project was made possible thanks to considerable donation of time, money, and resources by CleverThis, Inc.
* HAL 9000 has contributed automated bug fixes, CLI output formatting improvements, and ongoing maintenance as part of the CleverAgents automation system.
* HAL 9000 has contributed the file edit encoding parameter fix (PR #8258 / issue #7559).