Agent SkillsTanStack/ai › pr-description

pr-description

GitHub

自动分析代码差异,生成符合仓库规范的 GitHub PR 标题和正文。支持在创建或编辑 PR 时触发,确保描述准确且遵循简单英语风格。

.agents/skills/pr-description/SKILL.md TanStack/ai

Trigger Scenarios

用户要求编写 PR 描述或标题 执行 gh pr create 前 向已有 PR 的分支推送代码后

Install

npx skills add TanStack/ai --skill pr-description -g -y
More Options

Non-standard path

npx skills add https://github.com/TanStack/ai/tree/main/.agents/skills/pr-description -g -y

Use without installing

npx skills use TanStack/ai@pr-description

指定 Agent (Claude Code)

npx skills add TanStack/ai --skill pr-description -a claude-code -g -y

安装 repo 全部 skill

npx skills add TanStack/ai --all -g -y

预览 repo 内 skill

npx skills add TanStack/ai --list

SKILL.md

Frontmatter
{
    "name": "pr-description",
    "description": "Use when writing a pull request title or body, when about to run gh pr create, when about to git push on a branch that already has an open PR, or when the user says \/pr-description, \"write the PR description\", or \"update the PR title\". Don't use for commit messages, changelogs, or review comments."
}

pr-description

Write the GitHub PR title and body, then post them. Do not wait for approval.

Work from the diff, not from memory.

When to run

This skill is auto plus on demand.

Run it:

  • When the user asks for a PR title or body, or types /pr-description.
  • Immediately before gh pr create.
  • Immediately after an agent git push on a branch that already has an open PR. Then run gh pr edit with a fresh title and body.

Do not run it on a human-only git push in another terminal. Do not add a git hook.

A later push must rewrite the GitHub text. Do not leave a stale description.

A fix PR must pass bugfix-pr first. If those gates fail, stop. Do not run gh pr create. Do not run gh pr edit.

Required skills for the title and body

simple-english and i-have-adhd are prerequisites. They apply to the PR title and body, not to the rest of the session.

Load both immediately before writing the title and body. Use the Skill tool if this harness has one. If it does not, Read:

  • .claude/skills/simple-english/SKILL.md
  • .claude/skills/i-have-adhd/SKILL.md

Copies also live at .agents/skills/ (Codex) and .grok/skills/ (Grok). Keep those three files identical.

If either file is missing, stop. Do not post a weaker substitute.

When i-have-adhd is loaded from this skill, ignore its persistence section. Do not switch the rest of the session into ADHD mode.

Use pragmatic simple-english. Then shape the text with i-have-adhd: next action first in the lead, numbered steps for manual test, lists capped at 5.

Procedure

1. Ground in the repo

  1. Find the base branch (main / master / develop).
  2. Read git log --oneline base...HEAD and git diff base...HEAD.
  3. Read .github/pull_request_template.md if it exists (also check .github/PULL_REQUEST_TEMPLATE.md and .github/PULL_REQUEST_TEMPLATE/).
  4. Read about 15 recent PR titles in this repo (gh pr list --limit 15 --state all --json title). Match that shape. Do not invent a new title style.
  5. Collect linked issues from branch name, commit messages, and Closes # / Fixes # text.

2. Classify the PR

Pick one kind from the diff:

Kind Signal
fix Restores broken behavior. A user-visible bug, a failing test, a regression.
feat Adds behavior that did not exist. New export, new command, new user-facing flow.
chore / docs Agent files, CI, docs-only, refactors with no user-visible behavior change.

If both a feat and a fix are in the diff, the larger user-visible story wins. Say so in the lead.

3. Feat gate: easy test path

A **feat** PR cannot be posted until the branch has at least one of:
  • A new or updated automated test that covers the new behavior
  • A command a reviewer can copy and run
  • A change in an official example app that shows the new behavior

If none of those exist, stop. Do not run gh pr create. Do not run gh pr edit. Tell the user what is missing. Wait until they add one, then continue.

A fix does not use this gate. A fix uses bugfix-pr. Load it first. A chore / docs PR does not use this gate. </HARD-GATE>

4. Write the title

Match this repo's recent PR titles. In a conventional-commit repo, write type(scope): summary. Keep it one line.

The title must still make sense if the reviewer never opens the body.

5. Write the body

Load simple-english and i-have-adhd, then write in this order.

Lead (required, 1 to 4 sentences, before the template).

  • feat: what the PR does for a user of the product.
  • fix: what the bug is, then how this PR fixes it.
  • chore / docs: what changed, in product or repo terms, not a file list.

No preamble. No "This PR aims to". Start with the fact.

Repo template (required when the file exists).

Fill every section honestly. Leave a checkbox unchecked when the claim is false. Do not tick "I ran pnpm test:pr" if you did not run it.

Extra sections after the template, in this order. Testing and Risk / rollback are always present. For a fix, Root cause and Possible alternatives are also always present. Linked issues and Public API change are omitted when they do not apply.

Root cause (fix only)

Required for a fix. Copy from the bugfix-pr report. Do not paste the diff. Write:

## Root cause

**Issue.** What is broken, for whom, under which inputs.
**Cause.** Why it happens in the code. Name the function or path.
**Fix.** How this PR's change kills that cause.

Possible alternatives (fix only)

Required for a fix. Copy from the bugfix-pr report. Write:

## Possible alternatives

- **<name>.** What it is. Why this PR did not take it.

If there is no other real way, write None. Do not omit the heading.

Testing

Three parts, all required:

  1. Commands run. What you ran, what passed, what you skipped and why. If you ran nothing, say so.
  2. Manual test. Numbered steps a reviewer can follow to see the change. For a fix, step 1 is how to reproduce the old bug, then how to confirm it is gone.
  3. How this PR makes testing easy. Name the artifacts on the branch: tests, a command, an example app change. If there are none (allowed for fix and chore / docs), write that. Do not invent an easy path.

Linked issues

Omit this heading when nothing links. When an issue links, use Closes #N or Fixes #N.

Risk / rollback

What could break. How to undo (revert the PR, turn a flag off, and so on). If risk is low, say that in one line. Do not skip the heading.

Public API change

Omit this heading when the PR does not touch the published surface.

Published surface means: exported functions, types, components, CLI flags, env vars, and documented contracts from published packages. Tests, internal files, agent skills, AGENTS.md, and CLAUDE.md do not count.

When it does touch that surface, show caller usage, not the internal diff:

## Public API change

**Before**

\`\`\`ts
old call site
\`\`\`

**After**

\`\`\`ts
new call site
\`\`\`

Two short snippets. What a user writes today, then what they write after this PR.

6. Post immediately

Do not wait for the user to approve the text.

  • No PR yet: gh pr create --title "..." --body-file ...
  • PR already open: gh pr edit --title "..." --body-file ...

If gh fails, stop and show the error. Leave the drafted body in the chat so it is not lost.

Do not attach screenshots to the PR. Do not commit screenshot files for this skill.

Red flags

You catch yourself Do instead
Writing the body from the branch name Read the diff.
Ticking a template checkbox you did not do Leave it unchecked and say so in Testing.
Posting a feat with no test, command, or example Stop. The feat gate failed.
A 1-4 sentence lead that lists files Rewrite as what a user can do, or what bug is gone.
Public API section that shows the internal diff Show caller usage before and after.
Public API section on an AGENTS.md-only PR Omit the heading.
"I'll update the description later" after a push Rewrite now with gh pr edit.
Waiting for the user to approve the text Post. This skill does not wait.
Uploading or committing screenshots for the PR body Skip. Do not put images on the PR.
Writing without loading simple-english and i-have-adhd Load both from the repo copies. If missing, stop.
Posting a fix before bugfix-pr gates pass Stop. Load bugfix-pr. Do not create or edit.
A fix PR with no Root cause or Possible alternatives Copy both sections from the bugfix-pr report.

Version History

  • 0e4e340 Current 2026-08-27 11:52

Same Skill Collection

.agents/skills/gap-analysis/SKILL.md
.agents/skills/i-have-adhd/SKILL.md
.claude/skills/gap-analysis/SKILL.md
.claude/skills/i-have-adhd/SKILL.md
.claude/skills/pr-description/SKILL.md
.grok/skills/gap-analysis/SKILL.md
.grok/skills/i-have-adhd/SKILL.md
.grok/skills/pr-description/SKILL.md
packages/ai-code-mode/skills/ai-code-mode/SKILL.md
packages/ai-mcp/skills/ai-mcp/SKILL.md
packages/ai-memory/skills/tanstack-ai-memory-hindsight/SKILL.md
packages/ai-memory/skills/tanstack-ai-memory-honcho/SKILL.md
packages/ai-memory/skills/tanstack-ai-memory-in-memory/SKILL.md
packages/ai-memory/skills/tanstack-ai-memory-mem0/SKILL.md
packages/ai-memory/skills/tanstack-ai-memory-redis/SKILL.md
packages/ai-memory/skills/tanstack-ai-memory/SKILL.md
packages/ai-persistence/skills/ai-persistence/build-cloudflare-adapter/SKILL.md
packages/ai-persistence/skills/ai-persistence/build-cloudflare-artifact-store/SKILL.md
packages/ai-persistence/skills/ai-persistence/build-custom-adapter/SKILL.md
packages/ai-persistence/skills/ai-persistence/build-drizzle-adapter/SKILL.md
packages/ai-persistence/skills/ai-persistence/build-prisma-adapter/SKILL.md
packages/ai-persistence/skills/ai-persistence/server/SKILL.md
packages/ai-persistence/skills/ai-persistence/SKILL.md
packages/ai-persistence/skills/ai-persistence/stores/SKILL.md
packages/ai/skills/ai-core/ag-ui-protocol/SKILL.md
packages/ai/skills/ai-core/chat-experience/SKILL.md
packages/ai/skills/ai-core/custom-backend-integration/SKILL.md
packages/ai/skills/ai-core/debug-logging/SKILL.md
packages/ai/skills/ai-core/locks/SKILL.md
packages/ai/skills/ai-core/middleware/SKILL.md
packages/ai/skills/ai-core/SKILL.md
packages/ai/skills/ai-core/tool-calling/SKILL.md
.agents/skills/bugfix-pr/SKILL.md
.agents/skills/docs/SKILL.md
.agents/skills/ponytail/SKILL.md
.agents/skills/simple-english/SKILL.md
.agents/skills/triage-github/SKILL.md
.claude/skills/bugfix-pr/SKILL.md
.claude/skills/docs/SKILL.md
.claude/skills/ponytail/SKILL.md
.claude/skills/simple-english/SKILL.md
.claude/skills/triage-github/SKILL.md
.grok/skills/bugfix-pr/SKILL.md
.grok/skills/docs/SKILL.md
.grok/skills/ponytail/SKILL.md
.grok/skills/pr-sweep/SKILL.md
.grok/skills/simple-english/SKILL.md
.grok/skills/triage-github/SKILL.md
packages/ai-sandbox/skills/ai-sandbox/SKILL.md

Metadata

Files
0
Version
0e4e340
Hash
f510590b
Indexed
2026-08-27 11:52

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-27 19:22
浙ICP备14020137号-1 $Carte des visiteurs$