@pentatonic-ai/openclaw-memory-plugin 0.5.1 → 0.5.2
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.js +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* compact — decay cycle on context overflow
|
|
10
10
|
* afterTurn — consolidation check
|
|
11
11
|
*
|
|
12
|
-
* Plus agent-callable tools:
|
|
12
|
+
* Plus agent-callable tools: pentatonic_memory_search, pentatonic_memory_store, pentatonic_memory_status, pentatonic_memory_setup
|
|
13
13
|
*
|
|
14
14
|
* Two modes:
|
|
15
15
|
* - Local: HTTP calls to the memory server (localhost:3333)
|
|
@@ -366,7 +366,7 @@ export default {
|
|
|
366
366
|
// --- Tools ---
|
|
367
367
|
|
|
368
368
|
api.registerTool({
|
|
369
|
-
name: "
|
|
369
|
+
name: "pentatonic_memory_search",
|
|
370
370
|
description: "Search memories for relevant context. Use when you need to recall past conversations, decisions, or knowledge.",
|
|
371
371
|
parameters: {
|
|
372
372
|
type: "object",
|
|
@@ -383,7 +383,7 @@ export default {
|
|
|
383
383
|
});
|
|
384
384
|
|
|
385
385
|
api.registerTool({
|
|
386
|
-
name: "
|
|
386
|
+
name: "pentatonic_memory_store",
|
|
387
387
|
description: "Explicitly store something important. Use for decisions, solutions, or facts worth remembering.",
|
|
388
388
|
parameters: {
|
|
389
389
|
type: "object",
|
|
@@ -401,7 +401,7 @@ export default {
|
|
|
401
401
|
});
|
|
402
402
|
|
|
403
403
|
api.registerTool({
|
|
404
|
-
name: "
|
|
404
|
+
name: "pentatonic_memory_status",
|
|
405
405
|
description: "Check the status of the Pentatonic Memory system. Shows mode, backend health, and session stats.",
|
|
406
406
|
parameters: { type: "object", properties: {} },
|
|
407
407
|
async execute() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pentatonic-ai/openclaw-memory-plugin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Pentatonic Memory plugin for OpenClaw — persistent, searchable memory with multi-signal retrieval and HyDE query expansion",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|