@agentmemory/agentmemory 0.8.8 → 0.8.9
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 +1 -1
- package/dist/cli.mjs +4 -4
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{src-CneY0pgf.mjs → src-DJpwR1mt.mjs} +4 -3
- package/dist/src-DJpwR1mt.mjs.map +1 -0
- package/dist/{standalone-Qmvspmgi.mjs → standalone-DpxhaZLn.mjs} +59 -13
- package/dist/standalone-DpxhaZLn.mjs.map +1 -0
- package/dist/standalone.d.mts.map +1 -1
- package/dist/standalone.mjs +58 -12
- package/dist/standalone.mjs.map +1 -1
- package/dist/{tools-registry-BuDo4gKj.mjs → tools-registry-CfbSegvn.mjs} +2 -2
- package/dist/tools-registry-CfbSegvn.mjs.map +1 -0
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.mcp.json +8 -0
- package/plugin/skills/forget/SKILL.md +11 -17
- package/plugin/skills/recall/SKILL.md +9 -6
- package/plugin/skills/remember/SKILL.md +14 -14
- package/plugin/skills/session-history/SKILL.md +10 -9
- package/dist/src-CneY0pgf.mjs.map +0 -1
- package/dist/standalone-Qmvspmgi.mjs.map +0 -1
- package/dist/tools-registry-BuDo4gKj.mjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as jaccardSimilarity, i as generateId, n as STREAM, r as fingerprintId, t as KV } from "./cli.mjs";
|
|
2
|
-
import { a as getEnvVar, c as isConsolidationEnabled, d as loadConfig, f as loadEmbeddingConfig, h as loadTeamConfig, i as getConsolidationDecayDays, l as isGraphExtractionEnabled, m as loadSnapshotConfig, n as VERSION, p as loadFallbackConfig, r as detectEmbeddingProvider, s as isAutoCompressEnabled, t as getVisibleTools, u as loadClaudeBridgeConfig } from "./tools-registry-
|
|
2
|
+
import { a as getEnvVar, c as isConsolidationEnabled, d as loadConfig, f as loadEmbeddingConfig, h as loadTeamConfig, i as getConsolidationDecayDays, l as isGraphExtractionEnabled, m as loadSnapshotConfig, n as VERSION, p as loadFallbackConfig, r as detectEmbeddingProvider, s as isAutoCompressEnabled, t as getVisibleTools, u as loadClaudeBridgeConfig } from "./tools-registry-CfbSegvn.mjs";
|
|
3
3
|
import { execFile } from "node:child_process";
|
|
4
4
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
5
5
|
import { dirname, join, resolve, sep } from "node:path";
|
|
@@ -4016,7 +4016,8 @@ function registerExportImportFunction(sdk, kv) {
|
|
|
4016
4016
|
"0.8.5",
|
|
4017
4017
|
"0.8.6",
|
|
4018
4018
|
"0.8.7",
|
|
4019
|
-
"0.8.8"
|
|
4019
|
+
"0.8.8",
|
|
4020
|
+
"0.8.9"
|
|
4020
4021
|
]).has(importData.version)) return {
|
|
4021
4022
|
success: false,
|
|
4022
4023
|
error: `Unsupported export version: ${importData.version}`
|
|
@@ -14060,4 +14061,4 @@ main().catch((err) => {
|
|
|
14060
14061
|
|
|
14061
14062
|
//#endregion
|
|
14062
14063
|
export { };
|
|
14063
|
-
//# sourceMappingURL=src-
|
|
14064
|
+
//# sourceMappingURL=src-DJpwR1mt.mjs.map
|