@memoryrelay/plugin-memoryrelay-ai 0.15.0 → 0.15.1
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 +19 -1
- package/index.ts +30 -3
- package/openclaw.plugin.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ MemoryRelay is designed for engineering teams managing complex, long-running pro
|
|
|
22
22
|
| Multi-agent collaboration | Yes (agent scoping, subagent tracking) | Limited | No |
|
|
23
23
|
| Auto-capture with privacy tiers | Yes (off/conservative/smart/aggressive) | Basic | No |
|
|
24
24
|
| V2 Async Storage | Yes | No | No |
|
|
25
|
-
| Direct commands |
|
|
25
|
+
| Direct commands | 17 | ~5 | 0 |
|
|
26
26
|
| Lifecycle hooks | 13 | 0 | 0 |
|
|
27
27
|
| Tools | 42 | ~10 | 0 |
|
|
28
28
|
|
|
@@ -319,6 +319,24 @@ The plugin ships with 9 skills providing guided workflows on top of the raw tool
|
|
|
319
319
|
- **Agent-facing**: `memory-workflow`, `decision-tracking`, `pattern-management`, `project-orchestration`, `entity-and-context`
|
|
320
320
|
- **Developer-facing**: `codebase-navigation`, `testing-memoryrelay`, `release-process`
|
|
321
321
|
|
|
322
|
+
## Updating
|
|
323
|
+
|
|
324
|
+
To update to the latest version:
|
|
325
|
+
|
|
326
|
+
```bash
|
|
327
|
+
openclaw plugins update plugin-memoryrelay-ai
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
Or from within a conversation, run `/memory-update` to see the exact command.
|
|
331
|
+
|
|
332
|
+
**Important:** The plugin ID is `plugin-memoryrelay-ai` (not `memory-memoryrelay`). Using the wrong ID will fail with "No install record."
|
|
333
|
+
|
|
334
|
+
After updating, restart the gateway:
|
|
335
|
+
|
|
336
|
+
```bash
|
|
337
|
+
openclaw restart
|
|
338
|
+
```
|
|
339
|
+
|
|
322
340
|
## Troubleshooting
|
|
323
341
|
|
|
324
342
|
### Connection refused / API key issues
|
package/index.ts
CHANGED
|
@@ -709,7 +709,7 @@ class MemoryRelayClient {
|
|
|
709
709
|
headers: {
|
|
710
710
|
"Content-Type": "application/json",
|
|
711
711
|
Authorization: `Bearer ${this.apiKey}`,
|
|
712
|
-
"User-Agent": "openclaw-memory-memoryrelay/0.15.
|
|
712
|
+
"User-Agent": "openclaw-memory-memoryrelay/0.15.1",
|
|
713
713
|
},
|
|
714
714
|
body: body ? JSON.stringify(body) : undefined,
|
|
715
715
|
},
|
|
@@ -4490,7 +4490,7 @@ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
|
|
|
4490
4490
|
});
|
|
4491
4491
|
|
|
4492
4492
|
api.logger.info?.(
|
|
4493
|
-
`memory-memoryrelay: plugin v0.15.
|
|
4493
|
+
`memory-memoryrelay: plugin v0.15.1 loaded (${Object.values(TOOL_GROUPS).flat().length} tools, autoRecall: ${cfg?.autoRecall}, autoCapture: ${autoCaptureConfig.enabled ? autoCaptureConfig.tier : 'off'}, debug: ${debugEnabled})`,
|
|
4494
4494
|
);
|
|
4495
4495
|
|
|
4496
4496
|
// ========================================================================
|
|
@@ -4898,7 +4898,7 @@ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
|
|
|
4898
4898
|
}
|
|
4899
4899
|
|
|
4900
4900
|
// ========================================================================
|
|
4901
|
-
// Direct Commands (
|
|
4901
|
+
// Direct Commands (17 total) — bypass LLM, execute immediately
|
|
4902
4902
|
// ========================================================================
|
|
4903
4903
|
|
|
4904
4904
|
// /memory-status — Show full plugin status report
|
|
@@ -5580,6 +5580,33 @@ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
|
|
|
5580
5580
|
},
|
|
5581
5581
|
});
|
|
5582
5582
|
|
|
5583
|
+
// /memory-update — Show update instructions (v0.15.0)
|
|
5584
|
+
api.registerCommand?.({
|
|
5585
|
+
name: "memory-update",
|
|
5586
|
+
description: "Show how to update the MemoryRelay plugin to the latest version",
|
|
5587
|
+
requireAuth: true,
|
|
5588
|
+
handler: async (_ctx) => {
|
|
5589
|
+
const currentVersion = "0.15.1";
|
|
5590
|
+
const lines: string[] = [
|
|
5591
|
+
"MemoryRelay Plugin Update",
|
|
5592
|
+
"━".repeat(50),
|
|
5593
|
+
`Current version: ${currentVersion}`,
|
|
5594
|
+
"",
|
|
5595
|
+
"To update to the latest version, run:",
|
|
5596
|
+
"",
|
|
5597
|
+
" openclaw plugins update plugin-memoryrelay-ai",
|
|
5598
|
+
"",
|
|
5599
|
+
"Then restart the gateway:",
|
|
5600
|
+
"",
|
|
5601
|
+
" openclaw restart",
|
|
5602
|
+
"",
|
|
5603
|
+
"Note: The plugin ID is 'plugin-memoryrelay-ai'",
|
|
5604
|
+
"(not 'memory-memoryrelay').",
|
|
5605
|
+
];
|
|
5606
|
+
return { text: lines.join("\n") };
|
|
5607
|
+
},
|
|
5608
|
+
});
|
|
5609
|
+
|
|
5583
5610
|
// ========================================================================
|
|
5584
5611
|
// Stale Session Cleanup Service (v0.13.0)
|
|
5585
5612
|
// ========================================================================
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"id": "plugin-memoryrelay-ai",
|
|
3
3
|
"kind": "memory",
|
|
4
4
|
"name": "MemoryRelay AI",
|
|
5
|
-
"description": "MemoryRelay v0.15.
|
|
6
|
-
"version": "0.15.
|
|
5
|
+
"description": "MemoryRelay v0.15.1 - Long-term memory with 42 tools, 17 commands, V2 async, sessions, decisions, patterns & projects (api.memoryrelay.net)",
|
|
6
|
+
"version": "0.15.1",
|
|
7
7
|
"uiHints": {
|
|
8
8
|
"apiKey": {
|
|
9
9
|
"label": "MemoryRelay API Key",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memoryrelay/plugin-memoryrelay-ai",
|
|
3
|
-
"version": "0.15.
|
|
4
|
-
"description": "OpenClaw memory plugin for MemoryRelay API - 42 tools,
|
|
3
|
+
"version": "0.15.1",
|
|
4
|
+
"description": "OpenClaw memory plugin for MemoryRelay API - 42 tools, 17 commands, V2 async, sessions, decisions, patterns, projects & semantic search",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
7
7
|
"scripts": {
|