e3fb22a098
Provides a session dotfile ($AGENT_HOME/.env) that subsequent skills can source to inherit GH_CONFIG_DIR.
786 B
786 B
name, description
| name | description |
|---|---|
| agent-setup | Validate AGENT_HOME, derive GH_CONFIG_DIR, and export both to a session dotfile for use by other skills. |
Agent Setup Skill
Validates the AGENT_HOME environment variable, derives GH_CONFIG_DIR as $AGENT_HOME/.github, and exports both to a session dotfile so that child bash sessions and skills invoked in the same session inherit them.
Required Environment Variables
| Variable | Description |
|---|---|
AGENT_HOME |
The agent's home directory. Must be an absolute path. |
Usage
bash agent-setup/scripts/setup.sh
source ~/.env
Output
GH_CONFIG_DIRis set to$AGENT_HOME/.githuband exported- A dotfile (
~/.envinsideAGENT_HOME) is written withexport GH_CONFIG_DIR=...for session inheritance