@remnic/plugin-openclaw 9.6.1 → 9.6.3
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/dist/index.js +7 -5
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1685,7 +1685,7 @@ NOTE: You did not provide sessionKey; under concurrency this may not match your
|
|
|
1685
1685
|
}),
|
|
1686
1686
|
async execute(_toolCallId, params) {
|
|
1687
1687
|
const { dryRun, eventLimit } = params;
|
|
1688
|
-
const result = await orchestrator.optimizeCompressionGuidelines({
|
|
1688
|
+
const result = await orchestrator.compressionGuidelineCoordinator.optimizeCompressionGuidelines({
|
|
1689
1689
|
dryRun: dryRun === true,
|
|
1690
1690
|
eventLimit
|
|
1691
1691
|
});
|
|
@@ -1722,7 +1722,7 @@ NOTE: You did not provide sessionKey; under concurrency this may not match your
|
|
|
1722
1722
|
async execute(_toolCallId, params) {
|
|
1723
1723
|
const expectedContentHash = typeof params.expectedContentHash === "string" ? params.expectedContentHash.trim() : "";
|
|
1724
1724
|
const expectedGuidelineVersion = typeof params.expectedGuidelineVersion === "number" && Number.isFinite(params.expectedGuidelineVersion) ? Math.floor(params.expectedGuidelineVersion) : void 0;
|
|
1725
|
-
const result = await orchestrator.activateCompressionGuidelineDraft({
|
|
1725
|
+
const result = await orchestrator.compressionGuidelineCoordinator.activateCompressionGuidelineDraft({
|
|
1726
1726
|
...expectedContentHash ? { expectedContentHash } : {},
|
|
1727
1727
|
...typeof expectedGuidelineVersion === "number" ? { expectedGuidelineVersion } : {}
|
|
1728
1728
|
});
|
|
@@ -4527,6 +4527,7 @@ function buildFlushPlanImportTurn(params) {
|
|
|
4527
4527
|
participantName: "OpenClaw memory flush planner",
|
|
4528
4528
|
content: `${prefix}${params.content.trim()}`,
|
|
4529
4529
|
sourceFormat: "openclaw",
|
|
4530
|
+
sourceConnector: "openclaw",
|
|
4530
4531
|
rawContent: params.content,
|
|
4531
4532
|
importProvenance: {
|
|
4532
4533
|
sourceLabel: "OpenClaw flush plan",
|
|
@@ -6948,7 +6949,7 @@ Keep the reflection grounded in the evidence below.
|
|
|
6948
6949
|
try {
|
|
6949
6950
|
await persistExplicitCapture(
|
|
6950
6951
|
orchestrator,
|
|
6951
|
-
validateExplicitCaptureInput(note),
|
|
6952
|
+
{ ...validateExplicitCaptureInput(note), sourceConnector: "openclaw" },
|
|
6952
6953
|
"inline"
|
|
6953
6954
|
);
|
|
6954
6955
|
orchestrator.requestQmdMaintenanceForTool("inline.memory_note");
|
|
@@ -6960,7 +6961,7 @@ Keep the reflection grounded in the evidence below.
|
|
|
6960
6961
|
try {
|
|
6961
6962
|
const queued = await queueExplicitCaptureForReview(
|
|
6962
6963
|
orchestrator,
|
|
6963
|
-
note,
|
|
6964
|
+
{ ...note, sourceConnector: "openclaw" },
|
|
6964
6965
|
"inline",
|
|
6965
6966
|
error
|
|
6966
6967
|
);
|
|
@@ -8041,7 +8042,8 @@ Keep the reflection grounded in the evidence below.
|
|
|
8041
8042
|
maxContentChars: cfg.extractionMaxTurnChars,
|
|
8042
8043
|
turnIndex: persistedTurnIndex
|
|
8043
8044
|
}),
|
|
8044
|
-
persistProcessedFingerprint: sessionIdentity.codexThreadBound && cfg.codexCompat.enabled !== false && cfg.codexCompat.fingerprintDedup === true && cfg.codexCompat.threadIdBufferKeying !== false && !!sessionIdentity.providerThreadId
|
|
8045
|
+
persistProcessedFingerprint: sessionIdentity.codexThreadBound && cfg.codexCompat.enabled !== false && cfg.codexCompat.fingerprintDedup === true && cfg.codexCompat.threadIdBufferKeying !== false && !!sessionIdentity.providerThreadId,
|
|
8046
|
+
sourceConnector: "openclaw"
|
|
8045
8047
|
});
|
|
8046
8048
|
persistedTurnIndex += 1;
|
|
8047
8049
|
}
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-remnic",
|
|
3
3
|
"name": "Remnic OpenClaw Plugin",
|
|
4
|
-
"version": "9.6.
|
|
4
|
+
"version": "9.6.3",
|
|
5
5
|
"kind": "memory",
|
|
6
6
|
"description": "Local semantic memory for OpenClaw with bundled Remnic core runtime. Requires plugins.slots.memory set to this plugin id for hooks to fire.",
|
|
7
7
|
"setup": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remnic/plugin-openclaw",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.3",
|
|
4
4
|
"description": "OpenClaw adapter for Remnic memory with bundled @remnic/core runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@sinclair/typebox": "^0.34.0",
|
|
74
74
|
"openai": "^6.0.0",
|
|
75
|
-
"@remnic/core": "^9.6.
|
|
75
|
+
"@remnic/core": "^9.6.3"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
78
|
"openclaw": ">=2026.4.1 || 2026.4.7-1 || 2026.4.9-beta.1 || 2026.4.11-beta.1 || 2026.4.12-beta.1 || 2026.4.14-beta.1 || 2026.4.15-beta.1 || 2026.4.15-beta.2 || 2026.4.19-beta.1 || 2026.4.19-beta.2 || 2026.4.20-beta.1 || 2026.4.20-beta.2 || 2026.4.22-beta.1 || 2026.4.23-beta.1 || 2026.4.23-beta.2 || 2026.4.23-beta.3 || 2026.4.23-beta.4 || 2026.4.23-beta.5 || 2026.4.23-beta.6 || 2026.4.24-beta.1 || 2026.4.24-beta.2 || 2026.4.24-beta.3 || 2026.4.24-beta.4 || 2026.4.24-beta.5 || 2026.4.24-beta.6 || 2026.4.25-beta.1 || 2026.4.25-beta.2 || 2026.4.25-beta.3 || 2026.4.25-beta.4 || 2026.4.25-beta.5 || 2026.4.25-beta.6 || 2026.4.25-beta.7 || 2026.4.25-beta.8 || 2026.4.25-beta.9 || 2026.4.25-beta.10 || 2026.4.25-beta.11 || 2026.4.26-beta.1 || 2026.4.27-beta.1 || 2026.4.29-beta.1 || 2026.4.29-beta.2 || 2026.4.29-beta.3 || 2026.4.29-beta.4 || 2026.4.30-beta.1 || 2026.5.2-beta.1 || 2026.5.2-beta.2 || 2026.5.2-beta.3 || 2026.5.3-beta.1 || 2026.5.3-beta.2 || 2026.5.3-beta.3 || 2026.5.3-beta.4 || 2026.5.3-1 || 2026.5.4-beta.1 || 2026.5.4-beta.2 || 2026.5.4-beta.3 || 2026.5.5-beta.1 || 2026.5.5-beta.2 || 2026.5.6-beta.1 || 2026.5.7-beta.1 || 2026.5.9-beta.1 || 2026.5.10-beta.1 || 2026.5.10-beta.2 || 2026.5.10-beta.3 || 2026.5.10-beta.4 || 2026.5.10-beta.5 || 2026.5.10-beta.6 || 2026.5.12-beta.1 || 2026.5.12-beta.2 || 2026.5.12-beta.3 || 2026.5.12-beta.4 || 2026.5.12-beta.5 || 2026.5.12-beta.6 || 2026.5.12-beta.7 || 2026.5.12-beta.8 || 2026.5.14-beta.1 || 2026.5.14-beta.2 || 2026.5.16-beta.1 || 2026.5.16-beta.2 || 2026.5.16-beta.3 || 2026.5.16-beta.4 || 2026.5.16-beta.5 || 2026.5.16-beta.6 || 2026.5.16-beta.7 || 2026.5.18-beta.1 || 2026.5.19-alpha.1 || 2026.5.19-beta.1 || 2026.5.19-beta.2 || 2026.5.20-beta.1 || 2026.5.20-beta.2 || 2026.5.21-alpha.1 || 2026.5.21-beta.1 || 2026.5.22-beta.1 || 2026.5.23-alpha.1 || 2026.5.24-alpha.1 || 2026.5.24-beta.1 || 2026.5.24-beta.2 || 2026.5.25-alpha.1 || 2026.5.25-alpha.2 || 2026.5.25-beta.1 || 2026.5.26-beta.1 || 2026.5.26-beta.2 || 2026.5.27-alpha.1 || 2026.5.27-beta.1 || 2026.5.28-alpha.1 || 2026.5.28-beta.1 || 2026.5.28-beta.2 || 2026.5.28-beta.3 || 2026.5.28-beta.4 || 2026.5.29-alpha.1 || 2026.5.30-beta.1 || 2026.5.30-beta.2 || 2026.5.31-alpha.1 || 2026.5.31-beta.1 || 2026.5.31-beta.2 || 2026.5.31-beta.3 || 2026.5.31-beta.4 || 2026.6.1-alpha.1 || 2026.6.1-alpha.2 || 2026.6.1-alpha.3 || 2026.6.1-beta.1 || 2026.6.1-beta.2 || 2026.6.1-beta.3 || 2026.6.2-alpha.1 || 2026.6.2-alpha.2 || 2026.6.2-beta.1 || 2026.6.3-alpha.1 || 2026.6.4-alpha.1 || 2026.6.5-alpha.1 || 2026.6.5-alpha.2 || 2026.6.5-beta.1 || 2026.6.5-beta.2 || 2026.6.5-beta.3 || 2026.6.5-beta.5 || 2026.6.5-beta.6 || 2026.6.6-alpha.1 || 2026.6.6-beta.2 || 2026.6.6 || 2026.6.7-beta.1 || 2026.6.8-beta.1 || 2026.6.8-beta.2 || 2026.6.9-beta.1 || 2026.6.10-beta.1 || 2026.6.10-beta.2 || 2026.6.11-beta.1"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"acorn": "^8.16.0",
|
|
83
83
|
"tsup": "^8.5.1",
|
|
84
84
|
"typescript": "^5.9.3",
|
|
85
|
-
"@remnic/core": "^9.6.
|
|
85
|
+
"@remnic/core": "^9.6.3"
|
|
86
86
|
},
|
|
87
87
|
"license": "MIT",
|
|
88
88
|
"repository": {
|