context-vault 2.8.7 → 2.8.8

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/bin/cli.js CHANGED
@@ -1356,7 +1356,7 @@ async function runUpdate() {
1356
1356
  console.log(green(` ✓ Updated to v${latest}`));
1357
1357
  } catch {
1358
1358
  console.error(
1359
- red(" Update failed. Try manually: npm install -g context-vault@latest"),
1359
+ red(" Update failed. Try manually: npx -y context-vault@latest setup"),
1360
1360
  );
1361
1361
  }
1362
1362
  console.log();
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@context-vault/core",
3
- "version": "2.8.7",
3
+ "version": "2.8.8",
4
4
  "type": "module",
5
5
  "description": "Shared core: capture, index, retrieve, tools, and utilities for context-vault",
6
6
  "main": "src/index.js",
@@ -32,7 +32,7 @@ function formatNativeModuleError(err) {
32
32
  " npm rebuild better-sqlite3 sqlite-vec",
33
33
  "",
34
34
  " Or reinstall:",
35
- " npm install -g context-vault",
35
+ " npx -y context-vault@latest setup",
36
36
  );
37
37
 
38
38
  return lines.join("\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "context-vault",
3
- "version": "2.8.7",
3
+ "version": "2.8.8",
4
4
  "type": "module",
5
5
  "description": "Persistent memory for AI agents — saves and searches knowledge across sessions",
6
6
  "bin": {
@@ -55,7 +55,7 @@
55
55
  "@context-vault/core"
56
56
  ],
57
57
  "dependencies": {
58
- "@context-vault/core": "^2.8.7",
58
+ "@context-vault/core": "^2.8.8",
59
59
  "@modelcontextprotocol/sdk": "^1.26.0",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "sqlite-vec": "^0.1.0"