git-onboarding-step
Installation
SKILL.md
Git 진행 상황 체크리스트
전체 10단계의 진행 상황을 확인하고 현재 단계를 안내합니다. 이 스킬은 상태만 보여주고, 실제 실행은 /git-onboarding-setup 또는 /git-onboarding-workflow에 위임합니다.
상태 수집
아래 명령어를 모두 병렬로 실행하세요:
which git— Git 설치 여부git config --global user.name— 사용자 이름git config --global user.email— 이메일which gh 2>/dev/null && echo "installed" || echo "none"— GitHub CLI 설치 여부gh auth status 2>&1— GitHub 인증 상태git rev-parse --git-dir 2>/dev/null && echo "repo" || echo "no-repo"— 저장소 여부git branch --show-current 2>/dev/null— 현재 브랜치git log --oneline -1 2>/dev/null— 커밋 존재 여부git log @{u}.. --oneline 2>/dev/null— 미push 커밋which gh >/dev/null 2>&1 && gh pr list --head "$(git branch --show-current 2>/dev/null)" --json number --jq '.[0].number' 2>/dev/null || echo "gh-unavailable"— PR 존재 여부