fix(mistral-vibe): ship tar.gz for POSIX targets - #477
Merged
morgankrey merged 2 commits intoAug 5, 2026
Conversation
zip extraction strips macOS Python.framework symlinks, corrupting the bundle (exit status 255, slice is not valid mach-o file). tar.gz preserves symlinks and is already used by the Zed extension.toml since v2.23.1. Windows stays zip (no symlinks in Windows builds). sha256 hashes fetched from the v2.23.3 GitHub release API.
morgankrey
approved these changes
Aug 5, 2026
morgankrey
left a comment
Contributor
There was a problem hiding this comment.
Verified all four sha256 hashes against the live release assets, confirmed ./vibe-acp at archive root, confirmed the tarballs contain the Python.framework symlinks, and confirmed the upstream extension.toml already uses these URLs. LGTM.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
Zed downloads vibe-acp from this registry and extracts it with
async_zip, which strips macOSPython.frameworksymlinks. The binary then fails withexit status 255andslice is not valid mach-o file.The Zed extension.toml already ships
.tar.gzfor POSIX since v2.23.1 (6 releases ago) -async_tarpreserves symlinks. This PR aligns the registry entry with the extension.toml.Changes
.zipto.tar.gz