Fix memory pipeline quality: ranking, LLM gating, decay, noise suppression#22
Merged
CalebisGross merged 3 commits intomainfrom Mar 1, 2026
Merged
Fix memory pipeline quality: ranking, LLM gating, decay, noise suppression#22CalebisGross merged 3 commits intomainfrom
CalebisGross merged 3 commits intomainfrom
Conversation
…ppression - Use FTS5 BM25 ranking in SearchByFullText instead of insertion order - Gate dreaming agent on LLM availability to prevent blind association boosting - Skip consolidation merge/pattern steps when LLM is unavailable - Lower pattern dedup cosine threshold from 0.8 to 0.70 to catch near-duplicates - Reduce recency protection from 0.5x to 0.8x so noise fades faster - Add path-aware suppression for app-internal dirs (Chrome, LM Studio, GNOME, etc.) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The regex (-f|--force) matched -f anywhere in the command, including branch names like fix/audit-pipeline-fixes. Added word boundaries. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Mar 1, 2026
This was referenced Mar 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.
Summary
Addresses the core pipeline issues identified by the system audit — the memory system was amplifying noise instead of filtering it.
SearchByFullTextnow usesORDER BY rankinstead of insertion order, so recall returns the most relevant matches firstprotect-git.shfalse positive — regex matched-fin branch names likefix/audit-pipeline-fixesTest plan
make buildpassesmake check(go fmt+go vet) passesmake test— all tests pass, including updated decay test expectations🤖 Generated with Claude Code