EN DE
← ← Zurück zur Übersicht

github-auth

github › github-auth v1.1.0
GitHub Authentication Git gh-cli SSH Setup

Beschreibung

GitHub auth setup: HTTPS tokens, SSH keys, gh CLI login.

Relevanz für unsere Projekte

GitHub auth setup: HTTPS tokens, SSH keys, gh CLI login.

SKILL.md Preview

# GitHub Authentication Setup

This skill sets up authentication so the agent can work with GitHub repositories, PRs, issues, and CI. It covers two paths:

- **`git` (always available)** — uses HTTPS personal access tokens or SSH keys
- **`gh` CLI (if installed)** — richer GitHub API access with a simpler auth flow

## Detection Flow

When a user asks you to work with GitHub, run this check first:

```bash
# Check what's available
git --version
gh --version 2>/dev/null || echo "gh not installed"

← ← Zurück zur Übersicht