mnemosyne-core 2.1.13 → 2.1.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/cli/index.js +10 -9
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +10 -9
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/index.mjs +1 -1
- package/dist/mcp/index.mjs.map +1 -1
- package/dist/server/api.js +3 -3
- package/dist/server/api.js.map +1 -1
- package/dist/server/api.mjs +3 -3
- package/dist/server/api.mjs.map +1 -1
- package/dist/server/index.js +4 -4
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +4 -4
- package/dist/server/index.mjs.map +1 -1
- package/logo.png +0 -0
- package/package.json +3 -2
package/dist/cli/index.js
CHANGED
|
@@ -3635,7 +3635,7 @@ function getVersion() {
|
|
|
3635
3635
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
3636
3636
|
return pkg.version;
|
|
3637
3637
|
} catch {
|
|
3638
|
-
return "2.1.
|
|
3638
|
+
return "2.1.13";
|
|
3639
3639
|
}
|
|
3640
3640
|
}
|
|
3641
3641
|
}
|
|
@@ -7599,7 +7599,7 @@ var require_package = __commonJS({
|
|
|
7599
7599
|
"package.json"(exports2, module2) {
|
|
7600
7600
|
module2.exports = {
|
|
7601
7601
|
name: "mnemosyne-core",
|
|
7602
|
-
version: "2.1.
|
|
7602
|
+
version: "2.1.14",
|
|
7603
7603
|
description: "Unified memory engine for AI agents \u2014 graph atoms, semantic search, and collaborative memory",
|
|
7604
7604
|
logo: "logo.png",
|
|
7605
7605
|
author: "Arman Aslanyan <aslanyanarman88@gmail.com> (https://www.linkedin.com/in/arman-aslanyan/)",
|
|
@@ -7639,7 +7639,8 @@ var require_package = __commonJS({
|
|
|
7639
7639
|
files: [
|
|
7640
7640
|
"dist",
|
|
7641
7641
|
"README.md",
|
|
7642
|
-
"WORKING_EXAMPLE.md"
|
|
7642
|
+
"WORKING_EXAMPLE.md",
|
|
7643
|
+
"logo.png"
|
|
7643
7644
|
],
|
|
7644
7645
|
scripts: {
|
|
7645
7646
|
start: "node dist/cli/index.js",
|
|
@@ -8937,7 +8938,7 @@ function getVersion2() {
|
|
|
8937
8938
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
8938
8939
|
return pkg.version;
|
|
8939
8940
|
} catch {
|
|
8940
|
-
return "2.1.
|
|
8941
|
+
return "2.1.13";
|
|
8941
8942
|
}
|
|
8942
8943
|
}
|
|
8943
8944
|
}
|
|
@@ -9539,7 +9540,7 @@ function getVersion3() {
|
|
|
9539
9540
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
9540
9541
|
return pkg.version;
|
|
9541
9542
|
} catch {
|
|
9542
|
-
return "2.1.
|
|
9543
|
+
return "2.1.13";
|
|
9543
9544
|
}
|
|
9544
9545
|
}
|
|
9545
9546
|
}
|
|
@@ -10674,7 +10675,7 @@ var PKG_VERSION = (() => {
|
|
|
10674
10675
|
const pkg = JSON.parse(require("fs").readFileSync(require("path").resolve(__dirname, "../../package.json"), "utf-8"));
|
|
10675
10676
|
return pkg.version;
|
|
10676
10677
|
} catch {
|
|
10677
|
-
return "2.1.
|
|
10678
|
+
return "2.1.13";
|
|
10678
10679
|
}
|
|
10679
10680
|
})();
|
|
10680
10681
|
function handleHealth(store, pathname, method, res) {
|
|
@@ -11002,7 +11003,7 @@ var MnemosyneServer = class {
|
|
|
11002
11003
|
const wss = new import_websocket_server.default({ server: this.httpServer });
|
|
11003
11004
|
this.wsHandler = new WebSocketHandler(wss, this.store);
|
|
11004
11005
|
}
|
|
11005
|
-
const version = cfg?.server?.version || "2.1.
|
|
11006
|
+
const version = cfg?.server?.version || "2.1.13";
|
|
11006
11007
|
this.httpServer.listen(port, () => {
|
|
11007
11008
|
console.log(`Mnemosyne v${version} \u2014 port ${port}`);
|
|
11008
11009
|
console.log(`Dashboard: http://${host}:${port}/dashboard`);
|
|
@@ -11060,7 +11061,7 @@ function getVersion4() {
|
|
|
11060
11061
|
const { resolve: resolve14 } = require("path");
|
|
11061
11062
|
return JSON.parse(readFileSync8(resolve14(__dirname, "../../package.json"), "utf-8")).version;
|
|
11062
11063
|
} catch {
|
|
11063
|
-
return "2.1.
|
|
11064
|
+
return "2.1.13";
|
|
11064
11065
|
}
|
|
11065
11066
|
}
|
|
11066
11067
|
async function startCommand(options) {
|
|
@@ -11352,7 +11353,7 @@ program2.name("mnemosyne").description("Mnemosyne \u2014 Your exocortex").versio
|
|
|
11352
11353
|
try {
|
|
11353
11354
|
return require_package().version;
|
|
11354
11355
|
} catch {
|
|
11355
|
-
return "2.1.
|
|
11356
|
+
return "2.1.13";
|
|
11356
11357
|
}
|
|
11357
11358
|
})());
|
|
11358
11359
|
program2.command("init").description("Initialize a new Mnemosyne workspace").option("-d, --data-dir <path>", "Data directory", "./data").option("-c, --config <path>", "Config file path").action(initCommand);
|