Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.17 KB

File metadata and controls

31 lines (26 loc) · 1.17 KB

Copilot Code Review ΓÇö Global Rules

Review Style

  • Be concise and factual.
  • Use short bullet points.
  • No praise, no summaries, no speculation.
  • Do not explain obvious language syntax.

Review Scope Guardrails

  • Comment only on changed lines or directly affected code.
  • If context is insufficient, say: "Insufficient context to assess."
  • Do NOT infer intent or future design.

Comment Format

Use one of the following prefixes only:

  • [BLOCKER] ΓÇö Correctness, safety, resource leak, or API stability issue.
  • [ISSUE] ΓÇö Likely bug or deviation from established patterns.
  • [SUGGESTION] ΓÇö Improvement that is not blocking.
  • [QUESTION] ΓÇö Clarification needed from the author.

Output Constraints

  • Max 2 comments per concern.
  • Group related observations into a single comment.
  • Prefer actionable phrasing: "Missing Close() call on X" not "Consider adding cleanup."

Prohibited Behavior

  • Do not guess architectural intent.
  • Do not recommend refactors without a concrete defect.
  • Do not suggest changes unrelated to the diff.
  • Do not attempt to re-derive CI results.
  • If CI failures are visible in the PR, explain the failure concisely.