modules/programs/agents/shared/skills/update-pr-title/SKILL.md
Set the current PR's title to the best-fitting conventional-commit title based on the actual changes. Flags when the choice was hard, since that often means the PR is doing too much.
npx skillsauth add MichaelVessia/nixos-config update-pr-titleInstall 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.
gh pr view --json number,title,url,files,commits,baseRefName 2>/dev/null || echo "No PR found"Pick the single best conventional-commit title for the current PR and apply it.
gh pr diff to inspect the actual changes.Pick the type that describes the dominant intent of the PR. Do NOT default
to feat.
feat — new user-facing functionalityfix — bug fixrefactor — restructuring without behavior changeperf — performance improvementdocs — documentation onlytest — adding or updating tests onlychore — maintenance, dependency bumps, configci — CI/CD pipeline changesbuild — build system / toolingstyle — formatting, whitespace, naming (no logic change)Decision rules:
feat commit beats five chore commits if the feature is
the point.fix, not test.fix if the bug fix is the
reason the PR exists, otherwise refactor.Use a concise scope only when it's obvious from the touched paths (e.g. one package, module, or feature area). Skip the scope rather than invent one.
<type>(<scope>): <summary> or <type>: <summary> if no scope.If picking the type was genuinely hard, say so out loud before applying. The decision counts as hard when any of these is true:
In that case, output a short note like:
Heads up: this PR is split between
feat(auth provider) andrefactor(logger cleanup). Consider splitting into two PRs. Pickingfeatsince the auth work is the stated goal.
Then proceed with the chosen title. Do not block on this — the user can split the PR themselves if they agree.
gh pr edit --title "<chosen title>"
Report the new title and (if flagged) the scope concern.
development
Generate self-contained HTML visualizations with Plannotator theming. Use for implementation plans, PR explainers, architecture diagrams, data tables, slide decks, and any visual explanation of technical concepts. Plans and PR explainers follow Plannotator's prescriptive approach; all other visual content delegates to nicobailon/visual-explainer.
development
Turn an idea or objective into a goal package for /goal. Interviews the user, builds a reviewed fact sheet via Plannotator, then explores the codebase to produce an execution plan.
development
Open Plannotator's browser-based code review UI for the current worktree or a pull request URL, then act on the feedback that comes back.
testing
Open Plannotator on the latest rendered assistant message and use the returned annotations to revise that message or continue.