github-ssh-token-workflow
Installation
SKILL.md
GitHub SSH + Token Workflow
Key Learning
SSH authentication ≠ gh CLI authentication
- SSH (git push/pull): Works with SSH keys only
- gh CLI (API operations like creating repos): Requires personal access token
- git operations (clone, push, pull, fetch): Can use SSH keys
When to Use What
SSH Keys (git operations)
git clone git@github.com:user/repo.git
git push
git pull