Mandatory pre-commit validation for every Copilot code review on pull requests in the regle monorepo. Always verify commitlint compliance on commit titles and descriptions, pnpm workspace install, lint (vp lint), and format (vp fmt --check). Loaded on every code review — do not skip.
Scanned 8/31/2026
Install to Claude Code
npx -y skills add victorgarciaesgi/regle --skill code-review --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Code Review?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/victorgarciaesgi-code-review)More formats (shields.io, HTML) on the badges page.
---
name: code-review
description: >-
Mandatory pre-commit validation for every Copilot code review on pull requests
in the regle monorepo. Always verify commitlint compliance on commit titles and
descriptions, pnpm workspace install, lint (vp lint), and format (vp fmt
--check). Loaded on every code review — do not skip.
---
# Code review — pre-commit validation
**Apply on every pull request review.** These checks are blocking. Do not approve a PR until all pass or the author has addressed failures.
## Review checklist (run every time)
| # | Gate | Command | On failure |
|---|------|---------|------------|
| 1 | Commit messages | `printf '%s' "$MSG" \| pnpm exec commitlint` per commit | Blocking comment + suggested fix |
| 2 | Workspace | `test -f node_modules/.modules.yaml` | Request `pnpm install` |
| 3 | Lint | `pnpm run lint` | Blocking; suggest `pnpm run lint:fix` |
| 4 | Format | `pnpm run fmt:check` | Blocking; suggest `pnpm run fmt` |
Run all commands from the repo root after `pnpm install`.
## Commit messages (commitlint)
Every commit must follow [Conventional Commits](https://www.conventionalcommits.org/) per `commitlint.config.ts` (`@commitlint/config-conventional`).
```
type(optional-scope): imperative subject
Optional body explaining why.
```
- Types: `feat`, `fix`, `docs`, `style`, `refactor`, `perf`, `test`, `chore`, `ci`, `build`
- Subject: lowercase, imperative mood, no trailing period
- Blank line between title and body when a body is present
## Auto-fix loop
```bash
pnpm run lint:fix
pnpm run fmt
pnpm run lint
pnpm run fmt:check
```
## Common commitlint failures
| Error | Fix |
|-------|-----|
| `type-empty` / `subject-empty` | Use `type: subject` format |
| `type-enum` | Use an allowed conventional type |
| `subject-case` | Keep subject lowercase |
| `subject-full-stop` | Remove trailing `.` from subject |
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!