You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Feature Request
Summary
Add support for project-level configuration via
.claude-mem.jsonfile to disable memory capture for specific projects.Use Case
As a developer working on multiple projects, I need the ability to:
Proposed Solution
Support a
.claude-mem.jsonfile in the project root with options like:{ "enabled": false, "reason": "Project contains sensitive client data" }Or with more granular control:
{ "enabled": true, "captureObservations": false, "captureSessions": true, "capturePrompts": false }Expected Behavior
enabled: false, claude-mem hooks should skip all memory capture for that project~/.claude-mem/settings.json:{ "ignoredProjects": ["SensitiveProject", "TemporaryExperiment"] }Current Workaround
Currently, users must manually delete project data from SQLite:
This is not ideal as it requires post-hoc cleanup rather than prevention.
Additional Context
.gitignore,.npmrc) support project-level configurationThank you for this excellent plugin! 🙏
Beta Was this translation helpful? Give feedback.
All reactions