feat: add oclaw pair command for mobile QR pairing#2
Open
Conversation
Generates a QR code containing gateway connection details (LAN IP, port, token) that the upcoming oclaw mobile app can scan to connect instantly. - Detects LAN IP with preference for physical interfaces (en*/eth*) - Supports --host flag to override auto-detection - Masks token in terminal output for security - Uses PersistentFlags so subcommands inherit --url/--token/--agent
The gateway requires Ed25519 device signing to grant operator scopes. The pair command now reads ~/.openclaw/identity/device.json and includes the device ID and private key seed in the QR URI so the mobile app can authenticate with full permissions.
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
oclaw pairsubcommand that displays a QR code for pairing the oclaw mobile appoclaw://URI with LAN IP, gateway port, and auth tokenPersistentFlagsso subcommands inherit--url/--token/--agentDetails
en*/eth*) over Docker/VPN/virtual adapters--hostflag allows manual override when auto-detection picks the wrong interfaceurl.URL/url.Valuesfor correctnessgithub.com/skip2/go-qrcodeTest plan
oclaw pairprints a scannable QR codeoclaw pair --host 10.0.0.1overrides auto-detected IPoclaw pair --url ws://remote:9999 --token mytokenrespects flag overridesoclaw(root command) still works with the PersistentFlags change