feat: add soft-start feedback reinforcement - #103
Merged
Conversation
最初の実利用でprovisional updateを適用し、最初のconfirmed outcomeで通常一回分の残量を補うdefault-off候補を追加します。 後続confirmationの減衰、局所性、atomicity、MCP parity、既存defaultと凍結証拠の不変性をテストと文書で固定します。 Issue #100
lipluscodex
commented
Aug 21, 2026
lipluscodex
left a comment
Member
Author
There was a problem hiding this comment.
親セルフレビュー: PASS
- 最初の relation
usedは edge ごとの永続 schedule を作成し、通常 bounded increment の明示 ratio 分だけを一度適用します。後続 trace のusedは provisional を重複加算しません。 - 最初の独立
confirmedは initial weight + base increment を上限に残量だけを補い、provisional と合わせて通常一回分を超えません。二回目以降は既存 decay schedule、maximum / geometric cap に従います。 - sibling normalization は provisional では発火せず、confirmation の actual delta のみに限定されています。lexical、negative outcome、別 source、retry / duplicate は非変更です。
- source-use state、candidate marker、edge update、audit、receipt、および outcome / confirmation / sibling update / receipt はそれぞれ一つの SQLite transaction で atomic です。restart と policy conflict も fail closed です。
- core / MCP の tool description、CLI validation、receipt、effective-config provenance が一致し、既存 default fingerprint と q1/s0、q3/s1、confirmed-only を維持しています。
- live config/database と frozen manifest / fixture / packet / snapshot / observed result / assertion は変更していません。
- 要求範囲からの逸脱および残存 blocking finding はありません。
git diff --check、親側重点13 tests、全240 tests、eval smoke、GitHub CI、Optional MCP adapter は pass です。
次の処理: squash merge。fresh result-free successor evaluation と serving cutover は別issueへ残します。
This was referenced Aug 21, 2026
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.
Closes #100
最初の実利用で小さなprovisional updateを適用し、最初のconfirmed outcomeで通常一回分の残量を補うdefault-off候補を追加します。
後続confirmationの減衰、atomicity、MCP receipt parityを固定し、既存default、live config/database、凍結証拠は変更しません。