Files
openclaw/extensions/clickclack/index.ts
Peter Steinberger 5420c5c409 feat(clickclack): session discussions — bound channels, side agent, lifecycle sync (#111503)
* 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
2026-07-19 14:47:14 -07:00

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,
});