@remnic/plugin-openclaw 1.0.11 → 1.0.13
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/capsule-cli-GBM3WPAM.js +33 -0
- package/dist/capsule-export-IXVERCQG.js +17 -0
- package/dist/{capsule-import-CFX7BY5W.js → capsule-import-IA6VIOPQ.js} +3 -3
- package/dist/{capsule-merge-7RVOHJK3.js → capsule-merge-IWOQ34KL.js} +2 -2
- package/dist/{causal-consolidation-JD6KJJH6.js → causal-consolidation-YI53C2AO.js} +3 -3
- package/dist/{chunk-K7EUBNDD.js → chunk-4LYQ4ONL.js} +1 -1
- package/dist/{chunk-N7EOZY6F.js → chunk-6F6EKSVP.js} +54 -1
- package/dist/{chunk-TNH24SF6.js → chunk-7UZNLMW5.js} +301 -125
- package/dist/{chunk-TVKKIS53.js → chunk-CDAZGIGT.js} +1 -1
- package/dist/{chunk-XMSDA5WA.js → chunk-EXDYWXMB.js} +1 -0
- package/dist/{capsule-export-CVA3CKUQ.js → chunk-FGTYFLL5.js} +21 -12
- package/dist/{chunk-ETJZRIAM.js → chunk-L6I4MQKO.js} +1 -1
- package/dist/{capsule-cli-TFKLAG3S.js → chunk-LLUROTZJ.js} +11 -12
- package/dist/{chunk-L4PRBB2A.js → chunk-OAE7AQ6R.js} +63 -91
- package/dist/{chunk-3I7RHWYT.js → chunk-RKR6PTPA.js} +105 -11
- package/dist/{chunk-P3DIW2SD.js → chunk-TILAJIJR.js} +1 -1
- package/dist/{engine-VMTFKFGO.js → engine-BIYI3P4J.js} +6 -4
- package/dist/index.js +1864 -381
- package/dist/{memory-governance-DWGFV4FX.js → memory-governance-SJ5DGRB3.js} +3 -3
- package/dist/{secure-store-FWJ7LBPH.js → secure-store-A4NGCNXV.js} +8 -2
- package/dist/{storage-T2OGFUF4.js → storage-PTQ2H2YJ.js} +2 -2
- package/dist/{types-H5R5D3WF.js → types-R4DO7AKM.js} +2 -2
- package/openclaw.plugin.json +10 -0
- package/package.json +2 -2
- package/dist/chunk-YGXXBRV7.js +0 -10
|
@@ -6,11 +6,11 @@ import {
|
|
|
6
6
|
readMemoryGovernanceRunArtifact,
|
|
7
7
|
restoreMemoryGovernanceRun,
|
|
8
8
|
runMemoryGovernance
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-CDAZGIGT.js";
|
|
10
10
|
import "./chunk-4G2XCSD2.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-7UZNLMW5.js";
|
|
12
12
|
import "./chunk-6OJAU466.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-RKR6PTPA.js";
|
|
14
14
|
import "./chunk-UFU5GGGA.js";
|
|
15
15
|
import "./chunk-YGGGUTG3.js";
|
|
16
16
|
import "./chunk-MLKGABMK.js";
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MIN_PASSPHRASE_LENGTH,
|
|
3
3
|
createPassphraseReader,
|
|
4
|
+
renderDisableReport,
|
|
4
5
|
renderInitReport,
|
|
5
6
|
renderLockReport,
|
|
6
7
|
renderMigrateReport,
|
|
7
8
|
renderStatusReport,
|
|
8
9
|
renderUnlockReport,
|
|
10
|
+
runSecureStoreDisable,
|
|
9
11
|
runSecureStoreInit,
|
|
10
12
|
runSecureStoreLock,
|
|
11
13
|
runSecureStoreMigrate,
|
|
12
14
|
runSecureStoreStatus,
|
|
13
15
|
runSecureStoreUnlock
|
|
14
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-6F6EKSVP.js";
|
|
15
17
|
import {
|
|
16
18
|
HEADER_FILENAME,
|
|
17
19
|
HEADER_FORMAT,
|
|
@@ -57,13 +59,14 @@ import {
|
|
|
57
59
|
SecureStoreDecryptError,
|
|
58
60
|
SecureStoreLockedError,
|
|
59
61
|
decryptFileBody,
|
|
62
|
+
decryptMemoryDirToPlaintext,
|
|
60
63
|
encryptFileBody,
|
|
61
64
|
filePathAad,
|
|
62
65
|
isEncryptedFile,
|
|
63
66
|
migrateMemoryDirToEncrypted,
|
|
64
67
|
readMaybeEncryptedFile,
|
|
65
68
|
writeMaybeEncryptedFile
|
|
66
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-RKR6PTPA.js";
|
|
67
70
|
import {
|
|
68
71
|
AES_KEY_LENGTH,
|
|
69
72
|
AUTH_TAG_LENGTH,
|
|
@@ -110,6 +113,7 @@ export {
|
|
|
110
113
|
createPassphraseReader,
|
|
111
114
|
decodeMetadataSalt,
|
|
112
115
|
decryptFileBody,
|
|
116
|
+
decryptMemoryDirToPlaintext,
|
|
113
117
|
deriveKey,
|
|
114
118
|
deriveKeyFromHeader,
|
|
115
119
|
deriveKeyScrypt,
|
|
@@ -126,11 +130,13 @@ export {
|
|
|
126
130
|
parseMetadata,
|
|
127
131
|
readHeader,
|
|
128
132
|
readMaybeEncryptedFile,
|
|
133
|
+
renderDisableReport,
|
|
129
134
|
renderInitReport,
|
|
130
135
|
renderLockReport,
|
|
131
136
|
renderMigrateReport,
|
|
132
137
|
renderStatusReport,
|
|
133
138
|
renderUnlockReport,
|
|
139
|
+
runSecureStoreDisable,
|
|
134
140
|
runSecureStoreInit,
|
|
135
141
|
runSecureStoreLock,
|
|
136
142
|
runSecureStoreMigrate,
|
|
@@ -8,9 +8,9 @@ import {
|
|
|
8
8
|
normalizeEntityName,
|
|
9
9
|
parseEntityFile,
|
|
10
10
|
serializeEntityFile
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-7UZNLMW5.js";
|
|
12
12
|
import "./chunk-6OJAU466.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-RKR6PTPA.js";
|
|
14
14
|
import "./chunk-UFU5GGGA.js";
|
|
15
15
|
import "./chunk-YGGGUTG3.js";
|
|
16
16
|
import "./chunk-MLKGABMK.js";
|
|
@@ -11,8 +11,8 @@ import {
|
|
|
11
11
|
ExportMemoryRecordV1Schema,
|
|
12
12
|
parseExportBundle,
|
|
13
13
|
parseExportManifest
|
|
14
|
-
} from "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
} from "./chunk-4LYQ4ONL.js";
|
|
15
|
+
import "./chunk-EXDYWXMB.js";
|
|
16
16
|
import "./chunk-MLKGABMK.js";
|
|
17
17
|
export {
|
|
18
18
|
CAPSULE_ID_PATTERN,
|
package/openclaw.plugin.json
CHANGED
|
@@ -4260,6 +4260,16 @@
|
|
|
4260
4260
|
"default": 90,
|
|
4261
4261
|
"description": "Days to retain archived LCM summaries"
|
|
4262
4262
|
},
|
|
4263
|
+
"messagePartsEnabled": {
|
|
4264
|
+
"type": "boolean",
|
|
4265
|
+
"default": false,
|
|
4266
|
+
"description": "Opt in to structured LCM message-part capture for tool calls, file references, patches, and reasoning markers."
|
|
4267
|
+
},
|
|
4268
|
+
"messagePartsRecallMaxResults": {
|
|
4269
|
+
"type": "number",
|
|
4270
|
+
"default": 6,
|
|
4271
|
+
"description": "Maximum structured message-part matches to inject into recall when messagePartsEnabled is true."
|
|
4272
|
+
},
|
|
4263
4273
|
"ircEnabled": {
|
|
4264
4274
|
"type": "boolean",
|
|
4265
4275
|
"default": true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remnic/plugin-openclaw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "OpenClaw adapter for Remnic memory — thin wrapper delegating to @remnic/core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"openai": "^6.0.0",
|
|
28
|
-
"@remnic/core": "^1.1.
|
|
28
|
+
"@remnic/core": "^1.1.5"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"openclaw": ">=2026.4.8"
|
package/dist/chunk-YGXXBRV7.js
DELETED