@efengx/openclaw-channel-dragon 0.5.14 → 0.5.15
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/dist/index.js +6 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -49,7 +49,12 @@ async function getOrCreateContainer(account, ctx) {
|
|
|
49
49
|
}
|
|
50
50
|
const base = createChannelPluginBase({
|
|
51
51
|
id: channelId,
|
|
52
|
-
meta: {
|
|
52
|
+
meta: {
|
|
53
|
+
label: "Dragon Workbench",
|
|
54
|
+
selectionLabel: "Dragon Workbench",
|
|
55
|
+
docsPath: "/channels/dragon",
|
|
56
|
+
blurb: "Connect OpenClaw to the Dragon workbench and orchestrator.",
|
|
57
|
+
},
|
|
53
58
|
capabilities: { chatTypes: ["direct", "group"] },
|
|
54
59
|
setup: {
|
|
55
60
|
validate: async () => ({ ok: true }),
|
package/openclaw.plugin.json
CHANGED