feat(engine): implement systematic debugging mode#69
Merged
Conversation
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
4ee1c51 to
2a74a6b
Compare
Bumps workspace versions to 0.65.0, registers the systematic debugging mode, and enforces the five-phase artifact gate checklist (01-context, 02-reproduction, 03-root-cause, 04-fix-decision, 05-verification) for resolving and tracking codebase incidents.
2a74a6b to
520ee2d
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



What
Implemented the systematic
debuggingmode withincanon-engineto enable a recommendation-only, green-zone workflow for codebase troubleshooting, incident isolation, and validation.Why
This change is needed to address roadmap feature
01-systematic-debugging, establishing a structured five-step gate system to ensure incidents undergo rigorous verification and post-incident root-cause analysis before closure.How
debuggingmode in the domain model and classifier.debuggingmode gatekeeper logic incrates/canon-engine/src/modes/debugging.rs.01-context(Incident background and initial assumptions)02-reproduction(Test harness, script, or environment setups)03-root-cause(Diagnostic isolation and analysis evidence)04-fix-decision(Remediation choices and tradeoffs)05-verification(Evidence demonstrating red-to-green state transition)0.65.0.roadmap/features/and updated modes guides (tech-docs/guides/modes.mdanddocs/guide/canon-modes.md).Validation
tests/debugging_run.rsverifying gate checks, missing artifact blocks, and transition paths.cargo testandcargo nextest runto ensure all existing and new tests pass cleanly.cargo clippy --workspace --all-targets --all-features -- -D warningsandcargo fmt.Checklist