Evaluate a PR's title and description against its actual implementation, then iteratively suggest and apply updates. Use when the user asks to check, fix, or update a PR title or description.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Evaluate a PR's title and description against its actual implementation, then iteratively suggest and apply updates. Use when the user asks to check, fix, or update a PR title or description.
Update PR Description
Workflow
Resolve the PR. Use the number/URL the user provided. If none, look up the PR for the current branch with gh pr view.
Gather evidence:
gh pr view <pr> --json title,body
gh pr view <pr> --json commits (commit messages)
gh pr diff <pr> (full diff against base)
Evaluate divergence. Compare the stated title/description against what the commits and diff actually do. Only flag meaningful divergence (wrong scope, missing major changes, stale claims, inaccurate summary). Ignore trivial wording.
Report. Tell the user whether the title and/or description meaningfully diverges. If not, stop here.
Suggest iteratively. Propose concrete updated title/description. Ask the user one change at a time whether to apply, accept edits, and refine.
Apply. Once agreed, update on the user's behalf with gh pr edit <pr> --title ... --body ....
Notes
Match the repository's existing PR template/style if the body uses one.
Don't rewrite a description that's already accurate.
Update the state of checkboxes where appropriate.
Remove section placeholders/reminders when filling out a section.