{"id":45951131,"url":"https://github.com/evisdrenova/helix","last_synced_at":"2026-04-29T14:05:28.856Z","repository":{"id":300823112,"uuid":"1007255881","full_name":"evisdrenova/helix","owner":"evisdrenova","description":"A new version control system built from the ground up that is 10-100x faster than Git and built for an AI-native world.","archived":false,"fork":false,"pushed_at":"2026-01-01T02:06:40.000Z","size":580,"stargazers_count":21,"open_issues_count":0,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-01T03:00:38.841Z","etag":null,"topics":["ai","git","llm","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/evisdrenova.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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":null,"dco":null,"cla":null}},"created_at":"2025-06-23T17:48:52.000Z","updated_at":"2026-01-01T02:06:44.000Z","dependencies_parsed_at":"2025-06-23T20:26:12.709Z","dependency_job_id":null,"html_url":"https://github.com/evisdrenova/helix","commit_stats":null,"previous_names":["evisdrenova/ghit","evisdrenova/helix"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/evisdrenova/helix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evisdrenova%2Fhelix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evisdrenova%2Fhelix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evisdrenova%2Fhelix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evisdrenova%2Fhelix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evisdrenova","download_url":"https://codeload.github.com/evisdrenova/helix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evisdrenova%2Fhelix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29934348,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T12:34:16.884Z","status":"ssl_error","status_checked_at":"2026-02-28T12:34:13.721Z","response_time":90,"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":["ai","git","llm","rust"],"created_at":"2026-02-28T12:38:31.017Z","updated_at":"2026-04-29T14:05:28.850Z","avatar_url":"https://github.com/evisdrenova.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **Helix — A Next-Generation Version Control System**\n\n(UNDER ACTIVE DEVELOPMENT)\n\nHelix is a high-performance version control system designed for the AI-native developer workflow. Helix optimizes for **CPU parallelism**, **modern storage backends**, **LLM-generated code volume**, and **low-latency developer workflows**.\n\nHelix is built around a memory-mapped index, a parallel tree builder, BLAKE3 hashing, and efficient Zstd-compressed objects.\n\nBenchmarks show **20–100× speedups** over Git for operations like:\n\n- `helix add` on large directories\n- Building trees\n- Computing commits\n- Reading and writing the index\n\nHelix is designed to keep latency _flat_ even as repos grow.\n\nUnlike other VCSs that wrap Git, Helix is a new VCS with a clean architecture, aggressively optimized primitives, and a modern push/pull protocol.\n\nYou can import a Git repository, but Helix stores and transmits data in its _own_ native format.\n\n# **Architecture**\n\n```\n+-------------------+          +----------------+\n|  Helix CLI        |          | Helix Server   |\n|-------------------|   RPC    |----------------|\n| add/status/commit | \u003c------\u003e | push/fetch     |\n| build tree        |          | store objects  |\n| compute hashes    |          | update refs    |\n+-------------------+          +----------------+\n\n```\n\nHelix uses three core object types — **blobs, trees, commits** — stored in a new, compact, content-addressed format under:\n\n```\n.helix/\n  objects/\n    blobs/\n    trees/\n    commits/\n  refs/\n    heads/\n    remotes/\n  helix.idx   (memory-mapped index)\n```\n\n### **Push/Pull Protocol**\n\nHelix defines a custom RPC protocol optimized for speed and avoids Git's pack negotiation:\n\n- Binary, streaming frames\n- Zero round-trip negotiation\n- Efficient object transfer (commit/tree/blob)\n- Server implemented with Axum (Rust)\n- CLI sends objects incrementally, server responds with structured ACKs\n\n### **Extendability**\n\nHelix’s storage and index layers are intentionally simple and viewable:\n\n- Memory-mapped index file → instant load\n- Hash format: 32-byte BLAKE3 digests\n- Trees and commits stored uncompressed\n- Zstd-compressed blobs\n- Entire object store is filesystem-native (no packfile management)\n\nThis makes Helix ideal for:\n\n- AI-generated code workflows\n- Massive monorepos\n- Programmatic manipulation of history\n\n# **Project Status**\n\nHelix is **experimental** and under active development.\n\nWorking today:\n\n- Local VCS operations (status, add, commit, log)\n- Commit/tree/blob storage\n- Branch + HEAD management\n- Git → Helix importer\n- Push/pull with a running Helix server\n- TUI\n\nComing next:\n\n- Merge engine\n- Diffs + patch application\n- Conflict resolution\n- Smarter remote negotiation\n- Authentication\n- Multi-repo hosting\n- GUI + improved TUI\n\n---\n\n# Getting Started\n\n```sh\n# Start server\nHELIX_REPO_ROOT=/tmp/helix-server-data helix-server\n\n# In another directory\nhelix init\necho \"hello\" \u003e file.txt\nhelix add file.txt\nhelix commit -m \"first commit\"\n\n# Configure helix.toml\n[remotes]\norigin_push = \"http://127.0.0.1:8080\"\n\n# Push\nhelix push origin main\n```\n\n# Contributing\n\nHelix welcomes contributors interested in:\n\n- High-performance Rust\n- Version control internals\n- Storage engines\n- Network protocol design\n- UI/UX for developer tools\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevisdrenova%2Fhelix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevisdrenova%2Fhelix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevisdrenova%2Fhelix/lists"}