GitPedia

Ssh manager

SSH Key Manager for 1Password, Bitwarden and AWS S3.

From omegion·Updated May 15, 2026·View on GitHub·

**ssh manager** is a SSH Key Manager for 1Password, Bitwarden and AWS S3. The project is written primarily in Go, distributed under the Apache License 2.0 license, first published in 2021. Key topics include: 1password, aws-s3, bitwarden, bw, go.

Latest release: v1.109.0Release v1.109.0
June 8, 2026View Changelog →
<h1 align="center"> SSH Key Manager for 1Password, Bitwarden and AWS S3. </h1> <p align="center"> <a href="https://ssh-manager.omegion.dev" target="_blank"> <img width="180" src="https://ssh-manager.omegion.dev/img/logo.png" alt="logo"> </a> </p> <p align="center"> <img src="https://img.shields.io/github/workflow/status/omegion/ssh-manager/Tests" alt="Check"></a> <img src="https://coveralls.io/repos/github/omegion/ssh-manager/badge.svg?branch=master" alt="Coverall"></a> <img src="https://goreportcard.com/badge/github.com/omegion/ssh-manager" alt="Report"></a> <a href="http://pkg.go.dev/github.com/omegion/ssh-manager"><img src="https://img.shields.io/badge/pkg.go.dev-doc-blue" alt="Doc"></a> <a href="https://github.com/omegion/ssh-manager/blob/master/LICENSE"><img src="https://img.shields.io/github/license/omegion/ssh-manager" alt="License"></a> </p>
shell
SSH Key Manager for 1Password, Bitwarden and AWS S3. Usage: ssh-manager [command] Available Commands: add Add Manager key to given provider. completion Generate the autocompletion script for the specified shell get Get Manager key from given provider. help Help about any command list List Manager keys from given provider. version Print the version/build number Flags: -h, --help help for ssh-manager --logFormat string Set the logging format. One of: text|json (default "text") (default "text") --logLevel string Set the logging level. One of: debug|info|warn|error (default "info") Use "ssh-manager [command] --help" for more information about a command.

Installation

You can use go to build SSH Manager locally with:

shell
go install github.com/omegion/ssh-manager@latest

This will install ssh-manager binary to your GOPATH.

Or, you can use the usual commands to install or upgrade:

On OS X

shell
sudo curl -fL https://github.com/omegion/ssh-manager/releases/latest/download/ssh-manager-darwin-amd64 -o /usr/local/bin/ssh-manager \ && sudo chmod +x /usr/local/bin/ssh-manager

On Linux

shell
sudo curl -fL https://github.com/omegion/ssh-manager/releases/latest/download/ssh-manager-linux-amd64 -o /usr/local/bin/ssh-manager \ && sudo chmod +x /usr/local/bin/ssh-manager

On Windows (Powershell)

powershell
Invoke-WebRequest -Uri https://github.com/omegion/ssh-manager/releases/latest/download/ssh-manager-windows-amd64 -OutFile $home\AppData\Local\Microsoft\WindowsApps\ssh-manager.exe

Otherwise, download one of the releases from the release page
directly.

Requirements

  • Have the Bitwarden CLI tool installed and available in the $PATH as bw.
  • Or have the 1Password CLI tool installed and available in the $PATH
    as op.
  • Have the ssh-agent running in the current session.

What does it do?

Injects SSL keys to ssh-agent stored in 1Password, Bitwarden and AWS S3.

How to use it

  1. Login to Bitwarden or 1Password with bw or op. If you are using S3, set your credentials.
  2. Add your key pairs to your password manager.

For 1Password

shell
ssh-manager add --name my-another-server --private-key $PK_PATH --public-key $PUB_KEY_PATH --provider op

For Bitwarden

shell
ssh-manager add --name my-server --private-key $PK_PATH --public-key $PUB_KEY_PATH --provider bw

For AWS S3

shell
ssh-manager add --name my-another-server --private-key $PK_PATH --public-key $PUB_KEY_PATH --provider s3 --bucket my-bucket

Improvements to be made

  • 100% test coverage.
  • Better covering for other features.

Contributors

Showing top 5 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from omegion/ssh-manager via the GitHub API.Last fetched: 6/13/2026