@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
package/README.md
CHANGED
|
@@ -295,7 +295,7 @@ Open `http://localhost:3113` to watch the memory build live.
|
|
|
295
295
|
### Claude Code (one block, paste it)
|
|
296
296
|
|
|
297
297
|
```
|
|
298
|
-
Install agentmemory: run `npx @agentmemory/agentmemory` in a separate terminal to start the memory server. Then run `/plugin marketplace add rohitg00/agentmemory` and `/plugin install agentmemory`
|
|
298
|
+
Install agentmemory: run `npx @agentmemory/agentmemory` in a separate terminal to start the memory server. Then run `/plugin marketplace add rohitg00/agentmemory` and `/plugin install agentmemory` — the plugin registers all 12 hooks, 4 skills, AND auto-wires the `@agentmemory/mcp` stdio server via its `.mcp.json`, so you get 43 MCP tools (memory_smart_search, memory_save, memory_sessions, memory_governance_delete, etc.) without any extra config step. Verify with `curl http://localhost:3111/agentmemory/health`. The real-time viewer is at http://localhost:3113.
|
|
299
299
|
```
|
|
300
300
|
|
|
301
301
|
<details>
|
package/dist/cli.mjs
CHANGED
|
@@ -284,12 +284,12 @@ async function main() {
|
|
|
284
284
|
p.intro("agentmemory");
|
|
285
285
|
if (skipEngine) {
|
|
286
286
|
p.log.info("Skipping engine check (--no-engine)");
|
|
287
|
-
await import("./src-
|
|
287
|
+
await import("./src-DJpwR1mt.mjs");
|
|
288
288
|
return;
|
|
289
289
|
}
|
|
290
290
|
if (await isEngineRunning()) {
|
|
291
291
|
p.log.success("iii-engine is running");
|
|
292
|
-
await import("./src-
|
|
292
|
+
await import("./src-DJpwR1mt.mjs");
|
|
293
293
|
return;
|
|
294
294
|
}
|
|
295
295
|
if (!await startEngine()) {
|
|
@@ -333,7 +333,7 @@ async function main() {
|
|
|
333
333
|
process.exit(1);
|
|
334
334
|
}
|
|
335
335
|
s.stop("iii-engine is ready");
|
|
336
|
-
await import("./src-
|
|
336
|
+
await import("./src-DJpwR1mt.mjs");
|
|
337
337
|
}
|
|
338
338
|
async function runStatus() {
|
|
339
339
|
const port = getRestPort();
|
|
@@ -557,7 +557,7 @@ async function runDemo() {
|
|
|
557
557
|
p.log.success("agentmemory is working. Point your agent at it and get back to coding.");
|
|
558
558
|
}
|
|
559
559
|
async function runMcp() {
|
|
560
|
-
await import("./standalone-
|
|
560
|
+
await import("./standalone-DpxhaZLn.mjs");
|
|
561
561
|
}
|
|
562
562
|
({
|
|
563
563
|
status: runStatus,
|
package/dist/index.mjs
CHANGED
|
@@ -4127,7 +4127,7 @@ function registerAutoForgetFunction(sdk, kv) {
|
|
|
4127
4127
|
|
|
4128
4128
|
//#endregion
|
|
4129
4129
|
//#region src/version.ts
|
|
4130
|
-
const VERSION = "0.8.
|
|
4130
|
+
const VERSION = "0.8.9";
|
|
4131
4131
|
|
|
4132
4132
|
//#endregion
|
|
4133
4133
|
//#region src/functions/export-import.ts
|
|
@@ -4243,7 +4243,8 @@ function registerExportImportFunction(sdk, kv) {
|
|
|
4243
4243
|
"0.8.5",
|
|
4244
4244
|
"0.8.6",
|
|
4245
4245
|
"0.8.7",
|
|
4246
|
-
"0.8.8"
|
|
4246
|
+
"0.8.8",
|
|
4247
|
+
"0.8.9"
|
|
4247
4248
|
]).has(importData.version)) return {
|
|
4248
4249
|
success: false,
|
|
4249
4250
|
error: `Unsupported export version: ${importData.version}`
|