feat: auth_logout, fix auth_select, clean up env handling#5
Merged
Conversation
- auth_logout: new tool + trait method for all 5 providers - auth_select: now actually switches active account (was just verify) - GitHub auth: explicit GH_TOKEN='' via run_cli_with_env, removed run_cli_clean_auth - GitHub login: auto-detects existing accounts, uses gh auth refresh - README: complete rewrite — clearer value prop, problem/solution framing, updated architecture diagram, auth broker docs, 33 tools - SKILL.md: added auth_logout to tool list
01eed71 to
3b18c7a
Compare
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.
Changes
New:
auth_logouttoolRevoke/logout an authenticated account. Implemented for all 5 providers:
gh auth logout --useraz logoutaws sso logout --profilegcloud auth revokekubectl config delete-contextFix:
auth_selectsemanticsWas just verifying a handle — now actually switches the active account:
gh auth switch --useraz account set --subscriptiongcloud config set accountkubectl config use-contextCleanup: GitHub auth env handling
run_cli_clean_authandauth_env_vars_to_clearfrom cli.rsrun_cli_with_envwith explicitGH_TOKEN=""— clean, no env var listsauth_loginauto-detects existing accounts and usesgh auth refreshfor scope additionsTool count: 33 (was 32)