Add code-review agent skill for GitHub Copilot code review - #55
Closed
framinosona wants to merge 1 commit into
Closed
framinosona wants to merge 1 commit into
framinosona wants to merge 1 commit into
Conversation
Checklist for file-per-category organization, generic INumber<T> usage, and null/boundary safety on new extension methods.
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The change is limited to adding a well-formed, repo-consistent skill/checklist document with no functional code impact.
Pull request overview
Adds a repository-level GitHub Copilot code-review “agent skill” document to provide consistent, repo-specific review guidance for extension-method PRs in Plugin.BaseTypeExtensions.
Changes:
- Add
.github/skills/code-review/SKILL.mddefining thecode-reviewskill metadata and a reviewer checklist tailored to this repository’s conventions.
File summaries
| File | Description |
|---|---|
.github/skills/code-review/SKILL.md |
Introduces the code-review skill and a checklist focusing on extension-method organization, generic math (INumber<T>), and null/boundary safety. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
3 tasks
Member
Author
|
Consolidating into #54 so this repo's hygiene pass lands as a single PR — |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
.github/skills/code-review/SKILL.md— a reviewer's checklist: one-file-per-categoryorganization, generic
INumber<T>usage over per-type overloads, null/boundary safety, andwhere standalone helpers (
ComparableTools/NumericRangeTools) belong vs. extension methods.Why
Follow-up to #54 (community-health files) — GitHub's Copilot code review now supports repo-level
"agent skills" (GA 2026-07-29) that give the automated reviewer repo-specific context beyond
general instructions.
Test plan