**TL;DR:** Manage your environment secrets lifecycle — inject, rotate, and audit credentials — without requiring application-level changes or deploys.
```bash
npm install @mrtech/env-secrets-manager --save-dev
```
```bash
npx secrets-manager init --backend=vault --url=http://vault:8200 --token=$VAULT_TOKEN
```
```bash
npx secrets-manager rotate --key=STRIPE_API_KEY --env=production
```
| Dimension | Rating | Notes |
|-----------|--------|-------|
| Rotation Speed | 5/5 | One command to rotate any key |
| Backend Coverage | 4/5 | Vault, AWS, GCP, Azure all supported |
| Zero-Deploy Rotation | 5/5 | Agent updates env without restarting services |
Env Secrets Manager makes credential rotation a CLI operation instead of a multi-day project. The zero-deploy rotation capability eliminates the biggest resistance to rotation policies.
Skill: env-secrets-manager | Ecosystem: claude-code | Runtime: node | Auth: api-key