vault-cortex 0.2.13 → 0.2.14

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/env.js CHANGED
@@ -9,6 +9,9 @@ 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 memory layer (default: true).
13
+ # Set to false to hide memory tools and skip About Me/ creation.
14
+ # MEMORY_ENABLED=true
12
15
  # Memory folder name in your vault (default: About Me).
13
16
  # MEMORY_DIR=About Me
14
17
 
@@ -33,6 +36,9 @@ const REMOTE_OPTIONAL_BLOCK = `# Optional ────────────
33
36
  # Your IANA timezone — affects daily note resolution and memory timestamps.
34
37
  # TZ=America/New_York
35
38
 
39
+ # Enable or disable the memory layer (default: true).
40
+ # Set to false to hide memory tools and skip About Me/ creation.
41
+ # MEMORY_ENABLED=true
36
42
  # Memory folder name in your vault (default: About Me).
37
43
  # MEMORY_DIR=About Me
38
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vault-cortex",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
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,7 @@ 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
+ MEMORY_ENABLED: ${MEMORY_ENABLED:-true}
28
29
  MEMORY_DIR: ${MEMORY_DIR:-About Me}
29
30
  LOG_LEVEL: ${LOG_LEVEL:-info}
30
31
  LOG_DIR: ${LOG_DIR:-}
@@ -53,6 +53,7 @@ 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
+ MEMORY_ENABLED: ${MEMORY_ENABLED:-true}
56
57
  MEMORY_DIR: ${MEMORY_DIR:-About Me}
57
58
  LOG_LEVEL: ${LOG_LEVEL:-info}
58
59
  LOG_DIR: ${LOG_DIR:-/data/logs}