fix: correct claude CLI auth self-test flag in start-cloud.sh#124
Merged
Conversation
--no-streaming is not a valid claude CLI flag (caused 'unknown option' error in startup logs). Use the correct print-mode flags so the startup auth test gives a real signal: claude -p '...' --output-format text --dangerously-skip-permissions Verified locally: returns exactly SATELINK_AUTH_OK. The container runs as root with IS_SANDBOX=1, hence --dangerously-skip-permissions. Note: credentials.json write (PR #123) already succeeded in-container per logs; this only fixes the diagnostic self-test that was a false negative.
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Follow-up to #123. The startup auth self-test used
--no-streaming, which is not a valid claude CLI flag — container logs showederror: unknown option '--no-streaming', a false negative.This uses the correct print-mode invocation (verified locally returns
SATELINK_AUTH_OK):--dangerously-skip-permissionsbecause the container runs as root withIS_SANDBOX=1.The credentials.json write from #123 already succeeded in-container (confirmed in logs); this only makes the diagnostic self-test report a true result.