feat: add gh-auth-isolation skill for multi-account GitHub workflows#470
Merged
bradygaster merged 1 commit intobradygaster:devfrom Mar 20, 2026
Merged
Conversation
Add skill teaching agents how to safely manage multiple GitHub identities (EMU corporate + personal accounts) in agent workflows. Patterns covered: - Detect current identity with gh auth status - Extract specific account tokens with gh auth token --user - Push to personal repos from EMU shell sessions - Create PRs on personal forks with correct auth context - Config directory isolation (GH_CONFIG_DIR) for full separation - Shell aliases (ghp/ghe) for quick account switching Earned from 50+ production sessions managing EMU corp and personal GitHub accounts in Squad agent workflows. Complements the existing secret-handling skill. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15719e5 to
831acf0
Compare
chrislomonico
pushed a commit
to clomonico/squad
that referenced
this pull request
Mar 26, 2026
…ster#470) Exit now shows duration and agents used when at least one message was sent. Format: '-- Squad out. 8 min with Keaton, Fenster. 12 messages.' Falls back to plain '-- Squad out.' if no messages were exchanged. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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.
Adds a new skill teaching agents how to safely manage multiple GitHub identities (EMU + personal) in agent workflows. Earned from 50+ production sessions. Covers: token extraction (gh auth token --user), push to personal repos from EMU shells, fork PR creation, config directory isolation (GH_CONFIG_DIR), shell aliases, and anti-patterns around token leakage. Complements the existing secret-handling skill.