ワンクリックで
pr-title-description
Write or update a PR title and description for the current branch, matching the style of recent PRs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Write or update a PR title and description for the current branch, matching the style of recent PRs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Review PR changes for missing or outdated documentation, comments, and doc site content.
Audit the codebase for code quality, DRY violations, modularity, LaTeX/asm parity, doc freshness, and doc structure.
Create a placeholder PR from the current branch to warm CI caches.
SOC 職業分類に基づく
| name | pr-title-description |
| description | Write or update a PR title and description for the current branch, matching the style of recent PRs. |
| disable-model-invocation | true |
| user-invocable | true |
pr-title-descriptionWrite (or update) the title and description for the pull request on the current branch.
Identify the current branch and its PR
(if one exists) using
gh pr list --head <branch>.
Get the full diff against main:
git diff main..HEAD and
git log main..HEAD --oneline.
Fetch the body of the 3 most recent merged PRs to match their style:
gh pr list --state merged --limit 3 \
--json number,title,body
Write the PR title using the Semantic PR / Conventional Commits format:
<type>(<scope>): <short summary>
feat, fix, refactor,
test, docs, ci, chore, perf,
build, or style.ENG-254). If the branch
has no ticket ID, use the most relevant
module or area instead.Examples:
feat(ENG-123): Add frame offset scaffolding and SBPF config sourcingfix(ENG-456): Correct off-by-one in order matchingdocs(ENG-789): Add algorithm index pageWrite a concise PR description that mirrors
the format and tone of those recent PRs.
Typically this means a # Changes section
with a numbered list. Add a # Background
section only if the changes need non-obvious
context.
If a PR already exists for the branch, update
it with gh pr edit <number> --body "...".
If the PR is in draft mode, also mark it ready
for review with gh pr ready <number>.
Otherwise, report the description so the user
can create the PR.
Show the user the PR URL when done.