feat(release): agentx release pipeline#3
Merged
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
GitHub windows-latest runner's Git Bash does not ship `zip` in PATH, so the windows packaging step exited 127 with "zip: command not found" during the agentx-v0.128.0-agentx.0 dry-run. windows-latest does have `7z` preinstalled, so probe both and use whichever is available. Linux/macOS still use `zip` (test harness unchanged, 4/4 tests pass). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Release job's `find ... > SHA256SUMS.tmp` pipeline created the tmp file eagerly (shell `>` redirect) before find ran, so find included SHA256SUMS.tmp in the file list and `e3b0c44...` (sha256 of empty string) ended up as a stale row. Verified by inspecting the agentx-v0.128.0-agentx.1 release's SHA256SUMS. Replace with a plain glob: `sha256sum agentx-* > SHA256SUMS`. All release artifacts are agentx-* prefixed, no temp file needed, shellcheck-clean. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Upstream codex's `pnpm format` runs prettier --check across .github/workflows/*.yml; multi-space alignment in `permissions:` and the chocolatey job's `env:` block was rejected. Run prettier --write to collapse to single spaces. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
.github/workflows/agentx-release.ymltriggered onagentx-v*.*.*tags. Builds 5 platform binaries (Linux x86_64/aarch64 musl, macOS aarch64/x86_64, Windows x86_64), signs+notarizes macOS artifacts via the existing upstreammacos-code-signaction, creates a GitHub Release, and gateswinget/choco/homebrewpublishing on stable releases.Makefiletargetagentx-releasefor safe version-bump + tag..github/chocolatey/) and Homebrew cask template (.github/homebrew/agentx.rb.template).windows-latestlackszip), and glob-based SHA256SUMS regeneration to avoid hashing a staleSHA256SUMS.tmp.Design / plan
Spec:
docs/superpowers/specs/2026-05-05-agentx-rebrand-and-release-design.mdin/root/agentserver.Plan:
docs/superpowers/plans/2026-05-05-agentx-rebrand-and-release.mdin/root/agentserver.Rebrand is packaging-layer only (binary file rename + package id). Source code is untouched; only
codex-rs/Cargo.tomlworkspaceversionfield bumps per release. Upstreamrust-release.ymlis left untouched and stays dormant.Validation
agentx-v0.128.0-agentx.1succeeded end-to-end. All 8 release assets present.__PLACEHOLDER__).Test plan
🤖 Generated with Claude Code