# Code Review

> Code review for issues, style consistency, best practices—use for full code evaluation; not for debugging specific errors or fixing individual style violations.

- Skill: `chainlesschain/code-review` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add chainlesschain/code-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/chainlesschain/code-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: chainlesschain (https://skillmd.com/u/chainlesschain)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/chainlesschain/code-review

---


# Code Review Skill

Performs comprehensive code review on provided code snippets or files.

## Usage

```
/code-review [file_path or code snippet]
```

## What This Skill Analyzes

1. **Code Quality**
   - Variable naming conventions
   - Function/method complexity
   - Code duplication

2. **Best Practices**
   - Error handling
   - Input validation
   - Security considerations

3. **Style**
   - Formatting consistency
   - Comment quality
   - Documentation

4. **Performance**
   - Obvious inefficiencies
   - Memory usage patterns
   - Algorithm complexity

## Output Format

The review will include:

- Summary of findings
- List of issues with severity (critical/warning/info)
- Specific recommendations with code examples
- Overall code quality score (1-10)

## Examples

Review a specific file:

```
/code-review src/main/database.js
```

Review inline code:

```
/code-review
function foo(x) {
  return x * 2;
}
```

