Marketplace 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.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/0xmsc/review-code" ~/.claude/skills/aiskillstore-marketplace-review-code && rm -rf "$T"
manifest:
skills/0xmsc/review-code/SKILL.mdsource content
Code Review Skill
Workflow
- Understand: Read context (ticket, PR description) and identifiy scope.
- Execute: Use the checklist in references/checklist.md.
- Core areas: Quality, Security, Performance, Maintainability.
- Tools: Run project-specific linting and testing commands (e.g.,
,just lint
,npm test
); use static analysis if available.pytest - Document: Provide constructive feedback with rationale and suggestions.
- Follow Up: Track and verify fixes.
References
: Detailed review criteria.checklist.md