UNPKG

@gguf/claw

Version:

WhatsApp gateway CLI (Baileys web) with Pi RPC agent

18 lines (15 loc) 545 B
import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; import { emptyPluginConfigSchema } from "openclaw/plugin-sdk"; import { mattermostPlugin } from "./src/channel.js"; import { setMattermostRuntime } from "./src/runtime.js"; const plugin = { id: "mattermost", name: "Mattermost", description: "Mattermost channel plugin", configSchema: emptyPluginConfigSchema(), register(api: OpenClawPluginApi) { setMattermostRuntime(api.runtime); api.registerChannel({ plugin: mattermostPlugin }); }, }; export default plugin;