threadnote 1.6.1 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/post-update-migrations.json +20 -0
- package/dist/mcp_server.cjs +359 -86
- package/dist/threadnote.cjs +631 -122
- package/docs/index.html +1 -1
- package/package.json +1 -1
|
@@ -18,6 +18,26 @@
|
|
|
18
18
|
"If Threadnote reported any original files were still being processed, rerun the printed threadnote forget <uri> command later."
|
|
19
19
|
],
|
|
20
20
|
"requiresLegacyHandoffs": true
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "remote-project-name-consolidation-v1",
|
|
24
|
+
"introducedIn": "1.6.3",
|
|
25
|
+
"title": "Consolidate memories under the git remote project name",
|
|
26
|
+
"description": [
|
|
27
|
+
"Threadnote now uses the git remote repository name as the default project identifier instead of the clone folder name.",
|
|
28
|
+
"This migration scans personal lifecycle-aware memory folders for the old folder-derived project name from the current workspace.",
|
|
29
|
+
"It also renames the matching seed manifest project and workset references so future seeded guidance uses the remote-derived project name.",
|
|
30
|
+
"Matching memories are copied under the remote-derived project name with updated project metadata, then the old copy is removed.",
|
|
31
|
+
"If a destination file already exists with different content, Threadnote keeps both by writing the migrated copy with a -from-<old-project> suffix.",
|
|
32
|
+
"Shared team memories and unrelated project folders are left untouched."
|
|
33
|
+
],
|
|
34
|
+
"commandArgs": ["migrate-project-names", "--apply"],
|
|
35
|
+
"instructions": [
|
|
36
|
+
"Post-update project-name migration finished. Future default handoffs and memories for this repo will use the git remote repository name as their project.",
|
|
37
|
+
"If the migration updated your seed manifest, run threadnote seed --only <new-project-name> to re-ingest seeded resources under the new project URI.",
|
|
38
|
+
"If Threadnote reported any original files were still being processed, rerun the printed threadnote forget <uri> command later."
|
|
39
|
+
],
|
|
40
|
+
"requiresProjectNameConsolidation": true
|
|
21
41
|
}
|
|
22
42
|
]
|
|
23
43
|
}
|