fix(ci): re-add @agent-relay/cloud to publish-packages matrix#791
Merged
willwashburn merged 1 commit intomainfrom Apr 25, 2026
Merged
fix(ci): re-add @agent-relay/cloud to publish-packages matrix#791willwashburn merged 1 commit intomainfrom
willwashburn merged 1 commit intomainfrom
Conversation
@agent-relay/cloud is a workspace in this repo that was historically published to npm at the lockstep version, until commit c8c8dad ("additional clean", Jan 27 2026) silently dropped it from the publish-packages matrix. The workspace kept getting version-bumped to stay in lockstep but was never republished, so the registry's latest \`@agent-relay/cloud\` froze at 2.0.23 while the workspace climbed to 6.0.1. Under the previous bundled architecture this was invisible — the workspace cloud got bundled into the agent-relay tarball, never fetched from the registry. After #788 unbundled @agent-relay/*, the CLI's regular dep on @agent-relay/cloud@<lockstep> began failing with ETARGET because that version didn't exist on npm. The npm registry's @agent-relay/cloud@2.0.23 lists its repository as this repo, packages/cloud — confirming it's the same codebase, just stale. There is no namespace collision; the only fix needed is to restart publishing. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
barryollama
approved these changes
Apr 25, 2026
barryollama
left a comment
There was a problem hiding this comment.
LGTM
One-line fix restoring @agent-relay/cloud to the publish matrix. The CI-only change correctly addresses the root cause — the package stopped publishing at 2.0.23 while the workspace continued versioning to 6.0.1.
Approving the targeted fix over #790's approach of re-bundling, which would perpetuate tech debt and add 2.5MB to the tarball.
Good catch on the silent regression from c8c8dad.
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
agent-relay@6.0.1shipped broken because installing it failed with:@agent-relay/cloudis a workspace in this repo (`packages/cloud/`) that was historically published to npm at the lockstep version. Commit `c8c8dad5` ("additional clean", Jan 27 2026) silently dropped `- cloud` from the `publish-packages` matrix in `.github/workflows/publish.yml`. The workspace kept getting version-bumped to stay in lockstep with every release but was never republished, so the registry's latest `@agent-relay/cloud` froze at `2.0.23` while the workspace climbed to `6.0.1`.Under the previous bundled-everything architecture this was invisible — the workspace cloud got bundled into the agent-relay tarball at pack time, and users' `npm install` got it from the bundle without ever consulting the registry. After #788 unbundled `@agent-relay/*`, the CLI's regular dep on `@agent-relay/cloud@` began going to the registry like every other internal dep, where the lockstep version didn't exist.
Fix
One line: re-add `- cloud` to the publish-packages matrix.
matrix: package: - policy - memory - utils - trajectory - hooks - user-directory - config + - cloud - sdk - telemetry ...Why this is the right fix (not bundling)
The npm registry's `@agent-relay/cloud@2.0.23` declares its `repository` as this repo, `packages/cloud`. It's the same code base, just stale. There's no namespace collision and no other repo owns this name — the only thing that broke was the publish step.
#790 tried to fix this by adding `@agent-relay/cloud` back to `bundledDependencies`. That works around the symptom but freezes the bundling architecture for one workspace, costs ~2.5 MB of tarball size (cloud's @aws-sdk/client-s3 transitive deps), and reintroduces a special case we just spent #788 eliminating. Closing #790 in favor of this.
Test plan
🤖 Generated with Claude Code