ts-03-review

Review changed TypeScript files from git diff and produce a fix checklist.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/tak-bro/claude-code --skill ts-03-review
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ts-03-review
Source: https://github.com/tak-bro/claude-code/tree/main/skills/ts-03-review
Command: npx skills add https://github.com/tak-bro/claude-code --skill ts-03-review

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

TypeScript projects often suffer from inconsistent typings and brittle code; this skill identifies issues in changed files and provides actionable fix-checklists for the next phase.

Core Features & Use Cases

  • Focused Review: Analyzes only changed files (git diff --name-only) to keep reviews targeted.
  • Critical Checks: Enforces a set of essential TS checks (export naming, usage of any with justification, function vs arrow, null/undefined guards, and barrel exports) to improve reliability.
  • Output & Guidance: Produces a Fix Checklist for the next phase and a structured scoring signal.

Quick Start

Review the changed TypeScript files on the current branch to produce a fix checklist for the next phase.

Frequently Asked Questions about ts-03-review

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

FAQPage Schema
How do I review only changed TypeScript files in a pull request?

To review changed TypeScript files, this skill uses git diff to identify modified files and enforces critical TS checks, producing a fix checklist. It targets only the changed code to keep reviews focused.

What TypeScript code quality checks should I enforce during a code review?

Essential TypeScript code quality checks include export naming, justifying any usage, choosing function versus arrow declarations, adding null and undefined guards, and managing barrel exports. This skill enforces these checks automatically on changed files.

How do I generate a fix checklist for TypeScript issues in a commit?

Generating a fix checklist for TypeScript issues involves analyzing git diff output for the commit and applying static analysis rules. This skill produces a structured fix checklist and scoring signal for the next phase.

Does this TypeScript review tool work with git diff?

Yes, this TypeScript review tool works directly with git diff. It uses the git diff command to identify changed files on your branch and applies critical static analysis checks exclusively to those modified files.

What is the best way to find brittle typings and inconsistent code in TypeScript changes?

The best way to find brittle typings in TypeScript changes is to run a focused static analysis on git diff output. This skill identifies inconsistent typings in modified files and provides an actionable fix checklist.

Can I get a structured score for TypeScript code quality in modified files?

Yes, you can get a structured score for TypeScript code quality. This skill analyzes changed files, applies critical checks, and outputs a consistent scoring signal alongside a fix checklist to guide next steps.