mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 09:41:37 +00:00
* feat(clickclack): add session discussions * chore: remove release-owned changelog entry * refactor(clickclack): split discussion service workflows * fix(clickclack): satisfy plugin surface gates * fix: narrow routing peer in inbound test and refresh docs map
22 lines
618 B
TypeScript
22 lines
618 B
TypeScript
/**
|
|
* Bundled channel entry metadata for the ClickClack plugin.
|
|
*/
|
|
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
import { registerClickClackDiscussions } from "./runtime-api.js";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "clickclack",
|
|
name: "ClickClack",
|
|
description: "ClickClack channel plugin",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./channel-plugin-api.js",
|
|
exportName: "clickClackPlugin",
|
|
},
|
|
runtime: {
|
|
specifier: "./api.js",
|
|
exportName: "setClickClackRuntime",
|
|
},
|
|
registerFull: registerClickClackDiscussions,
|
|
});
|