From github-dev
Rewrites a PR title and description by analyzing the full branch changeset. Automates summary generation using git diff and gh CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-dev:update-pr-summaryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Update a PR title and description based on the complete changeset.
Update a PR title and description based on the complete changeset.
When explicitly invoked with extra text, treat that text as the PR number or URL.
Fetch PR info
gh pr view <pr> --json title,body,baseRefName,headRefName.Analyze the complete changeset
git diff <base-branch>...HEAD to review all committed changes in the branch.Generate the updated summary
create-pr skill format for title and body.fix: or feat: prefix.Apply the update
gh pr edit <pr> --title "..." --body "...".npx claudepluginhub fcakyon/claude-codex-settings --plugin github-devUpdates a pull request's title and description to match the full implementation by analyzing the entire diff against the base branch.
Updates existing GitHub pull request descriptions with AI-generated content from current jj diffs. Use to refresh PRs, sync with changes, or regenerate summaries and bullet-point change lists.
Generates and updates PR titles and descriptions from git diffs and commit history. Reads branch diffs, applies PR templates, checks CI status, and creates/edits PRs via gh CLI.