Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexisbg/ssh-agent-add-id
A wrapper for ssh-add that checks whether a key has already been added to the SSH agent.
https://github.com/alexisbg/ssh-agent-add-id
authentication ci gitbucket github gitlab ssh-add ssh-agent vscode vscode-remote wsl
Last synced: about 1 month ago
JSON representation
A wrapper for ssh-add that checks whether a key has already been added to the SSH agent.
- Host: GitHub
- URL: https://github.com/alexisbg/ssh-agent-add-id
- Owner: alexisbg
- License: mit
- Created: 2023-12-23T19:54:39.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-14T11:11:27.000Z (5 months ago)
- Last Synced: 2024-09-28T09:04:10.928Z (about 2 months ago)
- Topics: authentication, ci, gitbucket, github, gitlab, ssh-add, ssh-agent, vscode, vscode-remote, wsl
- Language: Python
- Homepage:
- Size: 114 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ssh-agent-add-id
[![PyPI version](https://img.shields.io/pypi/v/ssh-agent-add-id)](https://pypi.python.org/pypi/ssh-agent-add-id)
[![Python versions](https://img.shields.io/pypi/pyversions/ssh-agent-add-id)](https://github.com/alexisbg/ssh-agent-add-id)A wrapper for `ssh-add` that checks whether a key has already been added to the `SSH agent` rather than prompting for the passphrase every time.
## Description
`ssh-agent-add-id` was primarily created to address a [pending issue](https://github.com/microsoft/vscode-remote-release/issues/2369) in the `VS Code` [WSL extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl) when authenticating with an SSH key that requires a passphrase, such as for a remote Git repository. If this key has not been previously added to the `SSH agent` accessible from the [WSL extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl), `VS Code` does not prompt for the passphrase, causing operations like pushing to the remote repository to get stuck.`ssh-agent-add-id` serves as a wrapper for the [ssh-add](https://man.openbsd.org/ssh-add) command. However, unlike the latter, it does not prompt again for the passphrase and exits quietly if the key has already been added to the SSH agent. It can thus be easily executed in a `VS Code` task when a project is opened.
And beyond remote Git repositories and WSL, `ssh-agent-add-id` can be also be used with cloud services that rely on SSH key authentication and thus reduce the number of times you need to enter your passphrases.
## Requirements
### SSH agent
- [ssh-add](https://man.openbsd.org/ssh-add) and [ssh-agent](https://man.openbsd.org/ssh-agent) must be installed and running.
- `SSH_AUTH_SOCK` environment variable needs be set and accessible from `VS Code` environment.
- For Linux/WSL, in order to share a single `ssh-agent` process for all your shells, it is highly recommended to either run `ssh-agent` as an [user-level systemd service](https://gist.github.com/alexisbg/12102035851c2d0555878cfd865fac75) or to install and setup [Keychain](https://github.com/funtoo/keychain).### ssh-agent-add-id
- Requires `Python 3.8+`.
- It should run smoothly on `macOS` and all `Linux` distributions. However, on `Windows`, it only runs within [WSL](https://learn.microsoft.com/en-us/windows/wsl/).
## Installation
`ssh-agent-add-id` can be installed using `pip`:
```
pip install ssh-agent-add-id
```### VS Code task
Add a task to your VS Code project (in [.vscode/tasks.json](https://github.com/alexisbg/ssh-agent-add-id/blob/main/templates/vs_code/tasks.json)). **Do not forget** to update the `"args"` value with the actual path of your private key file:
```json
{
"label": "Add Git SSH key to agent",
"type": "shell",
"command": "ssh-agent-add-id",
"args": ["${userHome}/.ssh/"],
"presentation": {
"panel": "new",
"revealProblems": "onProblem",
"close": true
},
"runOptions": {
"runOn": "folderOpen"
},
"problemMatcher": []
}
```
Thanks to ["runOptions"/"runOn": "folderOpen"](https://code.visualstudio.com/docs/editor/tasks#_run-behavior), this task runs every time your project is opened, launching a new dedicated terminal. If the identity/key was already added to the `SSH agent`, this terminal closes immediately. Otherwise, it prompts for the key passphrase.
## Command line usage
```
usage: ssh-agent-add-id [-h] [--version] priv_key_path [pub_key_path]positional arguments:
priv_key_path the path of the private key file
pub_key_path the path of the public key file in case its filename is not .puboptional arguments:
-h, --help show this help message and exit
--verbose print some extra info
--version show program's version number and exit
```
## License
This project is licensed under the terms of the MIT license.