pr-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.
git clone --depth 1 https://github.com/TanStack/ai /tmp/pr-description && cp -r /tmp/pr-description/.grok/skills/pr-description ~/.claude/skills/pr-descriptionSKILL.md
# 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 <HARD-GATE> 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: ```markdown ## 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: ```markdown ## 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 documente
>
Triage all open GitHub issues, PRs, and discussions in the current repository by fanning out up to 100 parallel subagents (one per item), then produce a single prioritized report ranking which PRs to review first, which issues to address first, and which discussions need maintainer attention. Use when the user asks to "triage open issues/PRs", "triage discussions", "prioritize the backlog", "what should I review first", "sweep the repo", or any request to bulk-evaluate open GitHub work and recommend an order.
>
>
>
>
>
>