Install
openclaw skills install gh-modify-prModify code based on GitHub PR review comments and create a local commit using gh + git. Use when the user asks to "follow PR comments", "fix review comments", "update this PR", or provides a PR URL and asks for edits/commit.
openclaw skills install gh-modify-prUse this workflow for PR-comment-driven changes.
https://github.com/owner/repo/pull/123gh pr view <url> --json number,title,headRefName,baseRefName,files,reviews,reviewDecisiongh api repos/<owner>/<repo>/pulls/<number>/commentsgit clone git@github.com:<owner>/<repo>.gitgh pr checkout <number>git add <files>git commit -m "<clear message>"git push# PR meta
gh pr view <url> --json number,title,headRefName,baseRefName,files,reviews,reviewDecision
# Inline review comments
gh api repos/<owner>/<repo>/pulls/<number>/comments
# Checkout PR branch (inside repo)
gh pr checkout <number>
# Status and commit
git status --short
git add <files>
git commit -m "chore: address PR review comments"
<url><n><path>: <summary><hash><branch>yes/no