vault-cortex 0.2.10 → 0.2.12

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 CHANGED
@@ -8,7 +8,7 @@ npx vault-cortex@latest init
8
8
  ```
9
9
 
10
10
  Vault Cortex is a plugin-free, remote-capable MCP server for Obsidian vaults —
11
- 24 tools for search (SQLite FTS5), notes, frontmatter, links, daily notes, and
11
+ 25 tools for search (SQLite FTS5), notes, frontmatter, links, daily notes, and
12
12
  a persistent memory layer, plus 3 guided prompts (orientation, memory review,
13
13
  daily review). It runs as a Docker container; this CLI scaffolds the config so
14
14
  you don't have to.
package/dist/env.js CHANGED
@@ -56,8 +56,8 @@ const REMOTE_OPTIONAL_BLOCK = `# Optional ────────────
56
56
  # Device name shown in Obsidian Sync settings.
57
57
  # DEVICE_NAME=vault-cortex
58
58
 
59
- # Obsidian Sync conflict resolution: merge | conflict (default: conflict).
60
- # CONFLICT_STRATEGY=conflict
59
+ # Obsidian Sync conflict resolution: merge | conflict (default: merge).
60
+ # CONFLICT_STRATEGY=merge
61
61
 
62
62
  # Sync direction: bidirectional | pull-only | push-only (default: bidirectional).
63
63
  # SYNC_MODE=bidirectional
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vault-cortex",
3
- "version": "0.2.10",
3
+ "version": "0.2.12",
4
4
  "description": "Set up a Vault Cortex MCP server for your Obsidian vault in one command: npx vault-cortex init",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,6 +30,9 @@ services:
30
30
  LOG_DIR: ${LOG_DIR:-}
31
31
  LOG_RETENTION_DAYS: ${LOG_RETENTION_DAYS:-30}
32
32
  TZ: ${TZ:-UTC}
33
+ # Windows: set WINDOWS_MODE=true in .env when your vault is on a C: drive
34
+ # (polling watcher + rename-based moves across the Docker Desktop/WSL2 bridge).
35
+ WINDOWS_MODE: ${WINDOWS_MODE:-}
33
36
  # Optional overrides. When unset, the server applies smart defaults
34
37
  # (<MEMORY_DIR> below is the resolved MEMORY_DIR value, default "About Me"):
35
38
  # PROTECTED_PATHS default: "<MEMORY_DIR>, Daily Notes" (blocked from vault_delete_note)
@@ -23,7 +23,7 @@ services:
23
23
  PUID: ${PUID:-1000}
24
24
  PGID: ${PGID:-1000}
25
25
  DEVICE_NAME: ${DEVICE_NAME:-vault-cortex}
26
- CONFLICT_STRATEGY: ${CONFLICT_STRATEGY:-conflict}
26
+ CONFLICT_STRATEGY: ${CONFLICT_STRATEGY:-merge}
27
27
  SYNC_MODE: ${SYNC_MODE:-bidirectional}
28
28
  TZ: ${TZ:-UTC}
29
29
  volumes: