fix(cli): atlas issues-log UX batch (version verb, show alias, headless-honest messages, write-denial hint, OCI retry) - #608
Merged
Conversation
…eadless-honest auth, write-denial hint, OCI retry Five papercuts that each cost a live headless bootstrap real time: - `orun version` exists (E1): erroring on the spelling every other CLI accepts read as a broken install and triggered a needless reinstall. - `orun workspace show`/`current` = the bare local show (E8): the remote resolver treated them as workspace NAMES and asked the backend for GET /organizations/show. - `orun auth status` with ORUN_TOKEN set reports headless auth instead of 'not logged in' (E7); errNotLoggedIn stops suggesting 'set ORUN_TOKEN' when it IS set and explains what the token cannot do. - secrets write not_found hint (A2): resource-hiding masks authz as not_found — the hint now says the likely truth (role below the ADMIN write floor; reads working prove the scope exists) instead of sending operators to check a scope that is fine. - OCI ref resolve retries transient 5xx/timeouts ×3 with backoff (C3): a single GHCR 503 took down a whole apply and poisoned its retry. Co-Authored-By: Claude Fable 5 <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.
Five fixes from the atlas bootstrap post-mortem, each behaviorally verified:
orun versionsubcommand (the missing spelling caused a needless reinstall mid-bootstrap).orun workspace show|currentaliases the bare local show instead of resolving a workspace literally named "show".auth statusreports✓ headless: authenticated via ORUN_TOKENwhen the env token is set;errNotLoggedInno longer suggests setting a token that is already set and explains the actual gap.not_foundhint tells the truth: denials are hidden as not_found; reads working = the scope exists = the key's role is below the ADMIN write floor.🤖 Generated with Claude Code