event4u-app/agent-config

requesting-code-review

Use when asking for a review or creating a PR — self-review first, frame the right context, test plan included — even when the user just says 'open a PR' or 'ready to merge'.

98Collecting
See how to use itView GitHub source
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/requesting-code-review"

Quick start

Start using it in three steps

Install it or open the source, trigger it with a clear task, then follow the source workflow.

1

Install the Skill

npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/requesting-code-review"
2

Describe the task

Use requesting-code-review to help me with: [describe your task]. Before you begin, tell me what input you need, the steps you will follow, and the expected output.

3

Follow the workflow

No structured workflow was detected; follow the original SKILL.md below.

Continue to the workflow

Direct answers

Answers to review before you install

What is requesting-code-review?

Use when asking for a review or creating a PR — self-review first, frame the right context, test plan included — even when the user just says 'open a PR' or 'ready to merge'.

Who should use requesting-code-review?

It is most relevant to software development workflows. Confirm the original prerequisites before using it in production.

How do you install requesting-code-review?

SkillSignal detected this source-specific command: npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/requesting-code-review". Inspect the repository and command before running it.

Which Agent platforms does it support?

The upstream source does not declare a dedicated Agent platform.

What permissions or risks should you review?

No obvious permission action was detected by the static rules. This is not proof that the Skill is safe.

What are the current evidence limits?

This page combines upstream documentation with deterministic repository, quality, and static-risk signals. It is not described as a manual test or security review.

SkillSignal brief

Decide whether it fits your work first

Use when asking for a review or creating a PR — self-review first, frame the right context, test plan included — even when the user just says 'open a PR' or 'ready to merge'.

Useful in these contexts

Core capabilities

TestingEngineering

Distilled from the source

Understand this Skill in one minute

About 6 min · 11 sections

When it is worth using

  1. About to run /create-pr or /prepare-for-review

  2. A feature or bug fix is code-complete and the next step is "get

  3. A stacked PR is ready and you need the parent branch reviewer to

  4. Asking a human for a quick sanity check on a specific commit or

Examples and typical usage

  1. Title — Conventional Commit imperative

  2. Summary — 2–5 bullets of what changed

  3. Motivation — why, with ticket / Sentry / user-message link

Limits and cautions

  1. "Small cleanup" titles on 800-line diffs

  2. Test plan that says "should work"

  3. Hiding a risky change inside a 40-file refactor PR

  4. Pinging reviewers before CI goes green

Repository stars
7
Repository forks
1
Quality
98/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

98/100
Documentation28/30
Specificity25/25
Maintenance20/20
Trust signals25/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 6 min

requesting-code-review

When to use

  • About to run /create-pr or /prepare-for-review
  • A feature or bug fix is code-complete and the next step is "get eyes on it"
  • A stacked PR is ready and you need the parent branch reviewer to context-switch smoothly
  • Asking a human for a quick sanity check on a specific commit or diff

Do NOT use when:

  • You are processing review feedback — use receiving-code-review
  • The branch is not yet code-complete — the review-request gate requires green tests and a clean diff
  • The change is documentation-only and has no behavior impact

Goal

Give the reviewer exactly the context they need — what changed, why, how to verify — without forcing them to reconstruct your thought process. A well-framed review request halves review time and reduces back-and-forth on missing context.

The Iron Law

NEVER REQUEST REVIEW FROM A BRANCH YOU HAVE NOT REVIEWED YOURSELF.

Self-review is the single cheapest filter. It catches the issues a human reviewer would flag in round one, so the human reviewer can spend time on the issues only they can see.

Procedure

1. Self-review first

Before asking anyone else:

  • Read the full diff (git diff <base>...<head>), not just the files you remember touching
  • Check for accidental debug output, dead code, leftover dd(), console.log, commented-out blocks
  • Check for secrets in diff — API keys, connection strings, tokens
  • Check file-system side effects — generated files, lockfile churn, IDE configs, .env changes
  • Run the linter + tests (see verify-before-complete)
  • If you find issues → fix them, do not ship them and hope the reviewer flags them

Use the review-changes command as the structured walk-through.

2. Establish the diff baseline

Determine the correct base commit:

# Simple branch from main
BASE=$(git merge-base HEAD main)

# Stacked PR — parent branch is base, not main
BASE=$(git merge-base HEAD <parent-branch>)

HEAD=$(git rev-parse HEAD)

The base matters for the reviewer's diff view — wrong base = they review 80 unrelated commits.

3. Write the review request context

Any review request must answer four questions. If any is missing, the reviewer will ask — and that round trip is preventable.

QuestionWhere it lives
What changed?PR title (imperative, Conventional Commits) + summary bullets
Why?Link to ticket / issue / Sentry event / user message
How do I verify it?Test plan: commands to run, URLs to hit, expected behavior
What should I look at first?Highlights: "pay attention to X because Y" or "skip Z, it is generated"

See create-pr-description for the full structured template, and conventional-commits-writing for the title format.

4. Keep the PR reviewable in size

  • Target < 400 lines of real diff (excluding generated / lockfiles)
  • If bigger — consider splitting into a stack (refactor PR → feature PR) so reviewers can handle each in one sitting
  • Flag generated files explicitly in the description so reviewers skip them
  • Never mix a refactor + behavior change in the same PR — reviewers cannot isolate the risk

5. Pick the right reviewer set

  • Architectural impact → the code owner for the affected area
  • Security-sensitive → a security-reviewer role if the project has one
  • Bots → let Copilot / Greptile / Augment run automatically; do not gate human review on bot completion
  • Cross-team change → each affected team's owner

If the project has a CODEOWNERS file, GitHub handles this automatically — do not override without a reason.

6. Send and wait — do not nudge early

After the PR is open:

  • Respond to questions, not to the implicit "where is my review?" schedule
  • If the review is blocking and overdue → a single short nudge is appropriate; do not re-open or force-push to bump the PR list

When review comments arrive → switch to receiving-code-review.

Output format

When handing the review request to the reviewer (PR body, Slack, email):

  1. Title — Conventional Commit imperative
  2. Summary — 2–5 bullets of what changed
  3. Motivation — why, with ticket / Sentry / user-message link
  4. Test plan — exact commands or URLs + expected result
  5. Risk / scope notes — what the reviewer should pay attention to
  6. Non-goals — what this PR deliberately does not do
  7. Screenshots / logs — when UI or runtime behavior changed

Gotchas

  • "Ready for review" on a red CI run signals carelessness — wait for green or explain the specific failure
  • A 1000-line PR with "no behavior change" still needs review — the reviewer has no way to confirm "no behavior change" without reading every line
  • Auto-merge on approval bypasses re-review after later force-pushes — use deliberately, not by habit
  • A PR description that says "see the code" is not a description — reviewers need the why
  • Requesting review from someone without context (new hire, other team) without a longer pairing — they cannot do a deep review cold
  • Rebasing during review invalidates line-comments; let reviewers finish a round before rebasing when possible

Do NOT

  • Do NOT request review before self-review
  • Do NOT request review on a branch with failing CI (except when explicitly documenting "CI broken, please eyeball X only")
  • Do NOT mix unrelated changes in one PR
  • Do NOT force-push during active review without a good reason and a note to the reviewer
  • Do NOT leave the PR description empty
  • Do NOT request review from reviewers who lack context just to get approvals

Anti-patterns

  • "Small cleanup" titles on 800-line diffs
  • Test plan that says "should work"
  • Hiding a risky change inside a 40-file refactor PR
  • Pinging reviewers before CI goes green
  • Requesting review as a substitute for thinking the problem through

When to hand over to another skill / command

Validation checklist

Before asking for review:

  • Self-review walkthrough done on the full diff
  • Linter + targeted tests + full test suite green
  • PR title follows Conventional Commits
  • PR description has summary, motivation, test plan, risk notes
  • Diff is reviewable in size (split if > 400 lines of real code)
  • CODEOWNERS / reviewer set is correct
  • No debug code, secrets, or stray files in the diff
  • No unrelated changes bundled in
Skill path
src/skills/requesting-code-review/SKILL.md
Commit SHA
0adf49a8ae84
Repository license
MIT
Data collected