원클릭으로
resolve
Resolve PR review comments by fetching unresolved feedback and making necessary code changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Resolve PR review comments by fetching unresolved feedback and making necessary code changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | resolve |
| description | Resolve PR review comments by fetching unresolved feedback and making necessary code changes |
| disable-model-invocation | true |
| allowed-tools | Skill, Read, Edit, Write, Glob, Grep, Bash |
| argument-hint | [extra_context] |
Automatically fetch and address PR review comments. This command examines review feedback and makes necessary code changes to resolve the issues.
/resolve [extra_context]
extra_context (optional): Additional instructions or filtering context (e.g., focus on specific files or issue types)/resolve # Address all unresolved PR comments
/resolve Focus on type hint issues only # Filter specific comment types
/resolve Skip comments from automated bots # Apply custom filtering
/resolve Only resolve comments in mlflow/tracking/ # Focus on specific directories
Auto-detect PR context:
PR_NUMBER and GITHUB_REPOSITORY are set, read them and parse GITHUB_REPOSITORY as owner/repo and use PR_NUMBER directlygh pr view <PR_NUMBER> --repo <owner/repo> --json 'title,body' to retrieve the PR title and descriptiongh pr view --json 'title,body,url,number' to get PR info for the current branchFetch unresolved review comments:
fetch-unresolved-comments skill to get only unresolved review threadsApply additional filtering from user instructions if provided (e.g., focus on specific files or issue types)
For each unresolved review comment:
After making all changes, run pre-commit on changed files:
pre-commit run --files <changed files> to lint and auto-fix formatting until it passes