feat(keys): add install sub-command for remote public key setup#68
Merged
Conversation
Add `ssh keys install <alias> <user@host>` command that builds an idempotent bootstrap one-liner to deploy a registered public key to a remote Linux host's ~/.ssh/authorized_keys. Three action rows: - Run remote setup command (opens terminal) - Copy remote setup command (clipboard) - Copy public key (clipboard) New files: - RemoteKeyInstallBuilder.cs — command builder + validation - Tests/RemoteKeyInstallBuilderTests.cs — unit tests Modified files: - Main.cs — routing, score constant, HandleKeysInstall method - AutoCompleter.cs — install in KeysSubCommands + description - Languages/en.xaml — localization keys - README.md — command table + Key Installation section Agent-Logs-Url: https://github.com/Vaso73/Flow.Launcher.Plugin.QuickSSH/sessions/de792d53-81d7-4ea9-a8d1-e44983d46454 Co-authored-by: Vaso73 <50487331+Vaso73@users.noreply.github.com>
… builder Agent-Logs-Url: https://github.com/Vaso73/Flow.Launcher.Plugin.QuickSSH/sessions/9511c853-3990-475b-ae78-022c6d2cad72 Co-authored-by: Vaso73 <50487331+Vaso73@users.noreply.github.com>
…bootstrap command Agent-Logs-Url: https://github.com/Vaso73/Flow.Launcher.Plugin.QuickSSH/sessions/29efda0f-112d-4e68-94b9-68137b17ab63 Co-authored-by: Vaso73 <50487331+Vaso73@users.noreply.github.com>
…language files Agent-Logs-Url: https://github.com/Vaso73/Flow.Launcher.Plugin.QuickSSH/sessions/e61f820a-0acd-4687-98fc-209489dfd9c8 Co-authored-by: Vaso73 <50487331+Vaso73@users.noreply.github.com>
…on errors Agent-Logs-Url: https://github.com/Vaso73/Flow.Launcher.Plugin.QuickSSH/sessions/a65120a9-e1b1-4c0c-8d78-a2f85e69f0ff Co-authored-by: Vaso73 <50487331+Vaso73@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
Vaso73
April 6, 2026 19:45
View session
Vaso73
marked this pull request as ready for review
April 6, 2026 19:48
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new
ssh keys installflow for installing a registered SSH public key on a remote Linux host.What changed
ssh keys installsub-commandRun remote setup commandCopy remote setup commandCopy public keyRemoteKeyInstallBuilderfor public key validation and idempotent remote command buildinginstallRuntime verified
ssh keys installflow worksCopy public keyworksCopy remote setup commandcopies a shell-valid commandRun remote setup commandworks~/.ssh/authorized_keysinstallUser-facing impact
README.mdwas updated if requiredRelease intent
release:patchrelease:minorrelease:majorskip-releaseScope notes
Validation
mainNotes