Conversation
Contributor
feat(memory): add scoped paths and tools-only holographic mode
|
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
Adds two opt-in controls to the bundled Holographic memory provider:
db_path_templatefor privacy-safe SQLite separation using sanitized{profile},{platform},{chat}, and{user}placeholdersmemory_mode: toolsto keep explicitfact_storeandfact_feedbacktools while disabling automatic prefetchExisting
db_pathandhybridbehavior remain the defaults.Why
A gateway profile can serve both private DMs and shared groups. Profile- or user-scoped memory can therefore cross the actual conversational privacy boundary, while session-scoped storage loses continuity after
/new. A chat-scoped SQLite path preserves continuity within one conversation and separates DMs from groups without adding a daemon or remote service.Tools-only mode supports conservative deployments that want explicit writes and reads before enabling automatic context injection.
Example
Compatibility and safety
db_path_templateis opt-in and takes precedence only when configureddb_pathmemory_modedefaults tohybridTests
Focused coverage includes DM/group separation, path sanitization, legacy
db_pathbehavior, tools-only prefetch suppression, explicit tool availability, auto-extraction, retrieval, SQLite shutdown, and vector persistence.Related work