Plugin commands¶
Cmd: uni plugin pull "<user>/<repo>"¶
This command installs or updates a plugin from GitHub. Example:
uni plugin pull "uni-ai-dev/uni_soundboard"
Re-running pull on an already-installed plugin updates it to the latest version.
Activation
After a plugin is installed, it needs to be enabled manually. Restart UNI and go to Settings > Plugins > Add plugin. Find the plugin and click Enable plugin.
Pulling specific versions¶
To pull a specific release tag, use:
uni plugin pull "uni-ai-dev/uni_soundboard@v1.0.0"
Or to pull a specific commit:
uni plugin pull "uni-ai-dev/uni_soundboard#abc1234"
Cmd: uni plugin remove "<id>"¶
This command removes a plugin from your installation.
uni plugin remove "uni-ai-dev/uni_soundboard"
If you want to keep settings/data for this plugin, add the --keep-data flag:
uni plugin remove "uni-ai-dev/uni_soundboard" --keep-data