소스 정보
- 저장소
- gittower/git-flow-next
- 최근 소스 활동
- 2026년 7월 19일 07:53
- 감지된 SKILL.md 언어
- 영어
- 스타
- 431
- 포크
- 28
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/gittower/git-flow-next --skill pr-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Run the full release process end-to-end - prep, tag, CI verification, Homebrew tap, WinGet verification, and website sync
Handle a small fix or maintenance task locally end-to-end — no PR, but full review gates and a confirmed local merge into main
Fully solve a small issue end-to-end — resolve, publish the PR, run two Copilot review rounds, address them, and merge when confident. Escalates to the user on anything uncertain.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | pr-review |
| description | Create a GitHub PR review with inline comments, preview before posting |
| argument-hint | <PR number> |
| allowed-tools | Read, Write, Grep, Glob, Bash, mcp__github__get_pull_request, mcp__github__get_pull_request_files, mcp__github__create_pull_request_review |
Create a GitHub PR review with summary and inline diff comments. Writes to a file for preview — never posts automatically.
/pr-review <PR number> [--output path]
<PR number> — required, the PR to review (e.g., 74, #74)--output path or -o path — optional, where to write the review fileParse Arguments
$ARGUMENTS (strip # prefix if present)--output / -o flagGather PR Information
gh pr view <number> --json title,author,baseRefName,headRefName,headRefOid,number
gh pr diff <number>gh pr view <number> --json commits --jq '.commits[] | "\(.oid[:7]) \(.messageHeadline)"'
Look for Existing Code Review
Check if a /code-review has already been written for this PR:
feature/69-... → 69).ai/issue-<number>-*/review-pr<number>-*.md.ai/pr-<number>/review-*.mdIf found, read it and use it as the basis for the GitHub review — distill the findings into the concise posting format. You still need the diff to map inline comments to correct line numbers.
If not found, perform a fresh review:
Determine Review Event
Based on findings:
APPROVE — no issues, or nits onlyCOMMENT — only "should fix" or informational itemsREQUEST_CHANGES — any "must fix" itemsMap Inline Comments to Diff Lines
For each finding that warrants an inline comment:
Keep inline comments concise — one finding per comment. The summary provides the overview; inline comments provide the specifics.
Determine Output Location
HEAD_SHA=$(gh pr view <number> --json headRefOid --jq '.headRefOid' | cut -c1-7)
FILENAME="pr-review-${HEAD_SHA}.md"
If --output / -o was provided:
.ai/, use it directly as the folder.ai/<folder>/<filename>If no --output:
.ai/issue-<number>-* folder.ai/pr-<number>/<folder>/<filename>Write Review File
Use this exact format:
---
pr: <number>
event: <APPROVE|COMMENT|REQUEST_CHANGES>
---
<Opening: get straight to the point. Lead with the required changes,
not generic praise ("solid change") or a re-summary of the PR. If nothing
blocks merge, say so plainly. See GITHUB_GUIDELINES.md.>
**Must Fix**
- <finding> — `file:line` — <brief explanation>
**Should Fix**
- <finding> — `file:line` — <brief explanation>
**Nit**
- — —
Report to User
When the user asks to post the review (e.g., "post it", "submit the review"):
pr number and event type## Inline Comments)## Inline Comments section:
### \file:line`` header defines a comment### or end) is the comment textmcp__github__create_pull_request_review with:
pull_number from frontmatterevent from frontmatterbody = the review summary textcomments = array of {path, line, body} from parsed inline commentsFormat rules:
**Must Fix**), not headings### \file:line`` for parseability