@cernion/openclaw-energy-tools-sidecar 0.1.0 → 0.1.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/CHANGELOG.md +7 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +11 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the Cernion Energy Tools Sidecar for OpenClaw are documented here.
|
|
4
4
|
|
|
5
|
-
## 0.1.
|
|
5
|
+
## 0.1.1 - 2026-06-25
|
|
6
|
+
|
|
7
|
+
- Adds required ClawHub code-plugin metadata:
|
|
8
|
+
`openclaw.compat.pluginApi` and `openclaw.build.openclawVersion`.
|
|
9
|
+
- Adds `openclaw.runtimeExtensions` pointing at the built runtime entry.
|
|
10
|
+
|
|
11
|
+
## 0.1.0 - 2026-06-25
|
|
6
12
|
|
|
7
13
|
- Initial dedicated Cernion Energy Tools Sidecar package for OpenClaw.
|
|
8
14
|
- Exposes Cernion descriptor, tool-list, provider tool calls, Knowledge RAG, OSM grid context, Evidence Router, process-intake, capability/operation resolution, read-only REST plan execution, and direct read-only Cernion API requests.
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "cernion-energy-tools-sidecar",
|
|
3
3
|
"name": "Cernion Energy Tools Sidecar",
|
|
4
4
|
"description": "Expose Cernion Energy Tools to OpenClaw through separated evidence, knowledge, process-intake, and read-only REST boundaries.",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.1",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cernion/openclaw-energy-tools-sidecar",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Dedicated OpenClaw sidecar for Cernion Energy Tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -44,7 +44,16 @@
|
|
|
44
44
|
"openclaw": {
|
|
45
45
|
"extensions": [
|
|
46
46
|
"./dist/index.js"
|
|
47
|
-
]
|
|
47
|
+
],
|
|
48
|
+
"runtimeExtensions": [
|
|
49
|
+
"./dist/index.js"
|
|
50
|
+
],
|
|
51
|
+
"compat": {
|
|
52
|
+
"pluginApi": ">=2026.6.11-beta.1"
|
|
53
|
+
},
|
|
54
|
+
"build": {
|
|
55
|
+
"openclawVersion": "2026.6.11-beta.1"
|
|
56
|
+
}
|
|
48
57
|
},
|
|
49
58
|
"publishConfig": {
|
|
50
59
|
"access": "public"
|