threadnote 0.7.7 → 0.7.9
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/README.md +11 -2
- package/dist/mcp_server.cjs +233 -196
- package/dist/threadnote.cjs +1673 -252
- package/docs/agent-instructions.md +2 -2
- package/docs/index.html +56 -32
- package/docs/share.md +20 -6
- package/manager/app.css +858 -0
- package/manager/app.js +37361 -0
- package/manager/index.html +14 -0
- package/package.json +15 -6
package/README.md
CHANGED
|
@@ -180,10 +180,15 @@ threadnote update
|
|
|
180
180
|
Check without changing anything:
|
|
181
181
|
|
|
182
182
|
```bash
|
|
183
|
+
threadnote version
|
|
183
184
|
threadnote update --check
|
|
184
185
|
threadnote update --dry-run
|
|
185
186
|
```
|
|
186
187
|
|
|
188
|
+
`threadnote version` prints the installed version, latest npm version, and GitHub release notes. When no update is
|
|
189
|
+
available, it shows the current release notes; when an update is available, it shows every newer version. `threadnote
|
|
190
|
+
update` prints the same full "What's new" diff when an update is available.
|
|
191
|
+
|
|
187
192
|
After updating, restart Cursor, Copilot, Codex, Claude, or open a fresh agent session so MCP tools reload.
|
|
188
193
|
|
|
189
194
|
Some releases include post-update memory migrations. `threadnote update` runs the new package's migration prompt after
|
|
@@ -334,8 +339,12 @@ This is it! Start working with your agents as usual. The agent will automaticall
|
|
|
334
339
|
- `install`: installs `openviking[local-embed]==0.3.12` if missing, creates `~/.openviking` config files if absent,
|
|
335
340
|
writes the command shim, upserts user-level agent instructions, and starts/checks OpenViking health by default. Use
|
|
336
341
|
`--no-start` to skip the health check.
|
|
342
|
+
- `version`: prints the installed Threadnote version, latest npm version, and release notes for newer GitHub releases.
|
|
337
343
|
- `update`: updates the published Threadnote package, then runs `repair` so shims and MCP config point at the new
|
|
338
|
-
version.
|
|
344
|
+
version. When an update is available, it prints release notes for the full version diff.
|
|
345
|
+
- `manage`: opens the local React web manager for browsing, recalling, reading, editing, archiving, forgetting,
|
|
346
|
+
publishing, consolidating, and diagnosing local/shared memories. It binds to `127.0.0.1` with a per-session token; use
|
|
347
|
+
`--no-open` to print the URL without opening a browser.
|
|
339
348
|
- `repair`: fixes install/config/shim/manifest/server health issues and rewrites Codex/Claude/Cursor/Copilot MCP configs
|
|
340
349
|
from the current checkout.
|
|
341
350
|
- `start`: starts `openviking-server` on `127.0.0.1:1933`.
|
|
@@ -371,7 +380,7 @@ This is it! Start working with your agents as usual. The agent will automaticall
|
|
|
371
380
|
succeeds.
|
|
372
381
|
- `forget`: removes a `viking://` URI.
|
|
373
382
|
- `export-pack` / `import-pack`: moves local context through `.ovpack` files.
|
|
374
|
-
- `share init|status|sync|publish|unpublish|list|remove`: opts a curated subset of durable memories into a team git
|
|
383
|
+
- `share init|status|sync|publish|unpublish|list|rename|set-url|remove`: opts a curated subset of durable memories into a team git
|
|
375
384
|
repo. Threadnote periodically fetches configured share repos and automatically syncs clean incoming changes before
|
|
376
385
|
agent recall/read; use `share sync` for dirty worktrees, conflicts, explicit pushes, or immediate manual sync.
|
|
377
386
|
Personal handoffs and preferences stay local. See `docs/share.md` for the full workflow and the publish-time scrubber
|