@agentmemory/agentmemory 0.9.15 → 0.9.16
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 +44 -0
- package/dist/cli.mjs +776 -40
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/dist/{src-BGcqJR1a.mjs → src-3Oy_OOlF.mjs} +5 -3
- package/dist/src-3Oy_OOlF.mjs.map +1 -0
- package/dist/standalone.mjs +1 -1
- package/dist/standalone.mjs.map +1 -1
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/dist/connect-hRTF7E2c.mjs +0 -525
- package/dist/connect-hRTF7E2c.mjs.map +0 -1
- package/dist/src-BGcqJR1a.mjs.map +0 -1
|
@@ -5655,7 +5655,8 @@ function registerExportImportFunction(sdk, kv) {
|
|
|
5655
5655
|
"0.9.12",
|
|
5656
5656
|
"0.9.13",
|
|
5657
5657
|
"0.9.14",
|
|
5658
|
-
"0.9.15"
|
|
5658
|
+
"0.9.15",
|
|
5659
|
+
"0.9.16"
|
|
5659
5660
|
]).has(importData.version)) return {
|
|
5660
5661
|
success: false,
|
|
5661
5662
|
error: `Unsupported export version: ${importData.version}`
|
|
@@ -18316,7 +18317,8 @@ async function main() {
|
|
|
18316
18317
|
console.warn(`[agentmemory] Failed to backfill memories into BM25:`, err);
|
|
18317
18318
|
}
|
|
18318
18319
|
bootLog(`Ready. ${embeddingProvider ? "Triple-stream (BM25+Vector+Graph)" : "BM25+Graph"} search active.`);
|
|
18319
|
-
bootLog(`
|
|
18320
|
+
bootLog(`REST API: 107 endpoints at http://localhost:${config.restPort}/agentmemory/*`);
|
|
18321
|
+
bootLog(`MCP surface (opt-in via \`npx @agentmemory/mcp\`): ${getAllTools().length} tools · 6 resources · 3 prompts`);
|
|
18320
18322
|
const viewerServer = startViewerServer(config.restPort + 2, kv, sdk, secret, config.restPort);
|
|
18321
18323
|
const autoForgetIntervalMs = parseInt(process.env.AUTO_FORGET_INTERVAL_MS || "3600000", 10);
|
|
18322
18324
|
const consolidationIntervalMs = parseInt(process.env.CONSOLIDATION_INTERVAL_MS || "7200000", 10);
|
|
@@ -18383,4 +18385,4 @@ main().catch((err) => {
|
|
|
18383
18385
|
|
|
18384
18386
|
//#endregion
|
|
18385
18387
|
export { };
|
|
18386
|
-
//# sourceMappingURL=src-
|
|
18388
|
+
//# sourceMappingURL=src-3Oy_OOlF.mjs.map
|