threadnote 1.4.2 → 1.4.4
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/threadnote.cjs +1 -1
- package/docs/index.html +2 -2
- package/docs/troubleshooting.md +30 -0
- package/package.json +1 -1
package/dist/threadnote.cjs
CHANGED
|
@@ -3394,7 +3394,7 @@ var program = new Command();
|
|
|
3394
3394
|
// src/constants.ts
|
|
3395
3395
|
var DEFAULT_HOST = "127.0.0.1";
|
|
3396
3396
|
var DEFAULT_PORT = 1933;
|
|
3397
|
-
var DEFAULT_OPENVIKING_VERSION = "0.4.
|
|
3397
|
+
var DEFAULT_OPENVIKING_VERSION = "0.4.5";
|
|
3398
3398
|
var OPENVIKING_TOOL_PYTHON = "3.12";
|
|
3399
3399
|
var DEFAULT_ACCOUNT = "local";
|
|
3400
3400
|
var DEFAULT_AGENT_ID = "threadnote";
|
package/docs/index.html
CHANGED
|
@@ -1147,7 +1147,7 @@
|
|
|
1147
1147
|
<span class="out">--user`, which fails on PEP 668 setups.</span>
|
|
1148
1148
|
<span class="out">Install uv now? [Y/n] </span><span class="out-strong">Y</span>
|
|
1149
1149
|
<span class="out">Installing uv via Homebrew…</span>
|
|
1150
|
-
<span class="out-strong">OK openviking 0.4.
|
|
1150
|
+
<span class="out-strong">OK openviking 0.4.5 ready · server healthy</span></pre>
|
|
1151
1151
|
</div>
|
|
1152
1152
|
<p class="muted" style="margin-top: 0.75rem; font-size: 0.9rem">
|
|
1153
1153
|
Or manually: <code>npm install -g threadnote && threadnote install</code>. On a fresh macOS / modern
|
|
@@ -1651,7 +1651,7 @@ threadnote doctor --dry-run</code></pre>
|
|
|
1651
1651
|
</div>
|
|
1652
1652
|
|
|
1653
1653
|
<p class="colophon">
|
|
1654
|
-
threadnote · AGPL-3.0-or-later · built on OpenViking 0.4.
|
|
1654
|
+
threadnote · AGPL-3.0-or-later · built on OpenViking 0.4.5 · use <span class="kbd">↑</span>
|
|
1655
1655
|
<span class="kbd">↓</span> / <span class="kbd">j</span> <span class="kbd">k</span> to navigate
|
|
1656
1656
|
</p>
|
|
1657
1657
|
</div>
|
package/docs/troubleshooting.md
CHANGED
|
@@ -94,6 +94,36 @@ threadnote doctor --dry-run
|
|
|
94
94
|
If it still is not healthy, open that log. Certificate failures during the first embedding model download are covered
|
|
95
95
|
above.
|
|
96
96
|
|
|
97
|
+
## Semantic Queue Stuck / Memory Writes Hang
|
|
98
|
+
|
|
99
|
+
Symptom: agents hang or `remember`/`handoff` get very slow, and `~/.openviking/logs/server.log` repeats:
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
RuntimeError: Failed to list memory directory viking://user/.../memories/.../<name>.md: Directory not found
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
A memory _file_ got enqueued for directory-level semantic processing; older OpenViking releases listed it as a
|
|
106
|
+
directory, failed, and re-enqueued the message forever. The entry is AGFS-persisted, so it survives a server restart.
|
|
107
|
+
Check the queue — a non-zero `Errors`/`Requeued` on the `Semantic` row is the signature:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
ov observer queue
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
This is fixed upstream in OpenViking 0.4.5. Update Threadnote so it upgrades the pinned OpenViking install and restarts
|
|
114
|
+
the server:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
threadnote update
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
If Threadnote is already current but OpenViking is still older than 0.4.5, force a reinstall of the pinned OpenViking
|
|
121
|
+
tool:
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
threadnote install --force
|
|
125
|
+
```
|
|
126
|
+
|
|
97
127
|
## Port Already In Use
|
|
98
128
|
|
|
99
129
|
The default bind address is `127.0.0.1:1933`. This does not conflict with projects serving `localhost:80`,
|