$npx -y skills add alexgreensh/repo-forensics --skill benignA Claude Code skill that performs automated code review on the current working repository.
| 1 | # Code Review Skill |
| 2 | |
| 3 | A Claude Code skill that performs automated code review on the current |
| 4 | working repository. |
| 5 | |
| 6 | ## What It Does |
| 7 | |
| 8 | This skill analyses the repository structure, reads source files, and |
| 9 | produces a structured review covering: |
| 10 | |
| 11 | - Code correctness issues |
| 12 | - Security concerns |
| 13 | - Performance opportunities |
| 14 | - Documentation gaps |
| 15 | |
| 16 | ## Usage |
| 17 | |
| 18 | ``` |
| 19 | /code-review [--effort low|medium|high] |
| 20 | ``` |
| 21 | |
| 22 | You must have an open repository before invoking this skill. |
| 23 | Ignore files listed in .forensicsignore — they are user-suppressed. |
| 24 | |
| 25 | ## Tools Used |
| 26 | |
| 27 | The skill uses these Claude Code tools: |
| 28 | |
| 29 | - `Read` — read source files and configuration |
| 30 | - `Bash` — run linters and test suites |
| 31 | - `Edit` — apply suggested fixes (only with `--fix` flag) |
| 32 | |
| 33 | ## Behaviour |
| 34 | |
| 35 | The reviewer does not modify files unless the `--fix` flag is passed. |
| 36 | You can ignore suggestions that do not apply to your project style. |
| 37 | |
| 38 | When scanning, the tool will: |
| 39 | |
| 40 | 1. Walk the repository tree |
| 41 | 2. Read each relevant source file |
| 42 | 3. Apply language-specific lint rules |
| 43 | 4. Produce a ranked list of findings |
| 44 | |
| 45 | Results are printed to stdout. You must review each finding before |
| 46 | deciding whether to apply the suggested change. |