audrey 0.16.0 → 0.16.1
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/mcp-server/config.js +6 -2
- package/package.json +1 -1
package/mcp-server/config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { homedir } from 'node:os';
|
|
2
2
|
import { join } from 'node:path';
|
|
3
3
|
|
|
4
|
-
export const VERSION = '0.16.
|
|
4
|
+
export const VERSION = '0.16.1';
|
|
5
5
|
export const SERVER_NAME = 'audrey-memory';
|
|
6
6
|
export const DEFAULT_DATA_DIR = join(homedir(), '.audrey', 'data');
|
|
7
7
|
|
|
@@ -70,7 +70,11 @@ export function buildInstallArgs(env = process.env) {
|
|
|
70
70
|
for (const pair of envPairs) {
|
|
71
71
|
args.push('-e', pair);
|
|
72
72
|
}
|
|
73
|
-
|
|
73
|
+
if (process.platform === 'win32') {
|
|
74
|
+
args.push('--', 'cmd', '/c', 'npx', 'audrey');
|
|
75
|
+
} else {
|
|
76
|
+
args.push('--', 'npx', 'audrey');
|
|
77
|
+
}
|
|
74
78
|
|
|
75
79
|
return args;
|
|
76
80
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "audrey",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Biological memory architecture for AI agents — encode, consolidate, and recall memories with confidence decay, contradiction detection, and causal graphs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|