Claude-codex-settings update-pr-summary
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".
install
source · Clone the upstream repo
git clone https://github.com/fcakyon/claude-codex-settings
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/fcakyon/claude-codex-settings "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/github-dev/skills/update-pr-summary" ~/.claude/skills/fcakyon-claude-codex-settings-update-pr-summary && rm -rf "$T"
manifest:
plugins/github-dev/skills/update-pr-summary/SKILL.mdsource content
Update PR Summary
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.
Process
-
Fetch PR info
- Use
.gh pr view <pr> --json title,body,baseRefName,headRefName
- Use
-
Analyze the complete changeset
- Use
to review all committed changes in the branch.git diff <base-branch>...HEAD - Ignore unstaged changes.
- Make the summary describe the full branch diff, not just the latest commit.
- Use
-
Generate the updated summary
- Follow the
skill format for title and body.create-pr - Start the title with a capital letter and a verb, with no
orfix:
prefix.feat: - Use plain language. Avoid jargon and internal shorthand unless an exact command or tool name is needed.
- Keep the body to a single short section.
- Include 1-2 sentences, a few bullets, and one usage snippet or before/after example when helpful.
- Do not include test plans, changed file lists, or line-number links.
- Follow the
-
Apply the update
- Use
.gh pr edit <pr> --title "..." --body "..."
- Use