원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
| 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.