feat: unified workspace ID across relay services#664
Merged
Conversation
- AgentRelay accepts workspaceId option to link relaycast, relayfile, and relayauth to the same rw_ workspace ID - Workspace registry persists mappings in .relay/workspaces.json - persistWorkspaceMapping stores relaycast API key + relayfile URL per workspace ID - Enables: agent-relay on --workspace rw_xxx (join existing workspace) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Take main's safety improvements: try/catch on persistWorkspaceMapping, mode 0o600 on registry file write - Fix verifyChecksum to follow HTTP redirects (GitHub release URLs 302) - Clean up duplicate try-catch nesting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
| const checksumContent = await new Promise((resolve, reject) => { | ||
| const fetchWithRedirects = (url, remaining = 5) => { | ||
| const chunks = []; | ||
| const request = https.get(url, res => { |
Check warning
Code scanning / CodeQL
File data in outbound network request Medium
Keep deprecation warning for workspaceName without workspaceId from main. Fix Devin review: resolve relative redirect URLs in verifyChecksum's fetchWithRedirects to match downloadBinary behavior. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…etch Add res.resume() before rejecting on the too-many-redirects path in verifyChecksum's fetchWithRedirects to prevent TCP socket leaks. Co-Authored-By: Claude Opus 4.6 (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
workspaceIdoption to link relaycast, relayfile, and relayauth to the samerw_workspace ID.relay/workspaces.jsonagent-relay on --workspace rw_xxxfor joining existing workspaces across machinesChanges
packages/sdk/src/relay.ts— workspaceId option, workspace registry, mapping persistencescripts/postinstall.js— updated for workspace supportHow it works
One
rw_ID used by relaycast (messaging), relayfile (files), and relayauth (auth).Test plan
🤖 Generated with Claude Code