Best for
- About to run /create-pr or /prepare-for-review
- A feature or bug fix is code-complete and the next step is "get
- A stacked PR is ready and you need the parent branch reviewer to
event4u-app/agent-config/src/skills/requesting-code-review/SKILL.md
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'.
Decision brief
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'.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/requesting-code-review"Inspect the Agent Skill "requesting-code-review" from https://github.com/event4u-app/agent-config/blob/0adf49a8ae84b0ff6e2de8759eea43257e020eff/src/skills/requesting-code-review/SKILL.md at commit 0adf49a8ae84b0ff6e2de8759eea43257e020eff. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Before asking anyone else:
Before asking anyone else:
Any review request must answer four questions. If any is missing, the reviewer will ask — and that round trip is preventable.
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
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.
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 98/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 7 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
/create-pr or /prepare-for-reviewDo NOT use when:
receiving-code-reviewGive 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.
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.
Before asking anyone else:
git diff <base>...<head>), not just the files
you remember touchingdd(),
console.log, commented-out blocks.env changesverify-before-complete)Use the review-changes command
as the structured walk-through.
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.
Any review request must answer four questions. If any is missing, the reviewer will ask — and that round trip is preventable.
| Question | Where 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.
If the project has a CODEOWNERS file, GitHub handles this
automatically — do not override without a reason.
After the PR is open:
When review comments arrive → switch to
receiving-code-review.
When handing the review request to the reviewer (PR body, Slack, email):
review-changesprepare-for-reviewcreate-pr-descriptioncreate-prcommit,
conventional-commits-writingverify-before-completereceiving-code-reviewBefore asking for review:
Alternatives
obra/superpowers
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
event4u-app/agent-config
Use BEFORE writing/changing tests, adding mocks, or test-only methods on production classes — vs mocking-the-mock, production pollution, partial mocks, and overfit/tautological assertions
event4u-app/agent-config
Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.