From hyperskills
Drafts reviewer-first PR descriptions that lead with why, prove claims with evidence, name load-bearing files, and stay honest about blast radius.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hyperskills:super-good-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A PR description is read by a human who has to rebuild your mental model from zero and decide whether to trust it. The job is to hand them that model fast, prove the parts they'd doubt, and be honest about what you didn't do.
A PR description is read by a human who has to rebuild your mental model from zero and decide whether to trust it. The job is to hand them that model fast, prove the parts they'd doubt, and be honest about what you didn't do.
Core insight: lead with why, prove with evidence, be honest about blast radius. A changelog tells the reviewer what moved. A super-good PR tells them what to believe, where to look, and what could still bite. The difference is entirely in altitude and receipts, not length.
How to read this skill: the spine below is a map, not a script. Real PRs drop sections that don't apply and add domain-specific ones that do. A one-file fix doesn't need a rollout-sequencing section; a migration does. Match the shape to the change. The non-negotiables are the part that's actually load-bearing — the section order is just a reliable way to deliver them.
These are what make a description land. If a section doesn't serve one of these, cut it.
proxy.rs, resolvePolicy(), ON CONFLICT (id) DO UPDATE, "the write → audit → revoke ordering." A reviewer should be able to navigate the diff cold from your prose. Vague nouns ("the handler", "some validation") make them hunt.cargo test -p proxy → 98 passed, 0 failed. Not "it's safe" — show the test that pins it. Assertions are free; evidence is the whole point of the section.Use the headers that carry weight for this change. Each is a ## with a semantic emoji (palette below).
# <emoji> <short evocative title> — a noun phrase that names the thing, not a verbatim copy of the commit subject. "Per-tenant rate limiting, end to end", not "feat(api): add limiter".>) — one to three lines orienting the reader. For a standalone PR, where it sits and what it assumes. For a stack, the nav line (see Stacked PRs below).## 💡 What this is — the core, two to four sentences. Lead with the mental model; kill the naive primitive here if there is one.## 🤔 Why we need it & what it replaces — the old world and why it falls short; what's deliberately not built and why the obvious version was dangerous; the blast-radius framing ("dark by default", "non-X deployments untouched").## 🎯 The invariant / anchor (when there's one load-bearing property) — the single thing to anchor the review on. Optional but powerful; skip it if the change has no single crux.## 🛠️ How it works — a numbered, sub-headed walkthrough a reviewer follows cold. Name files. Name patterns by name. This is where most of the body lives.## 🗄️ The database, ## 🔗 Identity, end to end. Add one when a subsystem deserves its own focused pass.## 🚦 Rollout sequencing (and why it's safe) (for anything deployed) — the order of operations, what's safe to stop at, what the old path keeps doing.## 🔁 What changed since the last review round (on re-review) — the delta. Credit reviewers by handle. Mark security/critical fixes (🛡️ / 🚨). This is how a re-reviewer reloads without re-reading.## 🧪 Validation — the receipts. Test suites with PASS counts, typecheck clean, render/lint green; one honest ⚠️ line for what's not covered, with the backstop and the open follow-up.## 🔍 What reviewers should focus on — the three-to-five trickiest surfaces, bulleted. End with what's intentionally out of scope.## 📌 Follow-ups (deliberate non-fixes) (when known gaps exist) — bounded gaps, why each is safe to defer.The Validation section is where trust is won or lost. Rules:
pnpm turbo typecheck across the changed package and its dependents → 112 tasks clean.⚠️ beats ten green checks. "Local integration tests stay blocked by a local socket conflict; the CI job is the backstop, and a dedicated CI job for them is an open follow-up." That single line builds more trust than the whole rest of the section.Load-bearing, never decorative, never stacked. Section-semantic set that works:
💡 what · 🤔 why · 🎯 anchor/invariant · 🛠️ how · 🗄️ database · 🔗 identity · 🎫 issuance · 📡 serve/API · 🧹 cleanup/retention · 🚦 rollout · 🔁 what-changed · 🧪 validation · 🔍 reviewer-focus · 📌 follow-ups · 🛡️ security fix · 🚨 critical fix · 🏷️ labels · 🔄 reconnect/refresh.
General palette also available when a header wants personality: 💜🔮⚡🌙🎭🦋🌸🌊🪄💎🌈🦄. The rule is one emoji per header, chosen because it means something.
Banned — the AI-slop set, never use: 🚀 ✨ 💯 🙏 👀 🎉 👍 🔥. Note 👀 specifically: it's a tempting choice for "reviewers should look here" and it shows up in the wild, but it's on the banned list — use 🔍 for the reviewer-focus header instead.
Make the template sing; don't abandon it. Map this spine onto the repo's sections — a Changes / Reason / Validation / Reviewer notes template absorbs the same content, just under its own headers. The non-negotiables don't change; only the section labels do. Keep any required checkboxes and metadata the template demands.
A stack needs a nav blockquote at the top of every PR so a reviewer always knows where they are and what's landed:
> **Stack PR 2 of 4 · PROJ-481** — the policy engine.
> `#101` (data plane, ✅ merged) → **`#102` you are here** → `#103` (admin surface) → `#104` (client adoption).
> Rebased onto current `main`.
Each PR's "What this is" then says what the previous PR established and what this one adds, so the stack reads as one argument across several documents. End each with what's deferred to the next PR in the stack.
npx claudepluginhub hyperb1iss/hyperskills --plugin hyperskillsGenerates comprehensive PR descriptions, automates review processes, and ensures PRs follow best practices for clarity, size, and reviewability.
Generates pull request descriptions from git diffs/commits with conventional titles, summaries, checklists, metadata, and reviewer tips to aid reviews.
Creates, updates descriptions, and adds comments to GitHub pull requests using file-based drafts for safety, emphasizing material impact and reviewer-friendly communication.