From cfbd1403a84cbbb9a3a8d7ab301adbe61dce0342 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 2 Sep 2026 23:15:15 +0200 Subject: [PATCH] Add a code review skill for AI Added guidelines for code review process in SKILL.md. @priya-sundaram-dev --- .github/skills/code-review/SKILL.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/skills/code-review/SKILL.md diff --git a/.github/skills/code-review/SKILL.md b/.github/skills/code-review/SKILL.md new file mode 100644 index 000000000000..ac290c299363 --- /dev/null +++ b/.github/skills/code-review/SKILL.md @@ -0,0 +1,13 @@ +Pull request-related rules in CONTRIBUTING.md should be observed in pull requests. + +Reviews should start with an `Is this an algorithm?` section that evaluates the PR for criteria in the `what-is-an-algorithm` section of CONTRIBUTING.md + +Compliance with the coding-style and other-requirements-for-submissions sections of CONTRIBUTING.md should also be verified. + +Does this pull request add, change, or delete multiple algorithms? + +Is this algorithm already in this repository? + +Is there another open pull request created earlier that is similar to this pull request? + +Was this algorithm plagiarized without giving proper credit?