skills/rename-pr/SKILL.md
Analyze the changes in the current PR and suggest a more accurate title if the current one no longer fits
npx skillsauth add stevenmburns/dot-claude-files rename-prInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze the current PR's changes and evaluate whether the title still accurately describes what is being done.
gh pr view --json number,title,body to get the current PR title and descriptiongit log main..HEAD --oneline and git diff main...HEAD --stat to understand the full scope of changesgh pr edit --title "<new title>" and report the updated title.tools
Scan open GitHub issues, flag duplicates, and summarize with suggested priorities
testing
Interactively clean up the current branch's commits (squash fixups, reword sloppy messages, reorder, drop) before merging — especially important on repos using rebase-merge where every branch commit lands on main verbatim
data-ai
Merge the open PR for the current branch into main, delete the branch, and pull main
development
Clone the current repo into a sibling directory with a fresh Python venv