ctx.ipc (PluginIPCRegistrar) lets you register IPC handlers and send messages to the renderer. All channel names are automatically prefixed as plugin:{pluginId}:*.
plugin:my-plugin:get-status and plugin:my-plugin:new-flight-available — the prefix is applied transparently.
When to use it: for background-to-UI push (data the renderer didn’t ask for, like live updates). For request/response, prefer HTTP routes via ctx.server + TanStack Query — see Background ↔ UI Communication for the full pattern and rules.