code-review

Reviews changed files in a session and attaches actionable inline comments to code.

Updated Aug 30, 2026
One-click install
npx skills add https://github.com/Tyrizx/Tyrizx --skill code-review-tyrizx
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/Tyrizx/Tyrizx/tree/main/src/vs/sessions/skills/code-review
Command: npx skills add https://github.com/Tyrizx/Tyrizx --skill code-review-tyrizx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually reviewing every change in a coding session is time-consuming and easy to skip, letting bugs, security issues, and inconsistencies slip through. This Skill automates the review pass by inspecting the session's changed files and surfacing concrete issues directly on the code. ## Core Features & Use Cases - Automated Change Detection: Identifies the set of changed files in the current session using git status and git diff. - Inline Review Comments: Attaches specific, actionable comments to exact file URIs and line ranges via the addComment tool, covering correctness, security, error handling, clarity, and test gaps. - Read-Only Safety: Never modifies files, commits, or pushes; its only output is review comments. - Use Case: After finishing a feature branch in your editor, trigger the review to get high-signal feedback on each changed line before opening a pull request. ## Quick Start Ask the agent to run a code review of the current session's changes and leave inline comments on any issues it finds.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I run an automated code review on my changes?▼

Trigger the code review skill after making changes in your session, for example via the Run Code Review button in the Changes toolbar. The agent inspects the changed files with git status and git diff, then leaves inline comments on specific lines.

What kinds of issues does an automated code review detect?▼

It checks correctness and edge cases, bugs and regressions, missing error handling, security and data-handling problems, naming and consistency with surrounding code, and gaps in tests or documentation introduced by the change.

Does the code review skill modify my files or commit changes?▼

No. The skill is strictly read-only: it never edits files, runs commits, pushes, or performs any write operations. Its only output is review comments attached to file URIs and line ranges.

Why does the review leave few or no comments on my changes?▼

The skill is instructed to prefer fewer, higher-signal comments over minor stylistic nits and to avoid commenting on code that is already correct. Few comments usually means no significant issues were found.

Can I customize the code review behavior?▼

Yes. The SKILL.md notes that you can customize the skill and save a copy to override the built-in behavior, and deleting that copy restores the default review workflow.