一键导入
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.