From common
GitHub PR 리뷰 코멘트를 가져와 우선순위 순으로 하나씩 검토하고, 사용자 승인 후 코드 수정까지 수행. "PR 리뷰 반영해줘", "코드리뷰 코멘트 처리해줘", "리뷰 적용해", "리뷰 피드백 수정해줘", "review comment 처리" 같은 요청에 반드시 이 스킬을 사용할 것.
How this skill is triggered — by the user, by Claude, or both
Slash command
/common:apply-reviewThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Python 설치
gh CLI 인증 완료python "${SKILL_DIR}/scripts/main.py" 실행 (SKILL_DIR은 이 스킬 파일이 위치한 디렉토리)아래 형식으로 출력 후 사용자에게 선택 요청:
## PR #N 리뷰 코멘트 목록
| # | 파일 | 문제 요약 | 난이도 |
|---|------|----------|--------|
| #N | `파일명:라인` | 한 줄 요약 | 🟢 쉬움 / 🟡 보통 / 🔴 복잡 |
...
💡 추천: #N - (추천 이유, 예: 버그 위험도가 높음 / 수정이 간단함)
어떤 코멘트부터 수정할까요? (번호 입력 또는 "추천대로")
아래 형식으로 요약 후 수정 여부 질문:
## Review Comment #N
**파일**: `경로/파일명:라인번호`
**문제**: (한 줄 요약)
### 문제 분석
- 현재 코드의 문제점 (코드까지 보여주면서 설명)
- 발생 가능한 영향 (예: 버그 발생, 성능 저하, 보안 취약점 등)
### 수정 방안
(구체적인 변경 내용 및 코드 예시)
수정할까요?
gh api graphql -f query='
mutation($threadId: ID!) {
resolveReviewThread(input: {threadId: $threadId}) {
thread { isResolved }
}
}
' -F threadId="<thread_id>"
(thread_id는 스크립트 출력에 포함된 값 사용)commit 스킬 사용을 안내commit 스킬 사용을 안내한다npx claudepluginhub gagip/gagip-dev --plugin commonReads open GitHub PR review comments, triages by severity, applies code fixes, and drafts replies. Use when addressing PR feedback or code review.
Triages PR review comments by filtering false positives (outdated, misread, wrong context, style preference), validating against current diff, and fixing actionable ones with per-fix confirmation.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.