feat(memory): learn evidence-backed recovery policies (#1022)#1109
Open
shaun0927 wants to merge 1 commit into
Open
feat(memory): learn evidence-backed recovery policies (#1022)#1109shaun0927 wants to merge 1 commit into
shaun0927 wants to merge 1 commit into
Conversation
Add a bounded recovery policy learner so repeated evidence-backed recoveries can bias future candidate ranking without bypassing safety gates or executing actions.\n\nConstraint: Learned recovery policy must be advisory only and must not store sensitive page content or credentials.\nRejected: A separate autonomous recovery memory/executor | duplicates PatternLearner direction and risks unsafe automatic action.\nConfidence: high\nScope-risk: narrow\nDirective: Learned policies may rank candidates but must never override risk gates or opt-in execution controls.\nTested: npm test -- --runTestsByPath tests/recovery/policy-learner.test.ts tests/recovery/candidate-ranker.test.ts; npm run build\nNot-tested: Two-run live OpenChrome policy promotion transcript.
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
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.
Summary\n- Adds RecoveryPolicyLearner for evidence-backed recovery outcome promotion and persistence.\n- Lets candidate ranking accept promoted policies as a bounded score boost.\n- Keeps learned policies advisory-only and unable to bypass safety/risk gates.\n\nCloses #1022.\n\nStacked on #1088 because it biases the recovery candidate ranker.\n\n## Validation\n- npm test -- --runTestsByPath tests/recovery/policy-learner.test.ts tests/recovery/candidate-ranker.test.ts\n- npm run build\n\n## Live OpenChrome verification\n- Not run in this PR session; requires two-run stale-ref fixture transcript after the stacked foundations land.\n\n## Safety\n- Only evidence-backed outcomes are recorded.\n- Ambiguous outcomes do not promote.\n- Policies only bias ranking; they do not auto-execute actions and do not bypass risk gates.