threadnote 0.6.3 → 0.7.1
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 +7 -3
- package/dist/mcp_server.cjs +439 -29
- package/dist/threadnote.cjs +2362 -2111
- package/docs/agent-instructions.md +3 -2
- package/docs/index.html +10 -8
- package/docs/share.md +15 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -350,8 +350,10 @@ This is it! Start working with your agents as usual. The agent will automaticall
|
|
|
350
350
|
- `forget`: removes a `viking://` URI.
|
|
351
351
|
- `export-pack` / `import-pack`: moves local context through `.ovpack` files.
|
|
352
352
|
- `share init|status|sync|publish|unpublish|list|remove`: opts a curated subset of durable memories into a team git
|
|
353
|
-
repo
|
|
354
|
-
|
|
353
|
+
repo. Threadnote periodically fetches configured share repos and automatically syncs clean incoming changes before
|
|
354
|
+
agent recall/read; use `share sync` for dirty worktrees, conflicts, explicit pushes, or immediate manual sync.
|
|
355
|
+
Personal handoffs and preferences stay local. See `docs/share.md` for the full workflow and the publish-time scrubber
|
|
356
|
+
rules.
|
|
355
357
|
|
|
356
358
|
## Source Checkout
|
|
357
359
|
|
|
@@ -427,4 +429,6 @@ threadnote list viking://agent/threadnote/memories --all --recursive
|
|
|
427
429
|
|
|
428
430
|
When MCP is installed, the agent should use Threadnote MCP `recall_context`, then `read_context` or `list_context`.
|
|
429
431
|
Agents must pass JSON arguments, for example `recall_context({"query":"agent context"})`. Older adapters expose
|
|
430
|
-
`search`, `read`, and `list` aliases.
|
|
432
|
+
`search`, `read`, and `list` aliases. Before recall/read returns, Threadnote automatically syncs clean incoming shared
|
|
433
|
+
memory updates when a configured share repo is behind; failures are reported as warnings and the local read still
|
|
434
|
+
continues. The CLI commands are the fallback path.
|