openclaw-glance-plugin 0.1.4 → 0.1.6
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
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-glance-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "OpenClaw plugin client for ticker-monitor openclaw-bridge",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
|
+
"openclaw.extensions": ["./index.js"],
|
|
7
8
|
"exports": {
|
|
8
9
|
".": "./index.js",
|
|
9
10
|
"./sdk": "./src/index.js"
|
package/src/plugin/index.js
CHANGED
|
@@ -189,13 +189,14 @@ function registerControlTools(api, controlApi) {
|
|
|
189
189
|
|
|
190
190
|
const plugin = {
|
|
191
191
|
id: 'glance-bridge',
|
|
192
|
-
name: 'Glance Bridge
|
|
193
|
-
description: 'OpenClaw bridge long connection
|
|
192
|
+
name: 'Glance Bridge Tools',
|
|
193
|
+
description: 'OpenClaw tool plugin with bridge long connection runtime',
|
|
194
194
|
register(api) {
|
|
195
195
|
const pluginConfig =
|
|
196
|
-
api?.config?.
|
|
197
|
-
api?.config?.
|
|
198
|
-
api?.config?.
|
|
196
|
+
api?.config?.plugins?.entries?.['glance-bridge']?.config ||
|
|
197
|
+
api?.config?.plugins?.entries?.glanceBridge?.config ||
|
|
198
|
+
api?.config?.plugins?.['glance-bridge']?.config ||
|
|
199
|
+
api?.config?.plugins?.glanceBridge?.config ||
|
|
199
200
|
{};
|
|
200
201
|
|
|
201
202
|
const startupPromise = startPluginRuntime({
|