From ccpp
Automates Git commit with conventional messages, push to feature branch, and GitHub PR creation. Performs branch safety checks, sensitive file warnings, and status previews. Ideal for rapid PR workflows on non-main branches.
npx claudepluginhub jh941213/my-cc-harness --plugin ccppThis skill is limited to using the following tools:
현재 변경사항을 커밋하고 푸시한 후 PR을 생성합니다.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
현재 변경사항을 커밋하고 푸시한 후 PR을 생성합니다.
# 현재 브랜치 확인 — main/master면 STOP
BRANCH=$(git branch --show-current)
if [ "$BRANCH" = "main" ] || [ "$BRANCH" = "master" ]; then
echo "BLOCKED: main/master 브랜치에서 직접 커밋 금지"
exit 1
fi
# 상태 확인
git status
git diff --stat
git log --oneline -5
# 민감한 파일이 staged 되었는지 검사
git diff --cached --name-only | grep -E '\.(env|pem|key|credentials)' && echo "WARNING: 민감 파일 포함!"
# 변경 파일 선택적 staging (git add -A 지양)
git add [specific-files]
# 커밋 메시지 작성
git commit -m "$(cat <<'EOF'
[타입] 제목 (50자 이내)
본문 (선택 — 무엇이 아닌 왜를 설명)
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
타입: feat, fix, docs, style, refactor, test, chore
# 원격 브랜치 설정 + 푸시
git push -u origin $(git branch --show-current)
gh pr create --title "[타입] 제목" --body "$(cat <<'EOF'
## 요약
- 변경 내용 1
- 변경 내용 2
## 테스트
- [ ] typecheck 통과
- [ ] lint 통과
- [ ] test 통과
EOF
)"
완료 시 PR URL을 반환합니다.