A Claude Code skill (slash command) to open a PR after committing all outstanding changes and pushing them.
--- allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git push:*), Bash(gh pr create:*) description: 모든 것을 커밋하고 푸시한 다음 main으로 PR 요청을 엽니다 --- ## 컨텍스트 - 현재 git 상태: !`git status` - 현재 git diff (스테이징된 변경 사항 및 스테이징되지 않은 변경 사항): !`git diff HEAD` - 현재 브랜치: !`git branch --show-current` - 최근 커밋: !`git log --oneline -10` ## 당신의 작업 1. 기존 변경 사항을 검토한 다음, 기존 co에 따라 git 커밋을 생성합니다...