-
Notifications
You must be signed in to change notification settings - Fork 166
fix: route Claude session saves to shared repo container #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| const PLUGIN_VERSION = '0.0.9'; | ||
| const PLUGIN_VERSION = '0.0.10'; | ||
|
|
||
| module.exports = { PLUGIN_VERSION }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When
repoContainerTagis not configured,getRepoContainerTag()derives the tag from only the repository basename (for example bothgithub.com/acme/api.gitandgithub.com/personal/api.gitbecomerepo_api). Routing automatic session summaries through that tag means unrelated repos or forks with the same name under the same Supermemory account will mix recalled context and saved session data; the previous autosave path used a hashed project path and did not have this collision. Consider including the remote owner/full URL or another stable hash in the default repo tag.Useful? React with 👍 / 👎.