| name | code-reviewer |
| description | Reviews pull requests and suggests improvements |
| version | 1.0.0 |
| author | platform-team |
| tags | ["code-quality","pull-requests","review"] |
Code Reviewer
This skill reviews code changes in pull requests and provides actionable,
constructive feedback to help teams ship better code faster.
Usage
When a pull request is opened or updated, invoke this skill with the diff.
It will analyze the changes and post inline review comments covering:
- Code style violations and formatting inconsistencies
- Potential bugs, logic errors, or off-by-one mistakes
- Missing test coverage for new or changed code paths
- Performance concerns (N+1 queries, unnecessary allocations)
- Security issues (unsanitized input, hardcoded secrets)
Configuration
| Option | Default | Description |
|---|
max_comments | 10 | Maximum comments per review |
severity_filter | low | Minimum severity to report |
language_hints | auto | Comma-separated language overrides |
Examples
Reviewing a Python PR
Review the open PR and focus on error handling and type safety.
Reviewing with a strict filter
Review this diff but only flag high-severity issues.
Guidelines
- Be constructive and specific — suggest fixes, not just problems
- Respect the author's intent and coding style preferences
- Group related comments when multiple lines share the same issue
- Praise good patterns when you see them, not just flag bad ones
- Keep comments concise; link to docs instead of long explanations