{"id":50409644,"url":"https://github.com/involvex/ghost-env","last_synced_at":"2026-05-31T03:02:10.724Z","repository":{"id":350581149,"uuid":"1207444282","full_name":"involvex/Ghost-Env","owner":"involvex","description":"A secure TUI (Terminal User Interface) for managing environment secrets. Safely add, list, and delete environment variables without them ever appearing in shell history.","archived":false,"fork":false,"pushed_at":"2026-04-11T23:12:33.000Z","size":139,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-02T19:41:43.408Z","etag":null,"topics":["bun","env","environment-variables","ink","tui","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/involvex.png","metadata":{"files":{"readme":"readme.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"Agents.md","dco":null,"cla":null},"funding":{"github":["involvex"],"custom":["https://buymeacoffee.com/involvex","https://paypal.me/involvex","https://rewards.bing.com/welcome?rh=14525F68\u0026ref=rafsrchae\u0026form=ML2XE3\u0026OCID=ML2XE3\u0026PUBL=RewardsDO\u0026CREA=ML2XE3"]}},"created_at":"2026-04-11T00:27:56.000Z","updated_at":"2026-04-11T23:12:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/involvex/Ghost-Env","commit_stats":null,"previous_names":["involvex/ghost-env"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/involvex/Ghost-Env","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/involvex%2FGhost-Env","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/involvex%2FGhost-Env/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/involvex%2FGhost-Env/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/involvex%2FGhost-Env/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/involvex","download_url":"https://codeload.github.com/involvex/Ghost-Env/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/involvex%2FGhost-Env/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33717419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bun","env","environment-variables","ink","tui","typescript"],"created_at":"2026-05-31T03:02:09.148Z","updated_at":"2026-05-31T03:02:10.717Z","avatar_url":"https://github.com/involvex.png","language":"TypeScript","funding_links":["https://github.com/sponsors/involvex","https://buymeacoffee.com/involvex","https://paypal.me/involvex","https://rewards.bing.com/welcome?rh=14525F68\u0026ref=rafsrchae\u0026form=ML2XE3\u0026OCID=ML2XE3\u0026PUBL=RewardsDO\u0026CREA=ML2XE3"],"categories":[],"sub_categories":[],"readme":"# Ghost-Env\n\nA secure TUI (Terminal User Interface) for managing environment secrets. Safely add, list, and delete environment variables without them ever appearing in shell history.\n\n## Features\n\n- **Interactive TUI** - No command-line arguments needed for secrets\n- **Masked Inputs** - Values are hidden during typing (asterisks), toggle visibility with 's' key\n- **Secure Storage** - Secrets stored in `.env` file in current directory\n- **Zod Validation** - Ensures proper .env format\n- **No History Leakage** - Secrets never appear in shell history (`bash_history`, `ps aux`, etc.)\n\n## Install\n\n```bash\nnpm install --global @involvex/Ghost-Env\n```\n\nOr install from source:\n\n```bash\nbun install\nbun run build\nnpm install --global .\n```\n\n## Usage\n\nRun the interactive CLI:\n\n```bash\nGhost-Env\n```\n\nNavigate the menu:\n\n- Select **Secrets** to manage environment variables\n- **Add Secret** - Enter key name and masked value\n- **List Secrets** - View all stored keys (values hidden)\n- **Delete Secret** - Remove a key with confirmation\n\n### CLI Options\n\n```bash\nGhost-Env --help    # Show help\nGhost-Env --version # Show version\nGhost-Env --about   # Show about\n```\n\n## Commands\n\n| Command    | Description                   |\n| ---------- | ----------------------------- |\n| `Secrets`  | Enter secrets management menu |\n| `Demo`     | View component demos          |\n| `Help`     | Show help information         |\n| `Settings` | Configure settings            |\n| `About`    | About Ghost-Env               |\n| `Version`  | Show version                  |\n\n## Security\n\n- Secrets are typed interactively in the TUI - never passed as CLI arguments\n- Input is masked with asterisks by default, toggle with 's' key\n- No data written to shell history\n- File permissions should be set to `0600` on Unix systems:\n\n  ```bash\n  chmod 600 .env\n  ```\n\n## Development\n\n```bash\n# Run in development with hot reload\nbun run dev\n\n# Run directly\nbun run start\n\n# Build for production\nbun run build\n\n# Run checks (format, lint, typecheck)\nbun run prebuild\n```\n\n## Funding\n\nSupport this project:\n\n- GitHub Sponsors: [@involvex](https://github.com/sponsors/involvex)\n- Buy Me a Coffee: [buymeacoffee.com/involvex](https://buymeacoffee.com/involvex)\n- PayPal: [paypal.me/involvex](https://paypal.me/involvex)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvolvex%2Fghost-env","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finvolvex%2Fghost-env","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvolvex%2Fghost-env/lists"}