Metadata-Version: 2.4
Name: hidehub
Version: 0.1.1
Summary: Secure secret management for developers — zero-knowledge .env vault
Author: HideHub
License: MIT
Project-URL: Homepage, https://hidehub.com
Project-URL: Documentation, https://hidehub.com/docs
Project-URL: Repository, https://github.com/marcus20232023/hidehub_claude
Keywords: secrets,environment-variables,dotenv,encryption,security,cli
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.12.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: cryptography>=43.0.0

# HideHub CLI

Secure secret management from the command line.

## Installation

```bash
pip install hidehub-cli
```

Or install from source:

```bash
cd client
pip install -e .
```

## Quick Start

```bash
# Authenticate
hidehub init --email you@example.com

# Push secrets from a .env file
hidehub push --env-file .env.production --project my-api

# List projects
hidehub list

# List secrets in a project
hidehub list --project my-api

# Run a command with secrets injected
hidehub run --project my-api -- npm start

# Rotate a secret
hidehub rotate OPENAI_API_KEY --project my-api

# Export secrets for shell eval
eval "$(hidehub use --project my-api --export)"
```

## CI/CD Usage

Set the `HIDEHUB_API_KEY` environment variable to use API key auth instead of JWT:

```bash
export HIDEHUB_API_KEY=hh_your_api_key_here
hidehub run --project my-api -- npm test
```
