Skip to content

tnfssc/protonpass-cli-bin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ProtonPass CLI Binary Mirror

This repository mirrors the official ProtonPass CLI binaries with daily updates.

Note: This is an unofficial mirror. For the most up-to-date information and official support, please visit the ProtonPass CLI documentation.

Quick Download

Linux

# Linux x86_64
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-linux-x86_64
chmod +x pass-cli

# Linux aarch64
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-linux-aarch64
chmod +x pass-cli

macOS

# macOS x86_64 (Intel)
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-macos-x86_64
chmod +x pass-cli

# macOS aarch64 (Apple Silicon)
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-macos-aarch64
chmod +x pass-cli

Windows (PowerShell)

Invoke-WebRequest -Uri https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-windows-x86_64.zip -OutFile pass-cli.zip
Expand-Archive -Path pass-cli.zip -DestinationPath .

Installation with mise

If you use mise, you can install ProtonPass CLI directly from this mirror using the built-in github backend.

Prerequisites

Quick Install

Install the latest version:

mise use github:tnfssc/protonpass-cli-bin

This will:

  • Automatically detect your platform (OS and architecture)
  • Download the appropriate binary
  • Install and make it available

Install a Specific Version

# Install version 1.3.2
mise use github:tnfssc/protonpass-cli-bin@1.3.2

# Or always use latest
mise use github:tnfssc/protonpass-cli-bin@latest

List Available Versions

mise ls-remote github:tnfssc/protonpass-cli-bin

Update to Latest Version

mise upgrade github:tnfssc/protonpass-cli-bin

Persistent Configuration

To make the installation persistent across shell sessions, add this to your ~/.config/mise/config.toml:

[tools]
"github:tnfssc/protonpass-cli-bin" = "latest"

Using the Tool

After installation, you can run the binary using mise exec:

mise exec -- pass-cli --version
mise exec -- pass-cli login

Or if you have mise properly activated in your shell, you can run it directly:

pass-cli --version
pass-cli login

Note: Check the installed binary path with mise where github:tnfssc/protonpass-cli-bin to verify the exact location.

Verification

Always verify the binary integrity using the SHA256 checksums:

# Download checksums
curl -fsSL -O https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/SHA256SUMS

# Verify your binary
sha256sum -c SHA256SUMS --ignore-missing

Or manually check the hash:

# On Linux/macOS
sha256sum pass-cli
# On Windows
certutil -hashfile pass-cli SHA256

Installation

Install to a directory in your PATH

# Move to ~/.local/bin (recommended)
mv pass-cli ~/.local/bin/

# Or install to /usr/local/bin (requires sudo)
sudo mv pass-cli /usr/local/bin/

Log in to ProtonPass

pass-cli login

Available Versions

Browse all releases: Releases page

Download a specific version by replacing latest with the version tag:

curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/download/v1.3.2/pass-cli-linux-x86_64

Update Schedule

This mirror is automatically updated daily at 00:00 UTC to include the latest stable release from the official ProtonPass CLI.

Binary Details

Each release includes the following binaries:

Binary Platform Architecture
pass-cli-linux-x86_64 Linux x86_64
pass-cli-linux-aarch64 Linux ARM64
pass-cli-macos-x86_64 macOS x86_64 (Intel)
pass-cli-macos-aarch64 macOS ARM64 (Apple Silicon)
pass-cli-windows-x86_64.zip Windows x86_64

For mise users, the following archive files are also provided (auto-detected):

Archive Platform Architecture
pass-cli-linux-x64.tar.gz Linux x86_64
pass-cli-linux-arm64.tar.gz Linux ARM64
pass-cli-macos-x64.tar.gz macOS x86_64 (Intel)
pass-cli-macos-arm64.tar.gz macOS ARM64 (Apple Silicon)
pass-cli-windows-x64.tar.gz Windows x86_64

Official Sources

Support

For issues, questions, or feature requests related to the ProtonPass CLI itself, please use the official channels:

For issues specific to this mirror (e.g., missing releases, broken downloads), please open an issue.

License

The ProtonPass CLI is licensed under the GNU General Public License v3.0. See the official repository for more details.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors