Metadata-Version: 2.4
Name: supa.cc
Version: 0.6.0
Summary: Local Supabase account switcher for macOS, Linux, and Windows
Project-URL: Homepage, https://github.com/dgabreuu/supa.cc
Project-URL: Repository, https://github.com/dgabreuu/supa.cc.git
Project-URL: Issues, https://github.com/dgabreuu/supa.cc/issues
Project-URL: Documentation, https://github.com/dgabreuu/supa.cc/blob/main/docs/usage.md
Project-URL: Changelog, https://github.com/dgabreuu/supa.cc/blob/main/CHANGELOG.md
License: MIT License
        
        Copyright (c) 2026 Supa.cc contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: account-management,cli,credential-manager,developer-tools,keychain,linux,macos,secret-service,supabase,windows
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.11
Requires-Dist: click>=8.0.0
Requires-Dist: keyring>=24.0.0
Requires-Dist: questionary>=2.0.0
Provides-Extra: dev
Requires-Dist: build>=1.2.0; extra == 'dev'
Requires-Dist: pip-audit<3,>=2.7; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: pyyaml>=6.0; extra == 'dev'
Requires-Dist: setuptools>=83.0.0; extra == 'dev'
Description-Content-Type: text/markdown

![Supa.cc showing the compact home and available terminal actions](https://raw.githubusercontent.com/dgabreuu/supa.cc/main/assets/terminal.svg)

# Supa.cc

> Switch between multiple Supabase accounts from one local CLI.

[![PyPI version](https://img.shields.io/pypi/v/supa.cc?label=PyPI)](https://pypi.org/project/supa.cc/)
[![Python versions](https://img.shields.io/pypi/pyversions/supa.cc?label=Python)](https://pypi.org/project/supa.cc/)
[![License](https://img.shields.io/github/license/dgabreuu/supa.cc?label=License)](https://github.com/dgabreuu/supa.cc/blob/main/LICENSE)

```text
 ____
/ ___| _   _ _ __   __ _   ___ ___
\___ \| | | | '_ \ / _` | / __/ __|
 ___) | |_| | |_) | (_| || (_| (__
|____/ \__,_| .__/ \__,_(_)___\___|
            |_|
```

Supa.cc manages multiple Supabase accounts locally while keeping Personal Access Tokens in Keychain, Secret Service, or Windows Credential Manager. The public source is available from the [official repository](https://github.com/dgabreuu/supa.cc.git).

## 📦 Installation

Supa.cc requires Python 3.11+ and the [official Supabase CLI](https://supabase.com/docs/guides/local-development/cli/getting-started) 2.109.1 or newer. The recommended path is the immutable `v0.6.0` bootstrap for your operating system.

| Platform | Recommended method | Native credential store |
| --- | --- | --- |
| macOS | POSIX bootstrap (`install.sh`) | Keychain |
| Debian/Ubuntu, Arch Linux, and Fedora | POSIX bootstrap (`install.sh`) | Secret Service |
| Windows | PowerShell bootstrap (`install.ps1`) | Windows Credential Manager |

The bootstrap detects supported dependencies, configures the current session's `PATH`, installs or updates the required components, and runs `supa.cc doctor --installation-check`. An administrator password, Homebrew installation prompt, or native credential-store unlock may still be requested by the operating system.

### 🍎 macOS

```bash
curl -fsSL https://raw.githubusercontent.com/dgabreuu/supa.cc/v0.6.0/install.sh | bash
```

### 🐧 Linux

```bash
curl -fsSL https://raw.githubusercontent.com/dgabreuu/supa.cc/v0.6.0/install.sh | bash
```

### 🪟 Windows

```powershell
irm https://raw.githubusercontent.com/dgabreuu/supa.cc/v0.6.0/install.ps1 | iex
```

The [installation guide](https://github.com/dgabreuu/supa.cc/blob/main/docs/installation.md) covers prerequisites, manual Homebrew and `pipx` fallbacks, verification, upgrades, uninstallation, and platform-specific remediation.

To operate Supa.cc through OpenCode, Claude Code, Codex, or Cursor, install the portable [coding-agent skill](https://github.com/dgabreuu/supa.cc/blob/main/docs/agent-skill.md) separately.

## 🔐 Security

PATs are accepted only through hidden prompts, stored only in the platform-native credential store, and never passed as command-line arguments. Read the [security model](https://github.com/dgabreuu/supa.cc/blob/main/docs/security.md) and [safe troubleshooting guide](https://github.com/dgabreuu/supa.cc/blob/main/docs/troubleshooting.md) before sharing diagnostics or changing an installation.

## 📄 License

Supa.cc is released under the [MIT license](https://github.com/dgabreuu/supa.cc/blob/main/LICENSE).
