{"id":43492823,"url":"https://github.com/vlmiroshnikov/alpasso","last_synced_at":"2026-02-03T10:16:32.528Z","repository":{"id":194658292,"uuid":"682267257","full_name":"vlmiroshnikov/alpasso","owner":"vlmiroshnikov","description":"Secret Management Tool","archived":false,"fork":false,"pushed_at":"2026-01-25T19:44:29.000Z","size":203,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-26T10:38:26.653Z","etag":null,"topics":["git","gpg","scala"],"latest_commit_sha":null,"homepage":"","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vlmiroshnikov.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":"2023-08-23T19:59:42.000Z","updated_at":"2026-01-25T18:29:24.000Z","dependencies_parsed_at":"2024-06-09T01:54:40.648Z","dependency_job_id":"db0fffdb-d201-4435-b038-97bdef289728","html_url":"https://github.com/vlmiroshnikov/alpasso","commit_stats":null,"previous_names":["vlmiroshnikov/pass","vlmiroshnikov/alpasso"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vlmiroshnikov/alpasso","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlmiroshnikov%2Falpasso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlmiroshnikov%2Falpasso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlmiroshnikov%2Falpasso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlmiroshnikov%2Falpasso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vlmiroshnikov","download_url":"https://codeload.github.com/vlmiroshnikov/alpasso/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlmiroshnikov%2Falpasso/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29041057,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["git","gpg","scala"],"created_at":"2026-02-03T10:16:31.699Z","updated_at":"2026-02-03T10:16:32.522Z","avatar_url":"https://github.com/vlmiroshnikov.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Alpasso\n\nA secure secret management tool built with Scala 3 and compiled to a native image via GraalVM. Alpasso provides a hierarchical storage system for managing sensitive information with OpenGPG encryption, tagging support, and flexible viewing options.\n\n## Features\n\n- **Secure Storage**: Encrypt secrets using OpenGPG\n- **Hierarchical Structure**: Organize secrets in a tree-like structure\n- **Tagging System**: Attach metadata to secrets for easy filtering\n- **Multiple Repositories**: Manage multiple secret repositories and switch between them\n- **Git Integration**: Built-in version control with commit history\n- **Remote Sync**: Sync repositories with remote git repositories\n- **Native Image**: Fast startup with GraalVM native image compilation\n- **Flexible Output**: Display secrets in tree or table format\n\n## Technology Stack\n\n- **Language**: Scala 3\n- **Functional Programming**: cats, cats-effect, tofu\n- **CLI Parsing**: decline\n- **Serialization**: circe\n- **Encryption**: OpenGPG \n- **Version Control**: JGit\n- **Native Compilation**: GraalVM native-image\n- **Testing**: munit, weaver-cats\n\n## Installation\n\n### From Source\n\n```bash\ngit clone \u003crepository-url\u003e\ncd alpasso\nsbt alpasso/nativeImage\n```\n\nThe native binary will be available at `alpasso/target/native-image/alpasso`.\n\n## Quick Start\n\n### Initialize a Repository\n\n```bash\nalpasso repo init -p ~/.secrets --gpg-fingerprint YOUR_GPG_FINGERPRINT\n```\n\n### Add a Secret\n\n```bash\n# Add a secret with name and value\nalpasso new api-key my-secret-value\n\n# Add a secret with metadata\nalpasso new database-url \"postgres://localhost/db\" --meta env=prod,team=backend\n```\n\n### List Secrets\n\n```bash\n# List all secrets in tree format\nalpasso ls\n\n# List secrets in table format\nalpasso ls --output Table\n\n# Filter secrets by pattern\nalpasso ls --grep api\n```\n\n### Show Sensitive Data\n\nBy default, secret values are masked. Use `--unmasked` to display them:\n\n```bash\nalpasso ls --unmasked\n```\n\n### Update a Secret\n\n```bash\nalpasso patch api-key new-value\n\n# Update metadata only\nalpasso patch api-key --meta env=staging\n```\n\n### Remove a Secret\n\n```bash\nalpasso rm api-key\n```\n\n### Manage Multiple Repositories\n\n```bash\n# List all repositories\nalpasso repo list\n\n# Switch to a different repository\nalpasso repo switch 1\n```\n\n### View History\n\n```bash\nalpasso repo log\n```\n\n### Remote Sync\n\n```bash\n# Setup remote repository\nalpasso repo remote setup https://github.com/user/secrets.git\n\n# Sync with remote\nalpasso repo remote sync\n```\n\nSee LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvlmiroshnikov%2Falpasso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvlmiroshnikov%2Falpasso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvlmiroshnikov%2Falpasso/lists"}