From github-dev
This skill should be used when user asks to "update PR summary", "update PR description", "rewrite PR body", "refresh PR title and body", or explicitly invokes "update-pr-summary".
npx claudepluginhub funsaized/claude-and-codex-settings --plugin github-devThis skill uses the workspace's default tool permissions.
Update a PR title and description based on the complete changeset.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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 "...".