Plugins
OxideTerm’s native plugin host discovers packages from the active configuration directory. A plugin declares its identity and contributions in plugin.json; it does not load JavaScript into a browser surface.
Runtime model
Section titled “Runtime model”Supported runtime kinds are:
processfor an executable managed by the host over versioned JSON Lines.wasmfor a Wasm module managed by the integrated runtime.manifest-onlyfor contributions that need no executable runtime.
Legacy JavaScript entries are not executed by the native application.
Installing and managing plugins
Section titled “Installing and managing plugins”Use the desktop Plugin Manager to browse, install, enable, disable, update, and configure plugins. For local development, place a package under the active configuration directory:
<config-dir>/plugins/<plugin-id>/├── plugin.json└── plugin.wasm or bin/<executable>Run oxideterm paths --json to inspect the active configuration directory. The CLI can list, enable, disable, and inspect plugin settings; installation and updates belong to the desktop manager.
Contributions
Section titled “Contributions”Plugins can declare tabs, sidebar panels, settings, commands, keybindings, context menus, status items, terminal hooks, event subscriptions, AI tools, and supported transports. Tabs and panels provide declarative schemas; GPUI owns rendering and interaction.
Security
Section titled “Security”The host validates manifests and paths, passes the effective capabilities and allowed host APIs during activation, and keeps plugin diagnostics separate from protocol output. Review a plugin’s identity, permissions, settings, and declared surfaces before enabling it.
Next step
Section titled “Next step”Read the Plugin Development Guide for a native manifest and runtime walkthrough.