feat: export Epsilon agent env vars in zshrc#74
Merged
Conversation
Exports CLAUDE_GH_APP_ID and CLAUDE_GH_APP_PRIVATE_KEY_PATH so Claude Code can mint GitHub App installation tokens via ~/.claude/scripts/gh-app-token.sh. Neither value is sensitive — the App ID is public metadata, and the path just points to a file that lives outside any repo (chmod 600 under ~/.claude/secrets/). The private key itself never touches this repo. See https://github.com/amcheste-ai-agent/epsilon-agent for the full ownership model and setup walkthrough. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Owner
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
CLAUDE_GH_APP_IDandCLAUDE_GH_APP_PRIVATE_KEY_PATHexports todotfiles/zshrcso Claude Code can mint GitHub App installation tokens via~/.claude/scripts/gh-app-token.sh..pemstored outside any repo under~/.claude/secrets/(chmod 600). The private key never touches the repo.Test plan
source dotfiles/zshrc— no errors, both env vars set in the shell[ -r "$CLAUDE_GH_APP_PRIVATE_KEY_PATH" ]returns true on a machine with the key installedshellcheck dotfiles/zshrcstill passesCo-authored by Epsilon. Authored by Claude Opus 4.7 (1M context).