@remnic/plugin-openclaw 9.3.654 → 9.3.656

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-remnic",
3
3
  "name": "Remnic OpenClaw Plugin",
4
- "version": "9.3.654",
4
+ "version": "9.3.656",
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": {
@@ -3670,6 +3670,38 @@
3670
3670
  "default": 900000,
3671
3671
  "description": "Minimum interval between QMD update executions (ms). Useful because current QMD update runs globally across collections."
3672
3672
  },
3673
+ "maintenanceNamespaceFanoutEnabled": {
3674
+ "type": "boolean",
3675
+ "default": true,
3676
+ "description": "When namespaces are enabled, let background maintenance enumerate live catalog namespaces in addition to configured default/shared/policy namespaces."
3677
+ },
3678
+ "maintenanceMaxNamespacesPerCycle": {
3679
+ "type": "number",
3680
+ "default": 20,
3681
+ "minimum": 1,
3682
+ "description": "Maximum namespaces a single maintenance job cycle may process. Default and shared namespaces keep priority inside this budget."
3683
+ },
3684
+ "maintenanceIncludeProjectNamespaces": {
3685
+ "type": "boolean",
3686
+ "default": true,
3687
+ "description": "Include dynamic project namespaces from the namespace catalog in background maintenance fanout."
3688
+ },
3689
+ "maintenanceIncludeBranchNamespaces": {
3690
+ "type": "boolean",
3691
+ "default": false,
3692
+ "description": "Include dynamic branch namespaces from the namespace catalog in background maintenance fanout. Defaults off to avoid high-cardinality branch churn."
3693
+ },
3694
+ "maintenanceIncludeTeamProjectNamespaces": {
3695
+ "type": "boolean",
3696
+ "default": true,
3697
+ "description": "Include dynamic team-project namespaces from the namespace catalog in background maintenance fanout."
3698
+ },
3699
+ "maintenanceNamespaceLockStaleMs": {
3700
+ "type": "number",
3701
+ "default": 600000,
3702
+ "minimum": 1,
3703
+ "description": "Stale threshold for per-job/per-namespace maintenance locks under state/maintenance-locks/."
3704
+ },
3673
3705
  "localLlmRetry5xxCount": {
3674
3706
  "type": "number",
3675
3707
  "default": 1,
@@ -4244,6 +4276,136 @@
4244
4276
  "shared"
4245
4277
  ]
4246
4278
  },
4279
+ "scopeProfiles": {
4280
+ "type": "object",
4281
+ "default": {},
4282
+ "description": "Optional hosted-team memory scope profiles. Profiles define ordered read layers, the default write layer, and authorized promotion target aliases without changing behavior when absent.",
4283
+ "additionalProperties": {
4284
+ "type": "object",
4285
+ "properties": {
4286
+ "readOrder": {
4287
+ "type": "array",
4288
+ "items": {
4289
+ "type": "string",
4290
+ "enum": [
4291
+ "userProject",
4292
+ "teamProject",
4293
+ "userGlobal",
4294
+ "serverShared"
4295
+ ]
4296
+ }
4297
+ },
4298
+ "writeDefault": {
4299
+ "type": "string",
4300
+ "enum": [
4301
+ "userProject",
4302
+ "teamProject",
4303
+ "userGlobal",
4304
+ "serverShared"
4305
+ ]
4306
+ },
4307
+ "promotionTargets": {
4308
+ "type": "array",
4309
+ "items": {
4310
+ "type": "string",
4311
+ "enum": [
4312
+ "userProject",
4313
+ "teamProject",
4314
+ "userGlobal",
4315
+ "serverShared"
4316
+ ]
4317
+ }
4318
+ },
4319
+ "teamProject": {
4320
+ "type": "object",
4321
+ "properties": {
4322
+ "namespaceTemplate": {
4323
+ "type": "string"
4324
+ },
4325
+ "teamId": {
4326
+ "type": "string"
4327
+ }
4328
+ }
4329
+ },
4330
+ "autoPromote": {
4331
+ "type": "object",
4332
+ "properties": {
4333
+ "enabled": {
4334
+ "type": "boolean"
4335
+ },
4336
+ "targets": {
4337
+ "type": "array",
4338
+ "items": {
4339
+ "type": "string",
4340
+ "enum": [
4341
+ "teamProject",
4342
+ "serverShared",
4343
+ "userGlobal",
4344
+ "userProject"
4345
+ ]
4346
+ }
4347
+ },
4348
+ "categories": {
4349
+ "type": "array",
4350
+ "items": {
4351
+ "type": "string"
4352
+ }
4353
+ },
4354
+ "minConfidenceTier": {
4355
+ "type": "string",
4356
+ "enum": [
4357
+ "explicit",
4358
+ "implied",
4359
+ "inferred",
4360
+ "speculative"
4361
+ ]
4362
+ }
4363
+ }
4364
+ }
4365
+ }
4366
+ }
4367
+ },
4368
+ "defaultScopeProfile": {
4369
+ "type": "string",
4370
+ "description": "Optional key in scopeProfiles to use as the default hosted memory scope profile."
4371
+ },
4372
+ "teams": {
4373
+ "type": "object",
4374
+ "default": {},
4375
+ "description": "Trusted team membership and team-project namespace templates used by scopeProfiles.",
4376
+ "additionalProperties": {
4377
+ "type": "object",
4378
+ "properties": {
4379
+ "principals": {
4380
+ "type": "array",
4381
+ "items": {
4382
+ "type": "string"
4383
+ }
4384
+ },
4385
+ "projectNamespaceTemplate": {
4386
+ "type": "string"
4387
+ },
4388
+ "read": {
4389
+ "type": "array",
4390
+ "items": {
4391
+ "type": "string"
4392
+ }
4393
+ },
4394
+ "write": {
4395
+ "type": "array",
4396
+ "items": {
4397
+ "type": "string"
4398
+ }
4399
+ },
4400
+ "promote": {
4401
+ "type": "array",
4402
+ "items": {
4403
+ "type": "string"
4404
+ }
4405
+ }
4406
+ }
4407
+ }
4408
+ },
4247
4409
  "cronRecallMode": {
4248
4410
  "type": "string",
4249
4411
  "enum": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/plugin-openclaw",
3
- "version": "9.3.654",
3
+ "version": "9.3.656",
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.3.654"
75
+ "@remnic/core": "^9.3.656"
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.3.654"
85
+ "@remnic/core": "^9.3.656"
86
86
  },
87
87
  "license": "MIT",
88
88
  "repository": {