Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/skills/code-review/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Review a pull request against the rules already written in
[`CONTRIBUTING.md`](../../../CONTRIBUTING.md). The goal is a review that any
reviewer (human or AI) can run the same way every time and that produces a clear,
reviewer (human or AI) can run the same way every time, and that produces a clear,
kind, actionable verdict.

## How to run this skill
Expand All @@ -16,13 +16,16 @@ suggest the fix — never just "rejected".
- [ ] The change adds, fixes, or documents **one algorithm** — not multiple, and
not both code and doctest changes in the same PR.
- [ ] It is a genuine algorithm or data structure (see the *What is an Algorithm?*
section), not a script, snippet, or exercise dump.
section), not a script, snippet, how-to-use for an existing API, or exercise
dump.
- [ ] It is **not already in the repository** (search the existing directories).
- [ ] **No earlier open PR** already does the same thing — link it if one exists.
- [ ] Properly attributed — no plagiarism; prior sources credited.

### 2. Coding Style

- [ ] `from __future__ import annotations` is not needed because this repo only uses
the latest version of CPython.
- [ ] File and directory names are lowercase, use underscores, and land inside an
existing directory.
- [ ] Public functions/classes have **type hints**.
Expand Down
1 change: 1 addition & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,7 @@

## Fuzzy Logic
* [Fuzzy Operations](fuzzy_logic/fuzzy_operations.py)
* [Fuzzy Set Operations](fuzzy_logic/fuzzy_set_operations.py)

## Genetic Algorithm
* [Basic String](genetic_algorithm/basic_string.py)
Expand Down