{"id":40444459,"url":"https://github.com/0x80/envi","last_synced_at":"2026-04-30T17:00:40.006Z","repository":{"id":321970740,"uuid":"1087755552","full_name":"0x80/envi","owner":"0x80","description":"Capture, store, and restore .env files across your projects with ease","archived":false,"fork":false,"pushed_at":"2026-04-27T12:01:13.000Z","size":261,"stargazers_count":4,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T12:19:20.792Z","etag":null,"topics":["env","git-worktree","parallel-agents"],"latest_commit_sha":null,"homepage":"https://envi.codecompose.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0x80.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":null,"dco":null,"cla":null}},"created_at":"2025-11-01T15:23:32.000Z","updated_at":"2026-04-27T11:48:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/0x80/envi","commit_stats":null,"previous_names":["0x80/envi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0x80/envi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x80%2Fenvi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x80%2Fenvi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x80%2Fenvi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x80%2Fenvi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0x80","download_url":"https://codeload.github.com/0x80/envi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0x80%2Fenvi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32470879,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["env","git-worktree","parallel-agents"],"created_at":"2026-01-20T16:55:43.271Z","updated_at":"2026-04-30T17:00:40.001Z","avatar_url":"https://github.com/0x80.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Envi\n\nEnvironment file management tool - Capture, store, and restore `.env` and `.dev.vars` files across your projects.\n\n[![NPM Version](https://img.shields.io/npm/v/@codecompose/envi)](https://www.npmjs.com/package/@codecompose/envi)\n[![License](https://img.shields.io/npm/l/@codecompose/envi)](LICENSE)\n[![Documentation](https://img.shields.io/badge/docs-envi.codecompose.dev-blue)](https://envi.codecompose.dev)\n\n## Features\n\n- **Centralized Storage** - Capture all `.env` and Cloudflare Workers `.dev.vars` files into a central, version-controlled location\n- **Easy Restoration** - Restore env files on new systems or git worktrees when working with parallel AI agents\n- **Secure Sharing** - Share configurations safely with team members using encrypted, compressed blobs\n- **At-Rest Encryption** - Optional per-repo encryption key (`envi.maml`) encrypts captured values in storage and the GitHub backup\n- **GitHub Integration** - Optional automatic version control\n- **Comment Preservation** - Keeps full-line and inline comments\n- **Monorepo Support** - Works seamlessly with monorepos\n- **100% Test Coverage** - Core logic (encryption, parsing, storage) fully tested\n\n## Quick Start\n\n```bash\n# Install globally\npnpm add -g @codecompose/envi\n\n# Capture env files\ncd /path/to/your/project\nenvi capture\n\n# Restore env files\nenvi restore\n```\n\n**[→ Full Installation Guide](https://envi.codecompose.dev/getting-started)**\n\n## Documentation\n\nVisit **[envi.codecompose.dev](https://envi.codecompose.dev)** for complete documentation including:\n\n- **[Getting Started](https://envi.codecompose.dev/getting-started)** - Installation and basic usage\n- **[Commands](https://envi.codecompose.dev/commands/capture)** - Detailed command documentation\n- **[Git Worktrees with AI Tools](https://envi.codecompose.dev/guides/git-worktrees)** - Configure parallel agents\n- **[Multi-Language Support](https://envi.codecompose.dev/guides/multi-language-support)** - Using with Rust, Go, Python, and more\n- **[GitHub Integration](https://envi.codecompose.dev/guides/github-integration)** - Set up automatic version control\n- **[Monorepo Support](https://envi.codecompose.dev/guides/monorepo)** - Working with monorepos\n\n## Commands\n\n- `envi capture` - Capture all .env and .dev.vars files from repository\n- `envi restore` - Restore env files from storage\n- `envi pack` - Create encrypted blob for sharing with team members\n- `envi unpack \u003cblob\u003e` - Decrypt and restore configuration from blob\n- `envi create-key` - Generate `envi.maml` to enable at-rest encryption\n- `envi clear` - Delete stored configuration for current project\n- `envi global github enable` - Enable GitHub version control\n- `envi global github disable` - Disable GitHub version control\n- `envi global github restore` - Restore envi store from GitHub\n- `envi global clear` - Delete entire envi directory and all stored configurations\n\nRun any command with `--help` for more information or see the **[Commands documentation](https://envi.codecompose.dev/commands/capture)**.\n\n## Development\n\n### Setup\n\n```bash\npnpm install\n```\n\n### Build\n\n```bash\npnpm build\n```\n\n### Development Mode\n\n```bash\npnpm dev\n```\n\n### Testing\n\n```bash\npnpm test              # Run tests\npnpm test:ui           # Run tests with UI\npnpm test:coverage     # Run tests with coverage\n```\n\n**Test Coverage:** Core business logic (encryption, compression, parsing, storage) has 100% test coverage.\n\n### Linting \u0026 Formatting\n\n```bash\npnpm lint              # Run linter\npnpm lint:fix          # Run linter and fix issues\npnpm format            # Format code with Prettier\npnpm check-format      # Check if code is formatted\npnpm check-types       # Run TypeScript type checking\n```\n\n### Documentation\n\n```bash\npnpm docs:dev          # Start documentation dev server\npnpm docs:build        # Build documentation site\npnpm docs:preview      # Preview built documentation\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0x80%2Fenvi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0x80%2Fenvi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0x80%2Fenvi/lists"}