vault-cortex 0.2.13 → 0.3.0

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
@@ -7,9 +7,9 @@ for your Obsidian vault in one command:
7
7
  npx vault-cortex@latest init
8
8
  ```
9
9
 
10
- Vault Cortex is a plugin-free, remote-capable MCP server for Obsidian vaults —
11
- 25 tools for search (SQLite FTS5), notes, frontmatter, links, daily notes, and
12
- a persistent memory layer, plus 3 guided prompts (orientation, memory review,
10
+ Vault Cortex is a standalone, remote-capable MCP server for Obsidian vaults —
11
+ 25 tools for hybrid search (FTS5 + vector), notes, frontmatter, links, daily notes, and
12
+ a structured 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.
15
15
 
package/dist/env.js CHANGED
@@ -9,6 +9,17 @@ const LOCAL_OPTIONAL_BLOCK = `# Optional ─────────────
9
9
  # Your IANA timezone — affects daily note resolution and memory timestamps.
10
10
  # TZ=America/New_York
11
11
 
12
+ # Enable or disable the embedding pipeline (default: true).
13
+ # When true, notes are chunked and embedded via a local ONNX model
14
+ # (bge-small-en-v1.5) for hybrid search — FTS5 keyword + vector semantic
15
+ # similarity fused via RRF. First startup is slow (~5min for 700 notes);
16
+ # subsequent starts are fast via content-hash caching.
17
+ # Set to false to disable model download and use FTS5 search only.
18
+ # EMBEDDING_ENABLED=true
19
+
20
+ # Enable or disable the memory layer (default: true).
21
+ # Set to false to hide memory tools and skip About Me/ creation.
22
+ # MEMORY_ENABLED=true
12
23
  # Memory folder name in your vault (default: About Me).
13
24
  # MEMORY_DIR=About Me
14
25
 
@@ -33,6 +44,17 @@ const REMOTE_OPTIONAL_BLOCK = `# Optional ────────────
33
44
  # Your IANA timezone — affects daily note resolution and memory timestamps.
34
45
  # TZ=America/New_York
35
46
 
47
+ # Enable or disable the embedding pipeline (default: true).
48
+ # When true, notes are chunked and embedded via a local ONNX model
49
+ # (bge-small-en-v1.5) for hybrid search — FTS5 keyword + vector semantic
50
+ # similarity fused via RRF. First startup is slow (~5min for 700 notes);
51
+ # subsequent starts are fast via content-hash caching.
52
+ # Set to false to disable model download and use FTS5 search only.
53
+ # EMBEDDING_ENABLED=true
54
+
55
+ # Enable or disable the memory layer (default: true).
56
+ # Set to false to hide memory tools and skip About Me/ creation.
57
+ # MEMORY_ENABLED=true
36
58
  # Memory folder name in your vault (default: About Me).
37
59
  # MEMORY_DIR=About Me
38
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vault-cortex",
3
- "version": "0.2.13",
3
+ "version": "0.3.0",
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",
@@ -25,6 +25,8 @@ services:
25
25
  INDEX_DB_PATH: /data/index.db
26
26
  MCP_AUTH_TOKEN: "${MCP_AUTH_TOKEN:?Set MCP_AUTH_TOKEN in .env — see .env.example}"
27
27
  PUBLIC_URL: ${PUBLIC_URL:-http://localhost:8000}
28
+ EMBEDDING_ENABLED: ${EMBEDDING_ENABLED:-true}
29
+ MEMORY_ENABLED: ${MEMORY_ENABLED:-true}
28
30
  MEMORY_DIR: ${MEMORY_DIR:-About Me}
29
31
  LOG_LEVEL: ${LOG_LEVEL:-info}
30
32
  LOG_DIR: ${LOG_DIR:-}
@@ -53,6 +53,8 @@ services:
53
53
  INDEX_DB_PATH: /data/index.db
54
54
  MCP_AUTH_TOKEN: "${MCP_AUTH_TOKEN:?Set MCP_AUTH_TOKEN in .env — see .env.example}"
55
55
  PUBLIC_URL: "${PUBLIC_URL:?Set PUBLIC_URL to your server's public URL}"
56
+ EMBEDDING_ENABLED: ${EMBEDDING_ENABLED:-true}
57
+ MEMORY_ENABLED: ${MEMORY_ENABLED:-true}
56
58
  MEMORY_DIR: ${MEMORY_DIR:-About Me}
57
59
  LOG_LEVEL: ${LOG_LEVEL:-info}
58
60
  LOG_DIR: ${LOG_DIR:-/data/logs}