Installation#
There are two ways to install tabby-aws-ssm-ssh.
Method 1 — Install from the Tabby Plugin Manager#
This is the recommended method for most users.
Open Tabby and go to Settings → Plugins.
In the search box, search for
aws-ssm-ssh.Click Install, then restart Tabby when prompted.
Method 2 — Clone the Git repository and build from source#
Clone the repository and move into it:
git clone https://github.com/search5/tabby-aws-ssm-ssh.git cd tabby-aws-ssm-ssh
Install the npm dependencies:
npm installBuild the plugin:
npm run build
Copy the built plugin into Tabby’s plugin directory:
npm run install-plugin
npm run install-plugincopies thedist/output into Tabby’s plugin directory:Linux:
~/.config/tabby/pluginsmacOS:
~/Library/Application Support/tabby/pluginsWindows:
%APPDATA%\tabby\plugins
Restart Tabby so it picks up the newly installed plugin.
Development workflow#
If you are iterating on the plugin itself rather than just installing it,
use the watch build instead of a one-off npm run build:
npm run watch # rebuild automatically on every source change
npm run install-plugin # copy dist/ into Tabby's plugin directory
Remember to restart Tabby (or reload its window) after each
install-plugin run to pick up the new build.