Replies: 1 comment
|
Project memories are tied to the absolute folder path, so a folder rename looks like a brand-new project to For moving/renaming a project, the cleanest option is to export from the old path and import from the new path: cd /old/path/to/project
claude-mem export --all > claude-mem-export.json
cd /new/path/to/project
claude-mem import claude-mem-export.jsonFor moving everything to another machine or sharing the whole install with a coworker, copy the # on the old machine
tar -czf claude-mem-data.tar.gz ~/.claude-mem
# on the new machine
tar -xzf claude-mem-data.tar.gz -C ~If you’ve configured a custom data directory, copy that directory instead of |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi, I have two cases:
I checked the docs and the export/import seem to focus on exporting a certain area within a project, but i want to move everything.
Thanks!
All reactions