{"id":33902397,"url":"https://github.com/edneedham/cred","last_synced_at":"2026-02-04T15:10:17.124Z","repository":{"id":328187940,"uuid":"1106220611","full_name":"edneedham/cred","owner":"edneedham","description":"A command-line tool to manage secrets and environment variables locally and remotely.","archived":false,"fork":false,"pushed_at":"2026-01-10T15:51:44.000Z","size":1642,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T04:43:28.911Z","etag":null,"topics":["cli","rust","secrets","security"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edneedham.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","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-28T20:44:06.000Z","updated_at":"2026-01-10T15:51:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/edneedham/cred","commit_stats":null,"previous_names":["edneedham/cred"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/edneedham/cred","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edneedham%2Fcred","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edneedham%2Fcred/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edneedham%2Fcred/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edneedham%2Fcred/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edneedham","download_url":"https://codeload.github.com/edneedham/cred/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edneedham%2Fcred/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400349,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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":["cli","rust","secrets","security"],"created_at":"2025-12-12T00:23:20.351Z","updated_at":"2026-02-04T15:10:17.117Z","avatar_url":"https://github.com/edneedham.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/edneedham/cred/actions/workflows/ci-cd.yml/badge.svg?branch=main)](https://github.com/edneedham/cred/actions/workflows/ci-cd.yml)\n[![Crates.io](https://img.shields.io/crates/v/cred.svg)](https://crates.io/crates/cred)\n[![GitHub Release](https://img.shields.io/github/v/release/edneedham/cred)](https://github.com/edneedham/cred/releases/latest)\n[![Homebrew](https://img.shields.io/badge/homebrew-edneedham%2Fcred-orange)](https://github.com/edneedham/homebrew-cred)\n[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](LICENSE-MIT)\n[![Downloads](https://img.shields.io/github/downloads/edneedham/cred/total)](https://github.com/edneedham/cred/releases)\n\n# cred\n\nEncrypted local secrets → Deployment platforms.\n\n📖 **[Full Documentation](https://edneedham.github.io/cred/)**\n\n---\n\n## What it is\n\n`cred` stores encrypted secrets locally and safely pushes them to target platforms on demand.\n\n⚠️ **Status: Early Preview (v0.17.0)** — The on-disk format, CLI surface, and security model may change between minor versions.\n\n### What it's not\n\n-   A hosted secrets manager\n-   A multi-user access control system\n-   A replacement for HashiCorp Vault or AWS Secrets Manager\n-   A runtime secret injector\n\n### Who it's for\n\n-   **Solo developers** managing secrets on a single machine\n-   Open-source maintainers who push secrets to deployment platforms\n-   Anyone who wants local-first secrets without running infrastructure\n\n---\n\n## Install\n\n**Homebrew:**\n\n```bash\nbrew tap edneedham/cred\nbrew install edneedham/cred/cred\n```\n\n**Shell:**\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/edneedham/cred/main/scripts/install.sh | sh -s\n```\n\n**Cargo:**\n\n```bash\ncargo install cred\n```\n\n**Pre-built binaries:** [GitHub Releases](https://github.com/edneedham/cred/releases)\n\n---\n\n## Quick Start\n\n```bash\n# Initialize a project (auto-detects targets from git, fly.toml, etc.)\ncred init\n\n# Authenticate with a target (per-project, fine-grained token)\ncred target set github\n\n# Store a secret\ncred secret set DATABASE_URL \"postgres://...\"\n\n# Optional: scope a secret to a target (v0.14.0+)\ncred secret set NEXT_PUBLIC_API_URL \"https://...\" --targets vercel\n\n# Push to GitHub (no --repo needed, uses saved binding)\ncred push github\n```\n\nSee the [Getting Started guide](https://edneedham.github.io/cred/getting-started.html) for more.\n\n---\n\n## Features\n\n-   **Encrypted vault** — Secrets stored locally with ChaCha20-Poly1305\n-   **Environments** — Organize secrets by context (dev, staging, prod)\n-   **Version history** — Track changes, rollback to previous versions\n-   **Sources** — Generate credentials from APIs (Resend)\n-   **Targets** — Push secrets to deployment platforms (GitHub Actions, Vercel, Fly.io)\n-   **OS keyring** — Tokens stored in macOS Keychain, GNOME Keyring, or Windows Credential Manager\n-   **Automation-ready** — `--json`, `--dry-run`, `--non-interactive` flags\n\n---\n\n## Documentation\n\n-   [Installation](https://edneedham.github.io/cred/installation.html)\n-   [Getting Started](https://edneedham.github.io/cred/getting-started.html)\n-   [Commands Reference](https://edneedham.github.io/cred/commands/)\n-   [Security Model](https://edneedham.github.io/cred/security.html)\n\n---\n\n## License\n\nLicensed under either of:\n\n-   Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n-   MIT License ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your choice.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedneedham%2Fcred","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedneedham%2Fcred","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedneedham%2Fcred/lists"}