code-review

Reviews code across six aspects with root cause analysis and prioritized fixes.

3|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/trudyan141/my-antigravity-agents-kit --skill code-review-trudyan141
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/trudyan141/my-antigravity-agents-kit/tree/main/templates/.agent/skills/code-review
Command: npx skills add https://github.com/trudyan141/my-antigravity-agents-kit --skill code-review-trudyan141

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code reviews often stay superficial, missing root causes, cross-file impacts, and real-world priority. This Skill turns an AI assistant into a senior architect that delivers deep, context-aware reviews with actionable, working-code solutions instead of vague comments. ## Core Features & Use Cases - Six Review Aspects: Covers architecture & design, code quality, security & dependencies, performance & scalability, testing quality, and documentation & API design. - Root Cause Analysis: Every issue is explained at three levels (what, why, how) with working code fixes, not just problem statements. - Impact-Based Prioritization: Findings are classified as Critical, High, Medium, or Low based on real-world impact like security risks, hot paths, and data loss. - Use Case: After a large feature branch is ready, invoke this Skill to detect duplicated validators across the codebase, find a memory leak in a React component, and receive refactored code snippets plus a structured review report. ## Quick Start Ask the assistant to review the recent changes in your project using the code-review skill and provide prioritized feedback with fixes.

Frequently Asked Questions about code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get a deep code review with actionable fixes?

Invoke the code-review skill after significant code changes. It analyzes six aspects including architecture, security, and performance, then returns prioritized issues with root cause analysis and working code solutions for each finding.

What aspects does an automated code review cover?

This review covers six areas: architecture and design, code quality, security and dependencies, performance and scalability, testing quality, and documentation and API design. Multiple review instances can run in parallel for full coverage.

How are code review issues prioritized by severity?

Issues are classified into four tiers: Critical for security vulnerabilities and data loss risks, High for hot-path performance and broken error handling, Medium for maintainability concerns, and Low for style inconsistencies and minor optimizations.

Does the code review adapt to my project's conventions?

Yes. Before reviewing, it reads project documentation like README and CONTRIBUTING files, detects patterns such as Result types, dependency injection, and state management, then verifies new code follows the discovered conventions.

Can code review detect duplication and cross-file issues?

Yes. It uses grep and git history analysis to find duplicated logic across files, identify high-churn files needing refactoring, check test coverage for reviewed components, and verify all call sites are handled after changes.