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
Restate the last message in plain human language, with no jargon.
testing
Fan out a batch of work items into one PR each via isolated worktree agents, review every PR before it opens, then babysit all PRs through green CI and review feedback. Use when the user wants to fan out PRs, dispatch parallel PR agents over a list of items, or run a batch of independent changes as separate PRs.
development
Dispatch user-visible coding or research agents through Herdr with Codex-Desktop-like thread ergonomics. Use when the user asks to use Herdr to spawn, dispatch, fan out, inspect, follow up with, or monitor agent workspaces/threads.
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.