How to install a plugin in Yoki
Plugins extend Yoki with new commands without bloating the core binary. The marketplace ships with several first-party plugins; anyone can build their own using the bundled SDK. This guide shows how to install one and where it lives on disk.
Browse the marketplace and install
All installation happens from inside Yoki — you never have to visit a website or download a zip.
- Open YokiPress Alt+Space to open the search bar from any app.
- Open the marketplaceType plugins and press Enter. Yoki switches to the plugin marketplace view, which lists every available plugin with its trigger word, description, and a one-click install button.
- InstallClick Install on the plugin you want. Yoki downloads it, validates the signature, and registers its trigger word immediately — no restart required.
- Run itBack in the search bar, type the plugin’s trigger word (for example sp for Spotify) followed by your query. The plugin’s results appear inline, like any built-in command.
Alt + Space → plugins
Official plugins
These plugins are built and maintained by the Yoki team and are available in the marketplace.
spSpotifymathMathcolorColorbmBookmarksWhere plugins live
Installed plugins are stored under ~/yoki/plugins/ on your machine (on Windows, that resolves to C:\Users\<username>\yoki\plugins\). Each plugin gets its own folder containing a manifest, an entry file, and any assets. You can open this folder from Settings › Plugins › Open folder if you want to inspect what is installed.
~/yoki/plugins/
Build your own
If the marketplace does not have what you need, you can write your own plugin. The bundled SDK supports JavaScript, Python, and Ruby, so you can use whichever language you already know. Full API docs, a quick-start template, and examples live on the SDK page.