@joshuaswarren/openclaw-engram 9.3.655 → 9.3.657

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-engram",
3
3
  "name": "Remnic OpenClaw Plugin",
4
- "version": "9.3.655",
4
+ "version": "9.3.657",
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": {
@@ -23,14 +23,14 @@
23
23
  "provider": "openai",
24
24
  "method": "api-key",
25
25
  "choiceId": "remnic-openai-api-key",
26
- "choiceLabel": "OpenAI API key for Remnic memory extraction",
27
- "choiceHint": "Remnic sends memory extraction, consolidation, and embedding requests to OpenAI or the configured OpenAI-compatible endpoint unless you route those tasks through OpenClaw gateway/local LLM settings.",
26
+ "choiceLabel": "Optional OpenAI API key for Remnic plugin-mode extraction",
27
+ "choiceHint": "Not needed when Remnic uses the OpenClaw gateway model source. Set only if you intentionally use plugin mode with OpenAI or an OpenAI-compatible endpoint.",
28
28
  "groupId": "remnic-memory",
29
29
  "groupLabel": "Remnic memory",
30
30
  "optionKey": "openaiApiKey",
31
31
  "cliFlag": "--openai-api-key",
32
32
  "cliOption": "--openai-api-key <key>",
33
- "cliDescription": "OpenAI API key used by Remnic memory extraction, consolidation, and embedding flows.",
33
+ "cliDescription": "Optional OpenAI API key used by Remnic plugin-mode extraction, consolidation, and embedding flows.",
34
34
  "onboardingScopes": [
35
35
  "text-inference"
36
36
  ]
@@ -3391,8 +3391,8 @@
3391
3391
  "plugin",
3392
3392
  "gateway"
3393
3393
  ],
3394
- "default": "plugin",
3395
- "description": "LLM source: 'plugin' uses Engram's own openai/localLlm config; 'gateway' delegates to a gateway agent's model chain (agents.list[])."
3394
+ "default": "gateway",
3395
+ "description": "LLM source: 'gateway' delegates to a gateway agent's model chain (agents.list[]); 'plugin' uses Engram's own openai/localLlm config."
3396
3396
  },
3397
3397
  "gatewayAgentId": {
3398
3398
  "type": "string",
@@ -4276,6 +4276,136 @@
4276
4276
  "shared"
4277
4277
  ]
4278
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
+ },
4279
4409
  "cronRecallMode": {
4280
4410
  "type": "string",
4281
4411
  "enum": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joshuaswarren/openclaw-engram",
3
- "version": "9.3.655",
3
+ "version": "9.3.657",
4
4
  "description": "Deprecated compatibility shim for Engram installs. Re-exports @remnic/plugin-openclaw and forwards engram-access to @remnic/core.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -51,8 +51,8 @@
51
51
  }
52
52
  },
53
53
  "dependencies": {
54
- "@remnic/plugin-openclaw": "^9.3.655",
55
- "@remnic/core": "^9.3.655"
54
+ "@remnic/plugin-openclaw": "^9.3.657",
55
+ "@remnic/core": "^9.3.657"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "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"