Plugin installation
Provider integrations are installed as local WASM plugin bundles. A runtime plugin bundle is a directory with at least:
plugin.jsonplugin.wasmInstall each extracted bundle as a direct child directory of data/plugins:
data/plugins/strava/plugin.jsondata/plugins/strava/plugin.wasmwanderer discovers plugins from data/plugins/<plugin-id>/plugin.json. After
discovery, the plugin appears in the plugin settings page.
Installing release bundles
Section titled “Installing release bundles”Official Docker images do not include provider plugins. Download plugin bundle
archives from the GitHub release assets, extract them, and copy the extracted
plugin directory into the mounted ./data/plugins directory.
There is no built-in plugin store. Community plugins can be installed the same way, but only install plugin bundles from sources you trust.
Source checkout
Section titled “Source checkout”When running from a source checkout, first-party plugin source lives under the
repository’s plugins/ directory. That source directory is not the runtime
install location.
Build and install the bundled plugins into data/plugins with:
make plugins-install-localUse this after a fresh checkout or after changing first-party plugin code.
Runtime and network model
Section titled “Runtime and network model”Plugins run as local WASM modules in a separate worker process. Provider API and media requests are still executed by the backend through the plugin manifest’s network policy; plugins do not get unrestricted access to your server network.
Self-hosted provider plugins may expose connector settings such as a base URL, private-network access, storage redirect origins, or a custom CA bundle. Treat those settings as administrator trust decisions: only enable private-network access or custom CAs for plugin bundles and endpoints you trust.
Provider plugin connector CAs are configured per connector when a plugin
supports custom TLS. They are not read from NODE_EXTRA_CA_CERTS.