@velvetmonkey/flywheel-memory 2.0.5 → 2.0.7

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.
Files changed (2) hide show
  1. package/dist/index.js +10 -5
  2. package/package.json +5 -3
package/dist/index.js CHANGED
@@ -11477,9 +11477,8 @@ var vaultIndex;
11477
11477
  var flywheelConfig = {};
11478
11478
  var stateDb = null;
11479
11479
  var PRESETS = {
11480
- // Core tools: search, navigate, create, edit
11481
- minimal: ["search", "backlinks", "health", "tasks", "append", "frontmatter", "notes", "structure"],
11482
- // All tools (default)
11480
+ // Presets
11481
+ minimal: ["search", "structure", "append", "frontmatter", "notes"],
11483
11482
  full: [
11484
11483
  "search",
11485
11484
  "backlinks",
@@ -11496,7 +11495,13 @@ var PRESETS = {
11496
11495
  "notes",
11497
11496
  "git",
11498
11497
  "policy"
11499
- ]
11498
+ ],
11499
+ // Composable bundles
11500
+ graph: ["backlinks", "orphans", "hubs", "paths"],
11501
+ analysis: ["schema", "wikilinks"],
11502
+ tasks: ["tasks"],
11503
+ health: ["health"],
11504
+ ops: ["git", "policy"]
11500
11505
  };
11501
11506
  var ALL_CATEGORIES = [
11502
11507
  "backlinks",
@@ -11552,7 +11557,6 @@ var TOOL_CATEGORY = {
11552
11557
  get_folder_structure: "health",
11553
11558
  refresh_index: "health",
11554
11559
  // absorbed rebuild_search_index
11555
- get_note_metadata: "health",
11556
11560
  get_all_entities: "health",
11557
11561
  get_unlinked_mentions: "health",
11558
11562
  // search (unified: metadata + content + entities)
@@ -11573,6 +11577,7 @@ var TOOL_CATEGORY = {
11573
11577
  get_note_structure: "structure",
11574
11578
  get_section_content: "structure",
11575
11579
  find_sections: "structure",
11580
+ get_note_metadata: "structure",
11576
11581
  // tasks (unified: all task queries + write)
11577
11582
  tasks: "tasks",
11578
11583
  vault_toggle_task: "tasks",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@velvetmonkey/flywheel-memory",
3
- "version": "2.0.5",
4
- "description": "MCP server that gives Claude full read/write access to your Obsidian vault. 76 tools for search, backlinks, graph queries, and mutations.",
3
+ "version": "2.0.7",
4
+ "description": "MCP server that gives Claude full read/write access to your Obsidian vault. 36 tools for search, backlinks, graph queries, and mutations.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
@@ -40,6 +40,8 @@
40
40
  "test:watch": "vitest",
41
41
  "test:read": "vitest run test/read/",
42
42
  "test:write": "vitest run test/write/",
43
+ "test:security": "vitest run test/write/security/",
44
+ "test:stress": "vitest run test/write/stress/ test/write/battle-hardening/",
43
45
  "test:coverage": "vitest run --coverage",
44
46
  "test:ci": "vitest run --reporter=github-actions",
45
47
  "lint": "tsc --noEmit",
@@ -48,7 +50,7 @@
48
50
  },
49
51
  "dependencies": {
50
52
  "@modelcontextprotocol/sdk": "^1.25.1",
51
- "@velvetmonkey/vault-core": "^2.0.5",
53
+ "@velvetmonkey/vault-core": "^2.0.7",
52
54
  "better-sqlite3": "^11.0.0",
53
55
  "chokidar": "^4.0.0",
54
56
  "gray-matter": "^4.0.3",