From git-onboarding
현재 git 상태를 분석하고 GitHub Flow 기준으로 다음 단계를 안내합니다. "다음에 뭐 해야 돼?", "워크플로우", "git 흐름" 같은 질문에 사용됩니다.
How this skill is triggered — by the user, by Claude, or both
Slash command
/git-onboarding:git-onboarding-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
현재 git 상태를 분석하고 다음 단계를 안내합니다.
현재 git 상태를 분석하고 다음 단계를 안내합니다.
아래 3개 명령어를 실행하세요:
git branch --show-current — 현재 브랜치git status --short — 작업 트리 상태git log @{u}.. --oneline 2>/dev/null — 미push 커밋 (upstream이 없으면 빈 결과)결과를 분석하여 아래 5가지 중 해당하는 상황을 안내하세요:
새 작업을 시작할 준비가 되었습니다.
git checkout -b feat/<기능명>
브랜치 이름은 feat/, fix/, chore/ 등 conventional 접두사를 사용하세요.
main에서 직접 작업한 내용이 있습니다. feature 브랜치로 옮기세요.
git stash
git checkout -b feat/<기능명>
git stash pop
작업 내용을 커밋하세요.
git add <파일들>
git commit -m "feat: 변경 내용 설명"
커밋 메시지는 conventional commits 형식을 따르세요.
원격에 push하고 PR을 생성하세요.
git push -u origin HEAD
gh pr create --fill
모든 변경이 push된 상태입니다. PR 상태를 확인하세요.
gh pr status
PR이 없다면 생성하세요: gh pr create --fill
npx claudepluginhub wo-o/git-for-everyone --plugin git-onboardingManages Git branch strategy, worktrees, commits, PR preparation, merge/rebase decisions, conflict resolution, tagging, and release notes. Validates state before making changes.
Guides Git workflows with branching strategies (GitHub Flow, Git Flow), conventional commit messages, branch naming, PR templates, and operations like rebase. Use for Git ops, commits, branches, team workflows.
Automates GitHub workflow: branching, committing, pushing, PRs, issues, and code review. Use when managing git operations or GitHub development lifecycle.