code_review

Spawns an architect subagent for code analysis, planning, and debugging.

Updated Mar 6, 2026
One-click install
npx skills add https://github.com/gopaljilab/Gupta-Portfolio --skill code-review-gopaljilab
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code_review
Source: https://github.com/gopaljilab/Gupta-Portfolio/tree/main/.local/skills/code_review
Command: npx skills add https://github.com/gopaljilab/Gupta-Portfolio --skill code-review-gopaljilab

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you finish building a major feature or hit a hard bug, you need deep architectural analysis rather than quick edits. This Skill delegates that work to a specialized architect subagent that reviews code, plans implementations, and performs root cause analysis without making changes itself. ## Core Features & Use Cases - Task Evaluation: Assess completed or ongoing work against stated goals using the evaluate_task responsibility. - Implementation Planning: Generate structured plans with task decomposition and sequencing for new features. - Root Cause Debugging: Analyze regressions with optional git diffs and commit ranges to pinpoint failures. - Use Case: After implementing rate limiting on your API, spawn the architect with the middleware and route files to verify the design, or pass a failing session validation function with the recent git diff to find the regression. ## Quick Start Ask the architect to review the authentication module files and evaluate whether the recent changes meet the original design goals.

Frequently Asked Questions about code_review

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

FAQPage Schema
How do I get an architectural review of my code?▼

Call the architect function with a specific task description and the full paths of relevant files. Set responsibility to evaluate_task for reviewing completed work, plan for designing new features, or debug for investigating issues.

How to debug a regression using git history?▼

Pass the failing function's file paths, set responsibility to debug, and enable includeGitDiff to show unstaged changes. You can also provide relevantGitCommits like HEAD~3..HEAD so the architect analyzes recent history.

When should I use the architect subagent versus editing code directly?▼

Use the architect for analysis, planning, and debugging guidance only. It does not perform file edits or implementation; for tasks requiring code changes, use the delegation skill instead.

Can the architect analyze files I don't explicitly provide?▼

No. The architect can only analyze files passed in the relevantFiles parameter. You must supply full file paths for every file you want included in the analysis.

What are the limitations of the code review architect?▼

The architect provides strategic guidance rather than implementation and cannot modify files. It is not suited for simple tasks, read-only lookups better handled by grep or glob, or work requiring direct edits.