threadnote 1.0.0 → 1.1.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 +4 -0
- package/dist/mcp_server.cjs +4280 -1449
- package/dist/threadnote.cjs +488 -179
- package/docs/troubleshooting.md +4 -0
- package/manager/app.js +13 -1
- package/package.json +1 -1
package/docs/troubleshooting.md
CHANGED
|
@@ -124,6 +124,10 @@ Threadnote uses its bundled stdio MCP adapter by default, even when the installe
|
|
|
124
124
|
`/mcp`. The adapter adds Threadnote-specific tools and behavior such as shared-memory sync, exact recall fallback,
|
|
125
125
|
seeded-resource recall augmentation, and recall-index repair.
|
|
126
126
|
|
|
127
|
+
The adapter also exposes raw OpenViking parity tools with `ov_*` names for native behaviors such as code symbol
|
|
128
|
+
navigation, watch management, raw search/read/list/store/remember, grep/glob, resource import, and forget. Prefer
|
|
129
|
+
Threadnote-named tools for memory workflows; use `ov_*` when you intentionally want native OpenViking behavior.
|
|
130
|
+
|
|
127
131
|
Use the default stdio adapter:
|
|
128
132
|
|
|
129
133
|
```bash
|
package/manager/app.js
CHANGED
|
@@ -34760,6 +34760,7 @@
|
|
|
34760
34760
|
const [toast, setToast] = (0, import_react2.useState)("");
|
|
34761
34761
|
const [output, setOutput] = (0, import_react2.useState)("");
|
|
34762
34762
|
const [recallQuery, setRecallQuery] = (0, import_react2.useState)("");
|
|
34763
|
+
const [recallProject, setRecallProject] = (0, import_react2.useState)("");
|
|
34763
34764
|
const [readUri, setReadUri] = (0, import_react2.useState)("");
|
|
34764
34765
|
const [compactProject, setCompactProject] = (0, import_react2.useState)("");
|
|
34765
34766
|
const [compactTopic, setCompactTopic] = (0, import_react2.useState)("");
|
|
@@ -35671,12 +35672,23 @@
|
|
|
35671
35672
|
placeholder: "Search memories and seeded resources"
|
|
35672
35673
|
}
|
|
35673
35674
|
),
|
|
35675
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
35676
|
+
"input",
|
|
35677
|
+
{
|
|
35678
|
+
value: recallProject,
|
|
35679
|
+
onChange: (event) => setRecallProject(event.target.value),
|
|
35680
|
+
placeholder: "project scope (blank = all)"
|
|
35681
|
+
}
|
|
35682
|
+
),
|
|
35674
35683
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
35675
35684
|
"button",
|
|
35676
35685
|
{
|
|
35677
35686
|
onClick: () => void runAction(
|
|
35678
35687
|
"Recall complete",
|
|
35679
|
-
() => api("/api/recall", {
|
|
35688
|
+
() => api("/api/recall", {
|
|
35689
|
+
query: recallQuery,
|
|
35690
|
+
...recallProject.trim() ? { project: recallProject.trim() } : {}
|
|
35691
|
+
}).then((result) => result)
|
|
35680
35692
|
),
|
|
35681
35693
|
children: "Search"
|
|
35682
35694
|
}
|