Feature Request: Support pluggable database backends (MySQL) for team-shared memory #2421
Replies: 1 comment
|
Is your feature request related to a problem? Please describe.
Additional context
|
|
Is your feature request related to a problem? Please describe.
Additional context
|
Uh oh!
There was an error while loading. Please reload this page.
Before submitting
Is your feature request related to a problem? Please describe.
Our team works on the same codebase, but claude-mem stores observations in a local SQLite file (
~/.claude-mem/claude-mem.db) that is private to each machine. This means knowledge discovered by one engineer — how a module works, architecture decisions, recurring bug patterns — is never shared with teammates. Every engineer starts from scratch, and the collective memory never compounds across the team.Describe the solution you'd like
Support a configurable external database backend (MySQL or PostgreSQL) so that team members can point to the same database instance and share accumulated project knowledge across sessions.
Concretely:
DATABASE_URLenvironment variable (or config field) accepting a standard connection string:All reactions