From cff1fde90ec1e20a273a476f60e7d44b4056f8da Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Tue, 26 Aug 2025 18:48:03 -0700 Subject: [PATCH 1/3] Update badge links in README.md to main branch (#635) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21b10ea..5037e9a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Secretive ![Test](https://github.com/maxgoedjen/secretive/workflows/Test/badge.svg) ![Release](https://github.com/maxgoedjen/secretive/workflows/Release/badge.svg) +# Secretive ![Test](https://github.com/maxgoedjen/secretive/workflows/Test/badge.svg?branch=main) ![Release](https://github.com/maxgoedjen/secretive/workflows/Release/badge.svg) Secretive is an app for storing and managing SSH keys in the Secure Enclave. It is inspired by the [sekey project](https://github.com/sekey/sekey), but rewritten in Swift with no external dependencies and with a handy native management app. From 6c607f065c75096f22f5a78aeca7d3390e854755 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Tue, 26 Aug 2025 18:50:30 -0700 Subject: [PATCH 2/3] Add link to config repo (#636) * Revise app configuration documentation * Update link to secretive configuration instructions --- APP_CONFIG.md | 126 +------------------------------------------------- FAQ.md | 2 +- 2 files changed, 3 insertions(+), 125 deletions(-) diff --git a/APP_CONFIG.md b/APP_CONFIG.md index 5de6319..448d9c5 100644 --- a/APP_CONFIG.md +++ b/APP_CONFIG.md @@ -1,125 +1,3 @@ -# Setting up Third Party Apps FAQ +# App Configuration -## Tower - -Tower provides [instructions](https://www.git-tower.com/help/mac/integration/environment). - -## GitHub Desktop - -Should just work, no configuration needed - -## Fork - -Add this to your `~/.ssh/config` (the path should match the socket path from the setup flow). - -``` -Host * - IdentityAgent /Users/$YOUR_USERNAME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh -``` - -## VS Code - -Add this to your `~/.ssh/config` (the path should match the socket path from the setup flow). - -``` -Host * - IdentityAgent /Users/$YOUR_USERNAME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh -``` - -## nushell - -Add this to your `~/.ssh/config` (the path should match the socket path from the setup flow). - -``` -Host * - IdentityAgent /Users/$YOUR_USERNAME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh -``` - -## Cyberduck - -Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist` - -``` - - - - - Label - link-ssh-auth-sock - ProgramArguments - - /bin/sh - -c - /bin/ln -sf $HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh $SSH_AUTH_SOCK - - RunAtLoad - - - -``` - -Log out and log in again before launching Cyberduck. - -## Mountain Duck - -Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist` - -``` - - - - - Label - link-ssh-auth-sock - ProgramArguments - - /bin/sh - -c - /bin/ln -sf $HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh $SSH_AUTH_SOCK - - RunAtLoad - - - -``` - -Log out and log in again before launching Mountain Duck. - -## GitKraken - -Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist` - -``` - - - - - Label - link-ssh-auth-sock - ProgramArguments - - /bin/sh - -c - /bin/ln -sf $HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh $SSH_AUTH_SOCK - - RunAtLoad - - - -``` - -Log out and log in again before launching Gitkraken. Then enable "Use local SSH agent in GitKraken Preferences (Located under Preferences -> SSH) - -## Retcon - -Add this to your `~/.ssh/config` (the path should match the socket path from the setup flow). - -``` -Host * - IdentityAgent /Users/$YOUR_USERNAME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh -``` - -# The app I use isn't listed here! - -If you know how to get it set up, please open a PR for this page and add it! Contributions are very welcome. -If you're not able to get it working, please file a [GitHub issue](https://github.com/maxgoedjen/secretive/issues/new) for it. No guarantees we'll be able to get it working, but chances are someone else in the community might be able to. +Instructions for setting up apps and shells has moved to [secretive-config-instructions](https://github.com/maxgoedjen/secretive-config-instructions)! diff --git a/FAQ.md b/FAQ.md index 0145aeb..7c22fdb 100644 --- a/FAQ.md +++ b/FAQ.md @@ -6,7 +6,7 @@ The secure enclave doesn't allow import or export of private keys. For any new c ### Secretive doesn't work with my git client/app -Secretive relies on the `SSH_AUTH_SOCK` environment variable being respected. The `git` and `ssh` command line tools natively respect this, but third party apps may require some configuration to work. A non-exhaustive list of setup steps is provided in the [App Config FAQ](APP_CONFIG.md). +Secretive relies on the `SSH_AUTH_SOCK` environment variable being respected. The `git` and `ssh` command line tools natively respect this, but third party apps may require some configuration to work. A non-exhaustive list of setup steps is provided in the [secretive-config-instructions](https://github.com/maxgoedjen/secretive-config-instructions) repo. ### Secretive isn't working for me From c37d0c0cbacb0d220d24101c5a93be4bfefb6331 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Tue, 26 Aug 2025 18:56:04 -0700 Subject: [PATCH 3/3] Update badge links in README.md (#637) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5037e9a..50d8cd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Secretive ![Test](https://github.com/maxgoedjen/secretive/workflows/Test/badge.svg?branch=main) ![Release](https://github.com/maxgoedjen/secretive/workflows/Release/badge.svg) +# Secretive [![Test](https://github.com/maxgoedjen/secretive/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/maxgoedjen/secretive/actions/workflows/test.yml) ![Release](https://github.com/maxgoedjen/secretive/workflows/Release/badge.svg) Secretive is an app for storing and managing SSH keys in the Secure Enclave. It is inspired by the [sekey project](https://github.com/sekey/sekey), but rewritten in Swift with no external dependencies and with a handy native management app.