소스 정보
- 저장소
- pheuter/svelte-check-rs
- 최근 소스 활동
- 2026년 2월 8일 14:47
- 감지된 SKILL.md 언어
- 영어
- 스타
- 135
- 포크
- 12
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/pheuter/svelte-check-rs --skill review-pr-comments명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | review-pr-comments |
| description | Review PR comments, analyze validity, and create action items |
Review pull request comments on the current branch's PR. Determine which to address in code and which to decline with a polite response.
!gh pr view --json number,title,url,headRepository,headRepositoryOwner,author,state,baseRefName,headRefName --jq '{number, title, url, repo: .headRepository.name, owner: .headRepositoryOwner.login, author: .author.login, state, base: .baseRefName, head: .headRefName}'
!read -r OWNER REPO NUMBER <<< "$(gh pr view --json number,headRepository,headRepositoryOwner --jq '"\(.headRepositoryOwner.login) \(.headRepository.name) \(.number)"')" && gh api graphql -f query="query { repository(owner: \"$OWNER\", name: \"$REPO\") { pullRequest(number: $NUMBER) { reviewThreads(first: 100) { nodes { id isResolved isOutdated path line comments(first: 50) { nodes { id databaseId body author { login } createdAt } } } } } } }" --jq ".data.repository.pullRequest.reviewThreads.nodes[] | {thread_id: .id, resolved: .isResolved, outdated: .isOutdated, path: .path, line: .line, comments: [.comments.nodes[] | {id: .databaseId, author: .author.login, body, created_at: .createdAt}]}"
!gh pr view --json comments --jq '.comments[] | {type: "top-level", id, author: .author.login, body, createdAt}'
!gh pr diff --name-only
Skip:
resolved: true) — unless user asks to review themPrioritize human reviewers over bot comments. Note outdated threads but still analyze them.
For each open, actionable comment:
Address if it identifies a bug, security issue, missing error handling, convention violation, or aligns with existing patterns.
Decline if it's over-engineering, out of scope, personal preference, premature optimization, or conflicts with project conventions.
Borderline cases — use AskUserQuestion to let the user decide.
One task per actionable comment using TaskCreate:
"Fix: {description}", include comment quote, author, file:line, specific action, and metadata: {comment_id, action: "code_change"}"Reply: {topic}", include comment quote, reasoning, draft reply, and metadata: {comment_id, action: "respond"}Show TaskList, then a summary table:
| Comment | Author | File | Decision | Task | Reason |
|---|---|---|---|---|---|
| Brief description | @user | path:line | Address/Decline | #id | Short reason |
Mention any resolved/skipped threads briefly below the table.
Use AskUserQuestion with these options:
Work through tasks: mark in_progress, execute, mark completed. Ask for clarification if anything is unclear.
Write replies as a teammate — conversational, direct, concise. Acknowledge valid points even when declining. Explain the "why", reference specific code or constraints. No formulaic openers. Match the reviewer's formality.
# Reply to review thread comment
gh api --method POST repos/{owner}/{repo}/pulls/{number}/comments/{comment_id}/replies -f body="Your reply"
# Reply to top-level comment
gh api --method POST repos/{owner}/{repo}/issues/{number}/comments -f body="@username Your reply"