원클릭으로
resolve
// Resolve PR review comments by fetching unresolved feedback and making necessary code changes
// Resolve PR review comments by fetching unresolved feedback and making necessary code changes
Review a GitHub pull request and emit a validated local review payload (comments + approval decision)
Analyze failed GitHub Action jobs for a pull request.
Configure MLflow tracing for Claude Code.
Show the current MLflow tracing configuration for Claude Code.
Add a review comment to a GitHub pull request.
Fetch PR diff with filtering and line numbers for code review.
| 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