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 { whatsappPlugin } from "./src/channel.js"; import { setWhatsAppRuntime } from "./src/runtime.js"; const plugin = { id: "whatsapp", name: "WhatsApp", description: "WhatsApp channel plugin", configSchema: emptyPluginConfigSchema(), register(api: OpenClawPluginApi) { setWhatsAppRuntime(api.runtime); api.registerChannel({ plugin: whatsappPlugin }); }, }; export default plugin;