@remnic/plugin-openclaw 9.6.39 → 9.7.1
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/openclaw.plugin.json +49 -1
- package/package.json +3 -3
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.
|
|
4
|
+
"version": "9.7.1",
|
|
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": {
|
|
@@ -5706,6 +5706,54 @@
|
|
|
5706
5706
|
"workspaceDir": {
|
|
5707
5707
|
"type": "string",
|
|
5708
5708
|
"description": "Override workspace directory path"
|
|
5709
|
+
},
|
|
5710
|
+
"extractionBreakerAuthCooldownMs": {
|
|
5711
|
+
"type": "number",
|
|
5712
|
+
"default": 1800000,
|
|
5713
|
+
"description": "Extraction circuit-breaker open cooldown (ms) for auth/config failures (401/403 or no models configured)."
|
|
5714
|
+
},
|
|
5715
|
+
"extractionBreakerCooldownMs": {
|
|
5716
|
+
"type": "number",
|
|
5717
|
+
"default": 300000,
|
|
5718
|
+
"description": "Extraction circuit-breaker open cooldown (ms) for transient provider failures (429/5xx/network)."
|
|
5719
|
+
},
|
|
5720
|
+
"extractionBreakerFailureThreshold": {
|
|
5721
|
+
"type": "number",
|
|
5722
|
+
"default": 5,
|
|
5723
|
+
"description": "Consecutive provider failures before the extraction circuit breaker opens and short-circuits extraction."
|
|
5724
|
+
},
|
|
5725
|
+
"extractionParseEmptyMaxAttempts": {
|
|
5726
|
+
"type": "number",
|
|
5727
|
+
"default": 3,
|
|
5728
|
+
"description": "Attempts for a parse_empty extraction fingerprint before it is long-parked (still never marked processed)."
|
|
5729
|
+
},
|
|
5730
|
+
"extractionRetryEnabled": {
|
|
5731
|
+
"type": "boolean",
|
|
5732
|
+
"default": true,
|
|
5733
|
+
"description": "Master gate for extraction retry backoff + circuit breaker. When false, restores pre-change behavior (extractor called on every triggered observe, no gate)."
|
|
5734
|
+
},
|
|
5735
|
+
"extractionRetryJitterRatio": {
|
|
5736
|
+
"type": "number",
|
|
5737
|
+
"default": 0.2,
|
|
5738
|
+
"description": "Multiplicative jitter ratio (+/-) applied to each extraction backoff interval."
|
|
5739
|
+
},
|
|
5740
|
+
"extractionRetryMaxBackoffMs": {
|
|
5741
|
+
"type": "number",
|
|
5742
|
+
"default": 21600000,
|
|
5743
|
+
"description": "Upper bound (ms) on any single extraction backoff interval and the long-park interval for exhausted parse_empty fingerprints."
|
|
5744
|
+
},
|
|
5745
|
+
"extractionRetryScheduleMs": {
|
|
5746
|
+
"type": "array",
|
|
5747
|
+
"items": {
|
|
5748
|
+
"type": "number"
|
|
5749
|
+
},
|
|
5750
|
+
"default": [
|
|
5751
|
+
60000,
|
|
5752
|
+
300000,
|
|
5753
|
+
1800000,
|
|
5754
|
+
7200000
|
|
5755
|
+
],
|
|
5756
|
+
"description": "Per-fingerprint exponential extraction backoff schedule (ms), indexed by attempt."
|
|
5709
5757
|
}
|
|
5710
5758
|
}
|
|
5711
5759
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remnic/plugin-openclaw",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.7.1",
|
|
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.
|
|
75
|
+
"@remnic/core": "^9.7.1"
|
|
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.
|
|
85
|
+
"@remnic/core": "^9.7.1"
|
|
86
86
|
},
|
|
87
87
|
"license": "MIT",
|
|
88
88
|
"repository": {
|