fix(cortex-code): bump to v1.0.73 and fix binary cmd path#281
Merged
benbrandt merged 2 commits intoagentclientprotocol:mainfrom May 4, 2026
Merged
Conversation
Update cortex-code/agent.json from v1.0.58 to v1.0.73 (1.0.73+180523.e6179a031de9) across all 6 platforms. Also fix the cmd field to include the versioned subdirectory that the tarball extracts into (e.g. coco-1.0.73+180523.e6179a031de9-darwin-arm64/cortex) instead of the previously incorrect ./cortex. .... Generated with [Cortex Code](https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code) Co-Authored-By: Cortex Code <noreply@snowflake.com>
090ea59 to
d1516fc
Compare
Contributor
Author
|
@yeskunall the issue has been fixed here. Please review and merge. |
Contributor
Author
|
@benbrandt thanks for merging this, and I see the tar extraction is good but the command need to be relative path in agent.json fixed in here can you please merge it #282 |
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.
Summary
v1.0.58tov1.0.73(1.0.73+180523.e6179a031de9) across all 6 platformscmdpath that causedMissing command .../cortex after extractionon clean Zed installs (reported in Cortex Code agent fails to launch with "missing command" error zed-industries/zed#55356, root-caused in feat: add Snowflake Cortex Code to ACP registry #242)Root cause
The Cortex Code tarball extracts into a versioned subdirectory:
Zed resolves
cmdrelative to the extraction root (<version_dir>), so"./cortex"pointed to<version_dir>/cortexwhich does not exist. The binary actually lands at<version_dir>/coco-{version}-{platform}/cortex.Fix
Updated
cmdfor all 6 platforms to include the versioned subdirectory prefix:darwin-aarch64./cortexcoco-1.0.73+180523.e6179a031de9-darwin-arm64/cortexdarwin-x86_64./cortexcoco-1.0.73+180523.e6179a031de9-darwin-amd64/cortexlinux-x86_64./cortexcoco-1.0.73+180523.e6179a031de9-linux-amd64/cortexlinux-aarch64./cortexcoco-1.0.73+180523.e6179a031de9-linux-arm64/cortexwindows-x86_64./cortex.execoco-1.0.73+180523.e6179a031de9-windows-amd64/cortex.exewindows-aarch64./cortex.execoco-1.0.73+180523.e6179a031de9-windows-arm64/cortex.exeTest plan
curl | tar -tzf -)cmdpath on darwin-arm64: extracted to temp dir and executedcoco-1.0.73+180523.e6179a031de9-darwin-arm64/cortex --version→Cortex Code v0.26.04301.0.58references remain inagent.jsonpython3 -m json.tool).... Generated with Cortex Code
Co-Authored-By: Cortex Code noreply@snowflake.com