Skip to main content

pull-request-review

Review a diff against the repository's own conventions, in the order a maintainer does.

インストールへ移動

ソース情報

リポジトリ
vstorm-co/agenticos
ソースの最終更新活動
2026年9月2日 09:15
検出された SKILL.md の言語
英語
スター
42
フォーク
9

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
Pull request review
description
Review a diff against the repository's own conventions, in the order a maintainer does.
category
engineering
# Reviewing a pull request Read the surrounding code before the diff. Most real problems are in what the change assumes, not in what it says. ## In this order 1. **Does it do what it claims** — and does the description match the diff? 2. **The failure paths** — errors, empty results, concurrency, partial writes. 3. **Tests** — does one fail without the fix? A test that passes on the old code tests nothing. 4. **Conventions** — the repository's, not your preferences. 5. **Blast radius** — what else calls this, and does the change hold for them? ## Say why, and how sure Distinguish "this is a bug, here is the input that breaks it" from "I would have done this differently". Both are worth saying; conflating them wastes the author's time. ## Always sweep the siblings If the change touches one of several similar call sites, check the others. The same defect is usually in all of them. ## Never Block on style a formatter should own, or approve a diff you did not understand because the author is senior.
GitHubで見る