plugin
Manage dynamic plugins stored under ~/.appctl/plugins/.
Commands
Section titled “Commands”appctl plugin list— show the plugins the host can currently load.appctl plugin install <path-or-name>— install a compiled plugin binary into the plugin directory.
Examples
Section titled “Examples”List installed plugins:
appctl plugin listInstall a freshly built plugin:
cargo build --release -p appctl-airtableappctl plugin install ./target/release/libappctl_airtable.dylibThen sync with it:
appctl sync --plugin airtable --force- Plugins are loaded from
~/.appctl/plugins/, not from the current project directory. - The plugin name passed to
appctl sync --plugin ...comes from the plugin manifest exposed by the shared library. - Keep the plugin SDK version aligned with the
appctlhost minor version.