UNPKG

@gguf/claw

Version:

WhatsApp gateway CLI (Baileys web) with Pi RPC agent

18 lines (15 loc) 531 B
import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; import { emptyPluginConfigSchema } from "openclaw/plugin-sdk"; import { imessagePlugin } from "./src/channel.js"; import { setIMessageRuntime } from "./src/runtime.js"; const plugin = { id: "imessage", name: "iMessage", description: "iMessage channel plugin", configSchema: emptyPluginConfigSchema(), register(api: OpenClawPluginApi) { setIMessageRuntime(api.runtime); api.registerChannel({ plugin: imessagePlugin }); }, }; export default plugin;