code-review
Installation
SKILL.md
Code Review
Perform a thorough senior-level code review on recent changes. Focus human review on complex logic, architecture, and edge cases. Delegate style enforcement to automated tools.
Related Skills:
kavak-documentation- Query for Kavak-specific patterns, logging/metrics standards, GitLab CI templates- Use
kavak-platform/platform_docs_searchMCP tool to verify Kavak best practices when reviewing
Quick Start
# 1. Get review range
BASE_SHA=$(git rev-parse HEAD~1) # or: git merge-base main HEAD
HEAD_SHA=$(git rev-parse HEAD)
# 2. See what changed
git diff --stat $BASE_SHA..$HEAD_SHA
git diff --name-only $BASE_SHA..$HEAD_SHA --diff-filter=ACMR