| name | code-review |
| description | Review code changes in dotnet/runtime for correctness, performance, and consistency with project conventions. Use when reviewing PRs or code changes. |
dotnet/runtime Code Review
Review code changes against conventions and patterns established by dotnet/runtime maintainers. These rules were extracted from 43,000+ maintainer review comments across 6,600+ PRs and represent the actual standards enforced in practice.
Reviewer mindset: Be polite but very skeptical. Your job is to help speed the review process for maintainers, which includes not only finding problems the PR author may have missed but also questioning the value of the PR in its entirety. Treat the PR description and linked issues as claims to verify, not facts to accept. Question the stated direction, probe edge cases, and don't hesitate to flag concerns even when unsure.
When to Use This Skill
Use this skill when:
- Reviewing a PR or code change in dotnet/runtime
- Checking code for correctness, performance, style, or consistency issues before submitting a PR
- Asked to review, critique, or provide feedback on code changes
- Validating that a change follows dotnet/runtime conventions
Review Process
Step 0: Load Relevant Instructions
Before analyzing anything, load .github/skills/code-review/pr-assessment.md -- the holistic criteria you will assess against -- plus any and all instructions under .github/instructions that are relevant to the code changes, as indicated by the frontmatter. If conflict arises between said custom instructions and the instructions in this skill, the custom instructions supersede instructions in this skill.
Step 1: Gather Code Context (No PR Narrative Yet)
Before analyzing anything, collect as much relevant code context as you can. Critically, do NOT read the PR description, linked issues, or existing review comments yet. You must form your own independent assessment of what the code does, why it might be needed, what problems it has, and whether the approach is sound โ before being exposed to the author's framing. Reading the author's narrative first anchors your judgment and makes you less likely to find real problems.
- Diff and file list: Fetch the full diff and the list of changed files.
- Full source files: For every changed file, read well beyond the diff hunks โ diff-only review is the #1 cause of false positives and missed issues. You need the surrounding code to understand invariants, locking protocols, call patterns, and data flow. Read the whole file when it is a reasonable size; for the very large ones this repo has (
morph.cpp alone is ~137k tokens) read the enclosing functions, their callers, and the types involved instead of paging through the entire file.
- Consumers and callers: If the change modifies a public/internal API, a type that others depend on, or a virtual/interface method, search for how consumers use the functionality. Grep for callers, usages, and test sites. Understanding how the code is consumed reveals whether the change could break existing behavior or violate caller assumptions.
- Sibling types and related code: If the change fixes a bug or adds a pattern in one type, check whether sibling types (e.g., other abstraction implementations, other collection types, platform-specific variants) have the same issue or need the same fix. Fetch and read those files too.
- Key utility/helper files: If the diff calls into shared utilities, read those to understand the contracts (thread-safety, idempotency, etc.).
- Git history: Check recent commits to the changed files (
git log --oneline -20 -- <file>). Look for related recent changes, reverts, or prior attempts to fix the same problem. This reveals whether the area is actively churning, whether a similar fix was tried and reverted, or whether the current change conflicts with recent work.
- Detect new public API surface: Check whether the PR introduces new public API surface. Look for:
- Changes to
ref/ assembly source files (the strongest signal โ these define the public API contract)
- New
public members (methods, properties, types, enum values) in src/ files
- Note whether new public API was detected. If it was, you MUST load and execute the API approval verification procedure during Step 4. Read the file
.github/skills/code-review/api-approval-check.md (relative to the repository root) and follow its instructions. Do not skip this step โ it is blocking.
Step 2: Discover Area-Specific Agents
- If the environment supports sub-agent or task invocation, study the review agents that
actually exist in
.github/agents. Their yaml frontmatter descriptions tell when they apply.
- Invoke only existing, matching area-specific review agents as subtasks during the subsequent
steps, integrating their results. Do not infer or invent an agent from an instruction file.
- If the environment lacks sub-agent tooling or no matching agent exists, continue the review
yourself. Area agents are additions to, not replacements for, the regular review.
- Some specialist skills are triggered by diff content, not path. In particular, if the diff
contains
Vector64/Vector128/Vector256/Vector512, Vector<T>, or any System.Runtime.Intrinsics.*
namespace usage, also apply the vectorization skill's review checklist (correctness vs. the scalar
contract, remainder handling, memory safety, cross-platform consistency, and BoundedMemory
test coverage). This holds regardless of which folder the change lives in.
Step 3: Form an Independent Assessment
Based only on the code context gathered above (without the PR description or issue), answer these questions:
- What does this change actually do? Describe the behavioral change in your own words by reading the diff and surrounding code. What was the old behavior? What is the new behavior?
- Why might this change be needed? Infer the motivation from the code itself. What bug, gap, or improvement does it appear to address?
- Is this the right approach? Would a simpler alternative be more consistent with the codebase? Could the goal be achieved with existing functionality? Are there correctness, performance, or safety concerns?
- What problems do you see? Identify bugs, edge cases, missing validation, thread-safety issues, performance regressions, API design problems, test gaps, and anything else that concerns you.
Write down your independent assessment before proceeding. You must produce a holistic assessment (using the criteria in .github/skills/code-review/pr-assessment.md) at this stage.
Step 4: Incorporate PR Narrative and Reconcile
Now read the PR description, labels, linked issues (in full), author information, existing review comments, and any related open issues in the same area. Treat all of this as claims to verify, not facts to accept.
- PR metadata: Fetch the PR description, labels, linked issues, and author. Read linked issues in full โ they often contain the repro, root cause analysis, and constraints the fix must satisfy.
- Related issues: Search for other open issues in the same area (same labels, same component). This can reveal known problems the PR should also address, or constraints the author may not be aware of.
- Existing review comments: Check if there are already review comments on the PR to avoid duplicating feedback.
- Reconcile your assessment with the author's claims. Where your independent reading of the code disagrees with the PR description or issue, investigate further โ but do not simply defer to the author's framing. If the PR claims a bug fix, a performance improvement, or a behavioral correction, verify those claims against the code and any provided evidence. If your independent assessment found problems the PR narrative doesn't acknowledge, those problems are more likely to be real, not less.
- Update your holistic assessment if the additional context reveals information that genuinely changes your evaluation (e.g., a linked issue proves the bug is real, or an existing review comment already identified the same concern). But do not soften findings just because the PR description sounds reasonable.
- API Approval Verification. If Step 1 detected new public API surface, you MUST now load the file
.github/skills/code-review/api-approval-check.md (relative to the repository root) and execute the full procedure described there. Use the view tool, cat, or equivalent to read the file contents into your context, then follow every step. This is a blocking gate โ if any check in that procedure fails, the review verdict must be โ Reject or โ Needs Changes regardless of other findings. Do not proceed without completing this step when new public API is detected. If the file cannot be loaded for any reason, report โ error โ "Unable to load API approval verification procedure; cannot verify new public API surface" โ and set the verdict to โ Needs Changes.
Step 5: Detailed Analysis
- Focus on what matters. Prioritize bugs, performance regressions, safety issues, race conditions, resource management problems, incorrect assumptions about data or state, and API design problems. Do not comment on trivial style issues unless they violate an explicit rule below.
- Consider collateral damage. For every changed code path, actively brainstorm: what other scenarios, callers, or inputs flow through this code? Could any of them break or behave differently after this change? If you identify any plausible risk โ even one you can't fully confirm โ surface it so the author can evaluate. Do not dismiss behavioral changes because you believe the fix justifies them. The tradeoff is the author's decision โ your job is to make it visible.
- Be specific and actionable. Every comment should tell the author exactly what to change and why. Reference the relevant convention. Include evidence of how you verified the issue is real, e.g., "looked at all callers and none of them validate this parameter".
- Flag severity clearly:
- โ error โ Must fix before merge. Bugs, security issues, API violations, test gaps for behavior changes.
- โ ๏ธ warning โ Should fix. Performance issues, missing validation, inconsistency with established patterns.
- ๐ก suggestion โ Consider changing. Style improvements, minor readability wins, optional optimizations.
- Don't pile on. If the same issue appears many times, flag it once on the primary file with a note listing all affected files. Do not leave separate comments for each occurrence.
- Respect existing style. When modifying existing files, the file's current style takes precedence over general guidelines.
- Don't flag what CI catches. Do not flag issues that a linter, typechecker, compiler, analyzer, or CI build step would catch, e.g., missing usings, unsupported syntax, formatting. Assume CI will run separately.
- Avoid false positives. Before flagging any issue:
- Verify the concern actually applies given the full context, not just the diff. Open the surrounding code to check. Confirm the issue isn't already handled by a caller, callee, or wrapper layer before claiming something is missing.
- Skip theoretical concerns with negligible real-world probability. "Could happen" is not the same as "will happen."
- If you're unsure, either investigate further until you're confident, or surface it explicitly as a low-confidence question rather than a firm claim. Do not speculate about issues you have no concrete basis for. Every comment should be worth the reader's time.
- Trust the author's context. The author knows their codebase. If a pattern seems odd but is consistent with the repo, assume it's intentional.
- Never assert that something "does not exist," "is deprecated," or "is unavailable" based on training data alone. Your knowledge has a cutoff date. When uncertain, ask rather than assert.
- Ensure code suggestions are valid. Any code you suggest must be syntactically correct and complete. Ensure any suggestion would result in working code.
- Format code suggestions correctly. Any code you suggest must be indented matching the surrounding code and must follow the same formatting and code style.
- Label in-scope vs. follow-up. Distinguish between issues the PR should fix and out-of-scope improvements. Be explicit when a suggestion is a follow-up rather than a blocker.
Multi-Model Review
When the environment supports launching sub-agents with different models (e.g., the task tool with a model parameter), run the review in parallel across multiple model families to get diverse perspectives. Different models catch different classes of issues. If the environment does not support this, proceed with a single-model review. Each sub-agent re-reads the diff and the surrounding files, so this multiplies the cost of the review by the number of models โ worth it for a substantial or risky change, not for a one-line fix.
How to execute (when supported):
- Inspect the available model list and select models from 2-3 distinct model families, up to 3 sub-agent models total. If fewer than 2 eligible families are available, use what is available. Model selection rules:
- Pick only from models explicitly listed as available in the environment. Do not guess or assume model names.
- From each selected family, pick the model with the highest capability tier (prefer "premium" or "standard" over "fast/cheap").
- Never pick models labeled "mini", "fast", or "cheap" for code review.
- Do not select the same model that is already running the primary review (i.e., your own model). The goal is diverse perspectives from different model families.
- Do not use
gpt-5.4 โ it has known reliability issues causing sub-agent timeouts in >90% of affected runs. For the OpenAI/GPT family, prefer gpt-5.3-codex if it is explicitly listed as available; otherwise, fall back to the highest-version non-blocked GPT model that satisfies the other rules here.
- If multiple standard-tier models exist in the same family (excluding blocked models above), pick the one with the highest version number. Prefer "-codex" variants over general-purpose for code review tasks.
- Launch a sub-agent for each selected model in parallel, giving each the same review prompt: the PR diff, the review rules from this skill, and instructions to produce findings in the severity format defined above.
- Wait for all agents to complete, then synthesize: deduplicate findings that appear across models, elevate issues flagged by multiple models (higher confidence), and include unique findings from individual models that meet the confidence bar. Timeout handling: If a sub-agent has not completed after 10 minutes and you have results from other agents, proceed with the results you have. Do not block the review indefinitely waiting for a single slow model. Note in the output which models contributed.
- Present a single unified review to the user, noting when an issue was flagged by multiple models. After posting the review, immediately exit. Do not wait for any remaining sub-agents. Do not attempt retries if the comment was posted successfully. The review is complete once the post operation succeeds or returns a comment URL.
Review Output Format
When presenting the final review (whether as a PR comment or as output to the user), use the following structure. This ensures consistency across reviews and makes the output easy to scan.
๐ AI-generated content disclosure: When posting review content to GitHub (PR review comments, PR comments) under a user's credentials โ i.e., the account is not a dedicated "copilot" or "bot" account/app (e.g., github-actions[bot], copilot) โ you MUST include a concise, visible note (e.g. a > [!NOTE] alert) at the bottom of the content indicating the content was AI/Copilot-generated. Skip this if the user explicitly asks you to omit it.
Structure
## Holistic Review
**Motivation**: <1-2 sentences on whether the PR is justified and the problem is real>
**Approach**: <1-2 sentences on whether the fix/change takes the right approach>
**Summary**: <โ
LGTM / โ ๏ธ Needs Human Review / โ ๏ธ Needs Changes / โ Reject>. <2-3 sentence summary of the overall verdict and key points. If "Needs Human Review," explicitly state which findings you are uncertain about and what a human reviewer should focus on.>
---
### Detailed Findings
#### โ
/โ ๏ธ/โ <Category Name> โ <Brief description>
<Explanation with specifics. Reference code, line numbers, interleavings, etc.>
(Repeat for each finding category. Group related findings under a single heading.)
<!-- AI disclosure note: place any AI-generated content disclosure below this line. -->
<!-- Example: > [!NOTE] This review was created by GitHub Copilot. -->
Guidelines
- Begin the review body with
## Holistic Review, immediately followed by the
**Motivation**:, **Approach**:, and **Summary**: fields in that order. Do not
add a ### Holistic Assessment subheading, substitute a Verdict field, or rename
those fields.
- Detailed Findings uses emoji-prefixed category headers:
- โ
for things that are correct / look good (use to confirm important aspects were verified)
- โ ๏ธ for warnings or impactful suggestions (should fix, or follow-up)
- โ for errors (must fix before merge)
- ๐ก for minor suggestions or observations (nice-to-have)
- Cross-cutting analysis should be included when relevant: check whether related code (sibling types, callers, other platforms) is affected by the same issue or needs a similar fix.
- Test quality should be assessed as its own finding when tests are part of the PR.
- Summary gives a clear verdict: LGTM (no blocking issues โ use only when confident), Needs Human Review (code may be correct but you have unresolved concerns or uncertainty that require human judgment), Needs Changes (with blocking issues listed), or Reject (explaining why this should be closed outright). Never give a blanket LGTM when you are unsure. When in doubt, use "Needs Human Review" and explain what a human should focus on.
- Keep the review concise but thorough. Every claim should be backed by evidence from the code.
Verdict Consistency Rules
The summary verdict must be consistent with the findings in the body. Follow these rules:
-
The verdict must reflect your most severe finding. If you have any โ ๏ธ findings, the verdict cannot be "LGTM." Use "Needs Human Review" or "Needs Changes" instead. Only use "LGTM" when all findings are โ
or ๐ก and you are confident the change is correct and complete.
-
When uncertain, always escalate to human review. If you are unsure whether a concern is valid, whether the approach is sufficient, or whether you have enough context to judge, the verdict must be "Needs Human Review" โ not LGTM. Your job is to surface concerns for human judgment, not to give approval when uncertain. A false LGTM is far worse than an unnecessary escalation.
-
Separate code correctness from approach completeness. A change can be correct code that is an incomplete approach. If you believe the code is right for what it does but the approach is insufficient (e.g., treats symptoms without investigating root cause, silently masks errors that should be diagnosed, fixes one instance but not others), the verdict must reflect the gap โ do not let "the code itself looks fine" collapse into LGTM.
-
Classify each โ ๏ธ and โ finding as merge-blocking or advisory. Before writing your summary, decide for each finding: "Would I be comfortable if this merged as-is?" If any answer is "no," the verdict must be "Needs Changes." If any answer is "I'm not sure," the verdict must be "Needs Human Review."
-
Devil's advocate check before finalizing. Re-read all your โ ๏ธ findings. For each one, ask: does this represent an unresolved concern about the approach, scope, or risk of masking deeper issues? If so, the verdict must reflect that tension. Do not default to optimism because the diff is small or the code is obviously correct at a syntactic level.
Where the Review Rules Live
Review rules are split by activity:
.github/skills/code-review/pr-assessment.md -- the Holistic PR Assessment criteria:
reviewer mindset, Motivation, Evidence, Approach, Cost-Benefit, Scope, Risk, and Codebase Fit.
Always load this. Use it to write the Motivation, Approach, and Summary fields of your output.
.github/instructions/*.instructions.md -- the code conventions themselves, shared with code
authoring and with the built-in Copilot code reviewer so there is a single source of truth.
You MUST load the files whose applyTo paths match the diff and treat them as the rule set
for this review, in addition to the process above.
Load, based on the paths in the diff:
src/** changed: .github/instructions/conventions.instructions.md -- change scope, code reuse and deduplication, established conventions, runtime-specific patterns, documentation and comments.
**/*.cs changed: .github/instructions/csharp.instructions.md -- C# error handling, thread safety, security, correctness, performance/allocation, API design, and style rules.
- Native files (
*.c / *.cpp / *.h / *.inc / *.S / *.asm) changed: .github/instructions/native.instructions.md -- C++ style, VM/JIT contracts, GC protection, platform defines, and interop/marshalling rules.
- Test files (
**/tests/**, src/tests/**) changed: .github/instructions/tests.instructions.md -- testing conventions and regression-test requirements.
- Area matches: also load any matching area file under
.github/instructions/ (for example .github/instructions/core-runtime.instructions.md, .github/instructions/jit.instructions.md, .github/instructions/system-net-*.instructions.md, .github/instructions/extensions-*.instructions.md, .github/instructions/compression.instructions.md, .github/instructions/cdac.instructions.md). These stack on top of the language rules. An area instruction file does not imply that a corresponding agent exists; invoke an area agent under .github/agents/ only when it actually exists and applies, as described in Step 2.
- Content matches (not path-based): if the diff uses
Vector128/Vector256/Vector512, Vector<T>, or System.Runtime.Intrinsics.* anywhere, apply the vectorization skill in addition to the above. SIMD code appears in arbitrary library files, so this trigger is keyed on content, not folder.
If a rule in a more specific file conflicts with a general one, the more specific file
wins. If any required instruction file cannot be loaded, note it in the review and fall
back to a careful first-principles review of that area.