multiAI Summary Pending

review-code

Provides a structured workflow for planning and executing code reviews like a senior engineer. Use when asked to review code, PRs, or plan a code review task.

231 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/review-code/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/0xmsc/review-code/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/review-code/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How review-code Compares

Feature / Agentreview-codeStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Provides a structured workflow for planning and executing code reviews like a senior engineer. Use when asked to review code, PRs, or plan a code review task.

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Code Review Skill

## Workflow
1. **Understand**: Read context (ticket, PR description) and identifiy scope.
2. **Execute**: Use the checklist in [references/checklist.md](references/checklist.md).
   - Core areas: Quality, Security, Performance, Maintainability.
3. **Tools**: Run project-specific linting and testing commands (e.g., `just lint`, `npm test`, `pytest`); use static analysis if available.
4. **Document**: Provide constructive feedback with rationale and suggestions.
5. **Follow Up**: Track and verify fixes.

## References
- `checklist.md`: Detailed review criteria.