@memoryrelay/plugin-memoryrelay-ai 0.15.3 → 0.15.5
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/index.ts +5 -5
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OpenClaw Memory Plugin - MemoryRelay
|
|
3
|
-
* Version: 0.15.
|
|
3
|
+
* Version: 0.15.5
|
|
4
4
|
*
|
|
5
5
|
* Long-term memory with vector search using MemoryRelay API.
|
|
6
6
|
* Provides auto-recall and auto-capture via lifecycle hooks.
|
|
@@ -711,7 +711,7 @@ class MemoryRelayClient {
|
|
|
711
711
|
headers: {
|
|
712
712
|
"Content-Type": "application/json",
|
|
713
713
|
Authorization: `Bearer ${this.apiKey}`,
|
|
714
|
-
"User-Agent": "openclaw-memory-memoryrelay/0.15.
|
|
714
|
+
"User-Agent": "openclaw-memory-memoryrelay/0.15.5",
|
|
715
715
|
},
|
|
716
716
|
body: body ? JSON.stringify(body) : undefined,
|
|
717
717
|
},
|
|
@@ -1324,7 +1324,7 @@ class MemoryRelayClient {
|
|
|
1324
1324
|
async stats(): Promise<Stats> {
|
|
1325
1325
|
const response = await this.request<{ data: Stats }>(
|
|
1326
1326
|
"GET",
|
|
1327
|
-
`/v1/
|
|
1327
|
+
`/v1/agents/${encodeURIComponent(this.agentId)}/stats`,
|
|
1328
1328
|
);
|
|
1329
1329
|
return {
|
|
1330
1330
|
total_memories: response.data?.total_memories ?? 0,
|
|
@@ -4508,7 +4508,7 @@ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
|
|
|
4508
4508
|
});
|
|
4509
4509
|
|
|
4510
4510
|
api.logger.info?.(
|
|
4511
|
-
`memory-memoryrelay: plugin v0.15.
|
|
4511
|
+
`memory-memoryrelay: plugin v0.15.5 loaded (${Object.values(TOOL_GROUPS).flat().length} tools, autoRecall: ${cfg?.autoRecall}, autoCapture: ${autoCaptureConfig.enabled ? autoCaptureConfig.tier : 'off'}, debug: ${debugEnabled})`,
|
|
4512
4512
|
);
|
|
4513
4513
|
|
|
4514
4514
|
// ========================================================================
|
|
@@ -5604,7 +5604,7 @@ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
|
|
|
5604
5604
|
description: "Show how to update the MemoryRelay plugin to the latest version",
|
|
5605
5605
|
requireAuth: true,
|
|
5606
5606
|
handler: async (_ctx) => {
|
|
5607
|
-
const currentVersion = "0.15.
|
|
5607
|
+
const currentVersion = "0.15.5";
|
|
5608
5608
|
const lines: string[] = [
|
|
5609
5609
|
"MemoryRelay Plugin Update",
|
|
5610
5610
|
"━".repeat(50),
|
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.5 - Long-term memory with 42 tools, 17 commands, V2 async, sessions, decisions, patterns & projects (api.memoryrelay.net)",
|
|
6
|
+
"version": "0.15.5",
|
|
7
7
|
"uiHints": {
|
|
8
8
|
"apiKey": {
|
|
9
9
|
"label": "MemoryRelay API Key",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memoryrelay/plugin-memoryrelay-ai",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.5",
|
|
4
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",
|