@velvetmonkey/flywheel-memory 2.0.83 → 2.0.84
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/index.js +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -13520,7 +13520,7 @@ Example: vault_add_to_section({ path: "daily/2026-02-15.md", section: "Log", con
|
|
|
13520
13520
|
}
|
|
13521
13521
|
}
|
|
13522
13522
|
let suggestInfo;
|
|
13523
|
-
if (suggestOutgoingLinks && !skipWikilinks
|
|
13523
|
+
if (suggestOutgoingLinks && !skipWikilinks) {
|
|
13524
13524
|
const result = await suggestRelatedLinks(processedContent, { maxSuggestions, notePath });
|
|
13525
13525
|
if (result.suffix) {
|
|
13526
13526
|
processedContent = processedContent + " " + result.suffix;
|
|
@@ -13641,7 +13641,7 @@ Example: vault_add_to_section({ path: "daily/2026-02-15.md", section: "Log", con
|
|
|
13641
13641
|
}
|
|
13642
13642
|
let workingReplacement = validationResult.content;
|
|
13643
13643
|
let { content: processedReplacement } = maybeApplyWikilinks(workingReplacement, skipWikilinks, notePath, ctx.content);
|
|
13644
|
-
if (suggestOutgoingLinks && !skipWikilinks
|
|
13644
|
+
if (suggestOutgoingLinks && !skipWikilinks) {
|
|
13645
13645
|
const result = await suggestRelatedLinks(processedReplacement, { maxSuggestions, notePath });
|
|
13646
13646
|
if (result.suffix) {
|
|
13647
13647
|
processedReplacement = processedReplacement + " " + result.suffix;
|
|
@@ -14044,7 +14044,7 @@ function registerNoteTools(server2, vaultPath2, getIndex) {
|
|
|
14044
14044
|
}
|
|
14045
14045
|
let { content: processedContent, wikilinkInfo } = maybeApplyWikilinks(effectiveContent, skipWikilinks, notePath);
|
|
14046
14046
|
let suggestInfo;
|
|
14047
|
-
if (suggestOutgoingLinks && !skipWikilinks
|
|
14047
|
+
if (suggestOutgoingLinks && !skipWikilinks) {
|
|
14048
14048
|
const result = await suggestRelatedLinks(processedContent, { maxSuggestions, notePath });
|
|
14049
14049
|
if (result.suffix) {
|
|
14050
14050
|
processedContent = processedContent + " " + result.suffix;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@velvetmonkey/flywheel-memory",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.84",
|
|
4
4
|
"description": "MCP server that gives Claude full read/write access to your Obsidian vault. Select from 51 tools for search, backlinks, graph queries, mutations, agent memory, and hybrid semantic search.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
56
|
-
"@velvetmonkey/vault-core": "^2.0.
|
|
56
|
+
"@velvetmonkey/vault-core": "^2.0.84",
|
|
57
57
|
"better-sqlite3": "^11.0.0",
|
|
58
58
|
"chokidar": "^4.0.0",
|
|
59
59
|
"gray-matter": "^4.0.3",
|