@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
package/dist/index.mjs
CHANGED
|
@@ -5967,7 +5967,7 @@ function registerAutoForgetFunction(sdk, kv) {
|
|
|
5967
5967
|
|
|
5968
5968
|
//#endregion
|
|
5969
5969
|
//#region src/version.ts
|
|
5970
|
-
const VERSION = "0.9.
|
|
5970
|
+
const VERSION = "0.9.16";
|
|
5971
5971
|
|
|
5972
5972
|
//#endregion
|
|
5973
5973
|
//#region src/functions/export-import.ts
|
|
@@ -6100,7 +6100,8 @@ function registerExportImportFunction(sdk, kv) {
|
|
|
6100
6100
|
"0.9.12",
|
|
6101
6101
|
"0.9.13",
|
|
6102
6102
|
"0.9.14",
|
|
6103
|
-
"0.9.15"
|
|
6103
|
+
"0.9.15",
|
|
6104
|
+
"0.9.16"
|
|
6104
6105
|
]).has(importData.version)) return {
|
|
6105
6106
|
success: false,
|
|
6106
6107
|
error: `Unsupported export version: ${importData.version}`
|
|
@@ -19834,7 +19835,8 @@ async function main() {
|
|
|
19834
19835
|
console.warn(`[agentmemory] Failed to backfill memories into BM25:`, err);
|
|
19835
19836
|
}
|
|
19836
19837
|
bootLog(`Ready. ${embeddingProvider ? "Triple-stream (BM25+Vector+Graph)" : "BM25+Graph"} search active.`);
|
|
19837
|
-
bootLog(`
|
|
19838
|
+
bootLog(`REST API: 107 endpoints at http://localhost:${config.restPort}/agentmemory/*`);
|
|
19839
|
+
bootLog(`MCP surface (opt-in via \`npx @agentmemory/mcp\`): ${getAllTools().length} tools · 6 resources · 3 prompts`);
|
|
19838
19840
|
const viewerServer = startViewerServer(config.restPort + 2, kv, sdk, secret, config.restPort);
|
|
19839
19841
|
const autoForgetIntervalMs = parseInt(process.env.AUTO_FORGET_INTERVAL_MS || "3600000", 10);
|
|
19840
19842
|
const consolidationIntervalMs = parseInt(process.env.CONSOLIDATION_INTERVAL_MS || "7200000", 10);
|