Install
Recommended: Install Script (Linux / macOS)
The install script downloads the latest release, verifies the SHA256 checksum, and installs to ~/.local/bin:
curl -sSL https://raw.githubusercontent.com/CameronBrooks11/super-productivity-local-gobridge/main/scripts/install.sh | bashThe script auto-detects your OS and architecture. It fails closed if the checksum does not match.
Note: This command fetches the installer from the
mainbranch. For a pinned version, download the script from a specific release tag or use the manual install method below.
Manual Download from GitHub Releases
Download the appropriate archive for your platform from the Releases page.
Platform Matrix
Release archives are versioned. Replace VERSION with the release version (e.g. 0.1.0):
| Platform | Archive |
|---|---|
| Linux x86_64 | sp-local-bridge_VERSION_linux_amd64.tar.gz |
| Linux arm64 | sp-local-bridge_VERSION_linux_arm64.tar.gz |
| macOS arm64 (Apple Silicon) | sp-local-bridge_VERSION_darwin_arm64.tar.gz |
| macOS x86_64 (Intel) | sp-local-bridge_VERSION_darwin_amd64.tar.gz |
| Windows x86_64 | sp-local-bridge_VERSION_windows_amd64.zip |
| Windows arm64 | sp-local-bridge_VERSION_windows_arm64.zip |
Linux
# Set the version you want to install
VERSION="0.1.1"
# Download archive and checksums
curl -LO "https://github.com/CameronBrooks11/super-productivity-local-gobridge/releases/download/v${VERSION}/sp-local-bridge_${VERSION}_linux_amd64.tar.gz"
curl -LO "https://github.com/CameronBrooks11/super-productivity-local-gobridge/releases/download/v${VERSION}/checksums.txt"
# Verify checksum
grep "sp-local-bridge_${VERSION}_linux_amd64.tar.gz" checksums.txt | sha256sum -c -
# Extract and install
tar xzf "sp-local-bridge_${VERSION}_linux_amd64.tar.gz"
chmod +x sp-local-bridge
sudo mv sp-local-bridge /usr/local/bin/macOS
# Set the version you want to install
VERSION="0.1.1"
# Download archive and checksums (adjust darwin_arm64 to darwin_amd64 for Intel Macs)
curl -LO "https://github.com/CameronBrooks11/super-productivity-local-gobridge/releases/download/v${VERSION}/sp-local-bridge_${VERSION}_darwin_arm64.tar.gz"
curl -LO "https://github.com/CameronBrooks11/super-productivity-local-gobridge/releases/download/v${VERSION}/checksums.txt"
# Verify checksum (macOS uses shasum instead of sha256sum)
grep "sp-local-bridge_${VERSION}_darwin_arm64.tar.gz" checksums.txt | shasum -a 256 -c -
# Extract and install
tar xzf "sp-local-bridge_${VERSION}_darwin_arm64.tar.gz"
chmod +x sp-local-bridge
sudo mv sp-local-bridge /usr/local/bin/Windows
- Download the
.zipfor your architecture from the Releases page. - Download
checksums.txtfrom the same release. - Verify the checksum matches (PowerShell:
Get-FileHashorcertutil -hashfile). - Extract
sp-local-bridge.exe. - Move it to a directory in your
PATH, or use the full path in host configs.
From Source
Requires Go 1.23+:
go install github.com/CameronBrooks11/super-productivity-local-gobridge/cmd/sp-local-bridge@latestINFO
go install builds without release metadata, so sp-local-bridge --version will show dev. For versioned builds, use release artifacts or clone and build with make build.
Or clone and build:
git clone https://github.com/CameronBrooks11/super-productivity-local-gobridge.git
cd super-productivity-local-gobridge
make build
# Binary: ./sp-local-bridgeVerify Installation
sp-local-bridge --version
sp-local-bridge doctorUpgrade
Download the new release binary and replace the existing one. Host configs do not need to change unless the binary path moves.
Uninstall
Remove host configs first (while the binary is still available):
shsp-local-bridge configure --remove claude-desktop sp-local-bridge configure --remove vscode-copilot sp-local-bridge configure --remove codexRemove the binary:
shsudo rm /usr/local/bin/sp-local-bridgeBackup files (
.bak) are created alongside host configs duringconfigureand can be used to restore the original state if needed.