@remnic/plugin-openclaw 1.0.40 → 1.0.42
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 +9 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -6644,6 +6644,7 @@ import { createHash as createHash13, randomUUID as randomUUID5 } from "crypto";
|
|
|
6644
6644
|
import * as fsReadModule27 from "fs/promises";
|
|
6645
6645
|
const lstat6 = fsReadModule27.lstat;
|
|
6646
6646
|
const mkdir33 = fsReadModule27.mkdir;
|
|
6647
|
+
const open5 = fsReadModule27.open;
|
|
6647
6648
|
const readdir19 = fsReadModule27.readdir;
|
|
6648
6649
|
const fileReader29 = fsReadModule27["re"+"ad"+"Fi"+"le"];
|
|
6649
6650
|
const rename5 = fsReadModule27.rename;
|
|
@@ -6651,6 +6652,7 @@ const stat14 = fsReadModule27.stat;
|
|
|
6651
6652
|
const unlink9 = fsReadModule27.unlink;
|
|
6652
6653
|
const writeFile31 = fsReadModule27.writeFile;
|
|
6653
6654
|
import path48 from "path";
|
|
6655
|
+
var OFFLINE_SYNC_FILE_CONTENT_MAX_CHUNK_BYTES = 64 * 1024 * 1024;
|
|
6654
6656
|
|
|
6655
6657
|
// ../remnic-core/src/action-confidence.ts
|
|
6656
6658
|
var ACTION_CONFIDENCE_RISK_CATEGORIES = [
|
|
@@ -6923,6 +6925,13 @@ var offlineSyncFilesRequestSchema = external_exports.object({
|
|
|
6923
6925
|
includeTranscripts: external_exports.boolean().optional(),
|
|
6924
6926
|
paths: external_exports.array(external_exports.string().trim().min(1, "path must be non-empty").max(4096)).max(5e3, "paths must contain 5000 or fewer entries")
|
|
6925
6927
|
});
|
|
6928
|
+
var offlineSyncFileContentRequestSchema = external_exports.object({
|
|
6929
|
+
namespace: namespaceSchema,
|
|
6930
|
+
includeTranscripts: external_exports.boolean().optional(),
|
|
6931
|
+
path: external_exports.string().trim().min(1, "path must be non-empty").max(4096),
|
|
6932
|
+
offset: external_exports.number().int().min(0).optional(),
|
|
6933
|
+
length: external_exports.number().int().min(1).max(OFFLINE_SYNC_FILE_CONTENT_MAX_CHUNK_BYTES).optional()
|
|
6934
|
+
});
|
|
6926
6935
|
var nullableOptional = (schema) => schema.optional().nullable().transform((value) => value ?? void 0);
|
|
6927
6936
|
var actionConfidenceRuleSchema = external_exports.object({
|
|
6928
6937
|
kind: external_exports.enum(ACTION_CONFIDENCE_RULE_KINDS),
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-remnic",
|
|
3
3
|
"name": "Remnic OpenClaw Plugin",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.42",
|
|
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": "1.0.
|
|
3
|
+
"version": "1.0.42",
|
|
4
4
|
"description": "OpenClaw adapter for Remnic memory with bundled @remnic/core runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"openai": "^6.0.0",
|
|
74
|
-
"@remnic/core": "^1.1.
|
|
74
|
+
"@remnic/core": "^1.1.18"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
77
|
"openclaw": ">=2026.5.16-beta.1"
|