
Pr With Review
- 1 installs
- Updated May 8, 2026
- dndacademy/dnd-design-system
Creates a PR while triggering automatic AI inline code review via a hook, then applies review comments and replies to each (Korean).
About
Creates a PR in the dnd-design-system monorepo while triggering automatic AI inline code review via a hook. A developer uses it to open a PR and get review comments in one step.
- Creates a PR and triggers automatic AI inline code review via a hook
- Prompts to apply review comments and replies to each one
Pr With Review by the numbers
- 1 all-time installs (skills.sh)
- Ranked #527 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Jul 8, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dndacademy/dnd-design-system --skill pr-with-reviewAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 8, 2026 |
| Repository | dndacademy/dnd-design-system ↗ |
What it does
Creates a PR while triggering automatic AI inline code review via a hook, then applies review comments and replies to each (Korean).
Files
pr-with-review
pr 스킬과 동일하지만, gh pr create 명령 끝에 # ai-review 주석을 붙여 자동 인라인 코드 리뷰까지 함께 받는다.
# ai-review 는 shell 주석이라 명령 실행에는 영향이 없다. 이 레포의 .claude/settings.json 에 등록된 PostToolUse:Bash 훅(.claude/hooks/pr-review.js)이 이 마커를 감지해 작동한다.
스텝 1~5: pr 스킬과 동일
pr 스킬의 모든 절차(템플릿 읽기 → diff 분석 → 제목/본문 생성 → 푸시)를 그대로 따른다. 마지막 gh pr create 만 다음과 같이 바꾼다.
gh pr create \
--assignee @me \
--title "<제목>" \
--body "$(cat <<'EOF'
<...pr 스킬 스텝 4 의 본문...>
EOF
)" # ai-review스텝 6: 리뷰 결과 확인
gh pr create 직후 리뷰 결과 파일을 확인한다.
cat /tmp/pr-review-pending.json 2>/dev/null파일이 존재하면 `AskUserQuestion` 으로 다음 행동을 묻는다.
question: "리뷰 코멘트가 등록됐어요. 어떻게 할까요?"header: "리뷰 반영"multiSelect: falseoptions:코드를 수정하고 각 코멘트에 답글 달기 (Recommended)URL 만 받고 직접 처리
"수정 + 답글" 선택 시:
1. comments 배열의 각 항목에서 파일·라인을 읽고 코드 수정 2. 각 코멘트에 수정 완료 답글 (gh api .../replies) 3. 완료 후 /tmp/pr-review-pending.json 삭제
절차 개선 — 막히는 지점이 있었다면
이 스킬을 쓰다가 절차가 부족하거나 표현이 모호하다고 느낀 부분이 있으면 짧게 메모해두자. 흐름은 그대로 진행하고, 세션 종료 후 skill-admin 으로 본 스킬을 갱신한다.
메모 위치: 채팅 "메모: <내용>" 한 줄 또는 .claude/skill-notes/<스킬명>.md (gitignore 권장).