Conversation
GatewayChannel now sends both 'token' and 'password' fields in the auth
payload to support both authentication modes. Gateway checks the field
matching its auth.mode configuration ('token' or 'password').
Also adds config file password fallback for remote mode, allowing
gateway password to be configured in ~/.clawdis/clawdis.json without
requiring environment variables.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
…urrency - Add CLAWDIS_GATEWAY_PASSWORD to launchd plist environment - Read password from gateway.remote.password config in client - Fix Swift 6.2 sending parameter violations in config save functions - Add password parameter to GatewayConnection.Config type - GatewayChannel now sends password in connect auth params - GatewayEndpointStore and GatewayLaunchAgentManager read password from config - CLI gateway client reads password from remote config and env
dgarson
referenced
this pull request
in dgarson/clawdbot
Feb 4, 2026
chore: gateway health filtering and config options
dgarson
referenced
this pull request
in dgarson/clawdbot
Feb 22, 2026
15 tasks
franciscomaestre
added a commit
to franciscomaestre/openclaw
that referenced
this pull request
Jun 9, 2026
This pull request was closed.
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.
Fixes macOS app authentication when connecting to remote gateway with password-based auth.
Changes
tokenandpasswordfields in auth payload to support both auth modesgatewayPassword()method to read password from config filesignalandimessageto channel type unionBackground
The gateway supports two auth modes:
tokenandpassword. Whenauth.mode = "password", it expectsauth.password, but the macOS app was only sendingauth.token, causing "unauthorized" errors when connecting to remote gateways configured with password auth.Testing
ws://172.27.187.184:18789)~/.clawdis/clawdis.json🤖 Generated with Claude Code