@remnic/plugin-openclaw 1.0.29 → 1.0.30
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/README.md +14 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +29 -1
package/README.md
CHANGED
|
@@ -99,6 +99,11 @@ Credential and model-provider behavior is explicit:
|
|
|
99
99
|
- Plugin/provider modes may read configured model credentials from the OpenClaw auth resolver, OpenClaw's materialized provider config at `~/.openclaw/agents/main/agent/models.json`, or provider-specific environment variables such as `<PROVIDER>_API_KEY` and `<PROVIDER>_TOKEN`.
|
|
100
100
|
- Do not set `openaiApiKey` or provider environment variables for Remnic if you want all LLM-backed memory work routed through the gateway.
|
|
101
101
|
|
|
102
|
+
The npm package also declares this surface in `package.json` under
|
|
103
|
+
`openclaw.environment` so ClawHub and other registries can show the optional
|
|
104
|
+
provider env vars, config path, and external-model routing behavior before
|
|
105
|
+
installation.
|
|
106
|
+
|
|
102
107
|
## Plugin Inspection
|
|
103
108
|
|
|
104
109
|
Run the OpenClaw plugin inspector with:
|
|
@@ -114,6 +119,15 @@ guarded in the adapter, including `registerMemoryCapability`, `registerCli`,
|
|
|
114
119
|
and `registerCommand`; keep runtime capture coverage for those surfaces in a
|
|
115
120
|
separate adapter test slice.
|
|
116
121
|
|
|
122
|
+
Run the deterministic OpenClaw adapter scenario suite with:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
npm run test:openclaw-scenarios
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
The suite covers the registered memory tools and lifecycle hooks without live
|
|
129
|
+
OpenClaw, LLM credentials, or network calls.
|
|
130
|
+
|
|
117
131
|
## SDK Surface Drift Check
|
|
118
132
|
|
|
119
133
|
The adapter keeps a conservative OpenClaw SDK surface snapshot at
|
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.30",
|
|
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.30",
|
|
4
4
|
"description": "OpenClaw adapter for Remnic memory with bundled @remnic/core runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,6 +31,34 @@
|
|
|
31
31
|
},
|
|
32
32
|
"install": {
|
|
33
33
|
"minHostVersion": ">=2026.4.8"
|
|
34
|
+
},
|
|
35
|
+
"environment": {
|
|
36
|
+
"externalServices": [
|
|
37
|
+
"openclaw-gateway-models",
|
|
38
|
+
"configured-llm-providers"
|
|
39
|
+
],
|
|
40
|
+
"optionalEnv": [
|
|
41
|
+
"OPENAI_API_KEY",
|
|
42
|
+
"<PROVIDER>_API_KEY",
|
|
43
|
+
"<PROVIDER>_TOKEN"
|
|
44
|
+
],
|
|
45
|
+
"configPaths": [
|
|
46
|
+
"~/.openclaw/agents/main/agent/models.json"
|
|
47
|
+
],
|
|
48
|
+
"credentialSources": [
|
|
49
|
+
"OpenClaw runtime auth resolver",
|
|
50
|
+
"OpenClaw materialized provider model config",
|
|
51
|
+
"provider-specific environment variables"
|
|
52
|
+
],
|
|
53
|
+
"dataSentToProviders": [
|
|
54
|
+
"conversation excerpts",
|
|
55
|
+
"memory excerpts",
|
|
56
|
+
"summaries",
|
|
57
|
+
"embedding inputs",
|
|
58
|
+
"active-recall query inputs",
|
|
59
|
+
"benchmark and evaluation inputs"
|
|
60
|
+
],
|
|
61
|
+
"recommendedMode": "modelSource=gateway"
|
|
34
62
|
}
|
|
35
63
|
},
|
|
36
64
|
"dependencies": {
|