LLM Secrets CLI v3.1.0
======================

Protect your .env files from AI coding assistants with Windows Hello encryption.

QUICK START
-----------

1. Extract this folder to a permanent location (e.g., C:\Tools\llm-secrets)

2. Import the module in PowerShell:

   Import-Module "C:\Tools\llm-secrets\EnvCrypto.psm1"

3. Navigate to your project and create a vault:

   cd C:\path\to\your\project
   New-SimpleVault

4. Add your first secret:

   Add-Secret -Name "API_KEY" -Value "your-secret-value"

5. Use secrets in commands (values are injected at runtime):

   Invoke-WithSecrets { npm run deploy }


REQUIREMENTS
------------

- Windows 10/11 (64-bit)
- Windows Hello configured (PIN, fingerprint, or face recognition)
- PowerShell 5.1 or later


AVAILABLE COMMANDS
------------------

New-SimpleVault      Create a new encrypted vault in the current directory
Add-Secret           Add or update a secret
Get-Secret           Retrieve a decrypted secret value
Remove-Secret        Delete a secret from the vault
Get-AllSecrets       List all secret names (not values)
Invoke-WithSecrets   Run a command with secrets injected as environment variables


DOCUMENTATION
-------------

Full documentation: https://docs.llmsecrets.com
Support: https://llmsecrets.com/support.html
Changelog: https://llmsecrets.com/changelog.html


LICENSE
-------

AGPL-3.0 - Free and open source
https://llmsecrets.com/license.html


Copyright (C) 2025-2026 VestedJosh
