threadnote 1.1.3 → 1.1.5
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/dist/mcp_server.cjs +52 -16
- package/dist/threadnote.cjs +3780 -3752
- package/docs/share.md +11 -8
- package/docs/troubleshooting.md +11 -3
- package/package.json +1 -1
- package/scripts/install.sh +5 -1
package/docs/share.md
CHANGED
|
@@ -194,12 +194,15 @@ threadnote share sync --team friends # other team
|
|
|
194
194
|
threadnote share sync --no-push # pull only
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
-
`share sync` will auto-commit
|
|
198
|
-
rebase
|
|
199
|
-
`recall` finds them immediately), and push.
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
197
|
+
`share sync` will auto-commit edits in Threadnote-managed share paths, fetch and
|
|
198
|
+
rebase onto the configured upstream, reindex pulled markdown files into
|
|
199
|
+
OpenViking (so `recall` finds them immediately), and push. Managed share paths
|
|
200
|
+
are root guidance/metadata files (`README.md`, `AGENTS.md`, `CLAUDE.md`,
|
|
201
|
+
`SKILL.md`, `.gitignore`) plus `durable/` and `agent-artifacts/`. If other dirty
|
|
202
|
+
files remain after staging those paths, sync stops before rebase so you can
|
|
203
|
+
commit, remove, or ignore them. Pass `--no-auto-commit` to refuse syncing when
|
|
204
|
+
the worktree is dirty. Automatic recall/read sync never commits a dirty shared
|
|
205
|
+
worktree; it warns and leaves that case for explicit `threadnote share sync`.
|
|
203
206
|
|
|
204
207
|
### Take a memory back
|
|
205
208
|
|
|
@@ -280,8 +283,8 @@ updates the git `origin` URL and verifies it with `git fetch`.
|
|
|
280
283
|
|
|
281
284
|
## Conflict resolution
|
|
282
285
|
|
|
283
|
-
`share sync`
|
|
284
|
-
cleanly:
|
|
286
|
+
`share sync` fetches the remote, then rebases onto the branch's configured
|
|
287
|
+
upstream. When git can't merge cleanly:
|
|
285
288
|
|
|
286
289
|
1. The pull command reports the conflict and leaves the worktree in a
|
|
287
290
|
rebase-in-progress state.
|
package/docs/troubleshooting.md
CHANGED
|
@@ -8,7 +8,9 @@ Run:
|
|
|
8
8
|
threadnote install
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
The installer prefers `uv`, then `pipx`, then `python3 -m pip install --user`.
|
|
11
|
+
The installer prefers `uv`, then `pipx`, then `python3 -m pip install --user`. For `curl | sh` installs, the wrapper
|
|
12
|
+
reattaches `threadnote install` to your terminal when possible so it can prompt to install `uv` and continue instead of
|
|
13
|
+
falling straight through to the pip fallback.
|
|
12
14
|
|
|
13
15
|
## `uv` Fails With `UnknownIssuer`
|
|
14
16
|
|
|
@@ -83,8 +85,14 @@ For detached starts, logs are written to:
|
|
|
83
85
|
~/.openviking/logs/server.log
|
|
84
86
|
```
|
|
85
87
|
|
|
86
|
-
If `start` reports that OpenViking did not become healthy,
|
|
87
|
-
|
|
88
|
+
If `start` reports that OpenViking did not become healthy, first check whether it finished shortly after the timeout:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
threadnote doctor --dry-run
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
If it still is not healthy, open that log. Certificate failures during the first embedding model download are covered
|
|
95
|
+
above.
|
|
88
96
|
|
|
89
97
|
## Port Already In Use
|
|
90
98
|
|
package/package.json
CHANGED
package/scripts/install.sh
CHANGED
|
@@ -116,7 +116,11 @@ install_package "$runtime"
|
|
|
116
116
|
threadnote_bin="$(find_threadnote "$runtime")" || die "Installed $PACKAGE, but could not find the threadnote command."
|
|
117
117
|
|
|
118
118
|
say "Running threadnote install"
|
|
119
|
-
|
|
119
|
+
if { true </dev/tty; } 2>/dev/null; then
|
|
120
|
+
"$threadnote_bin" install "$@" </dev/tty
|
|
121
|
+
else
|
|
122
|
+
"$threadnote_bin" install "$@"
|
|
123
|
+
fi
|
|
120
124
|
|
|
121
125
|
if ! have threadnote; then
|
|
122
126
|
say ""
|