---
title: "Code Quality Review"
description: "Review code quality in: $ARGUMENTS"
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/code-quality
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:14:12.214Z
license: CC-BY-4.0
attribution: "Code Quality Review — Claudary (https://claudary.paisolsolutions.com/skills/code-quality)"
---

# Code Quality Review
Review code quality in: $ARGUMENTS

## Overview

---
description: Run code quality checks on a directory
allowed-tools: Read, Glob, Grep, Bash(npm:*), Bash(npx:*)
---

# Code Quality Review

Review code quality in: $ARGUMENTS

## Instructions

1. **Identify files to review**:
   - Find all `.ts` and `.tsx` files in the directory
   - Exclude test files and generated files

2. **Run automated checks**:
   ```bash
   npm run lint -- $ARGUMENTS
   npm run typecheck
   ```

3. **Manual review checklist**:
   - [ ] No TypeScript `any` types
   - [ ] Proper error handling
   - [ ] Loading states handled correctly
   - [ ] Empty states for lists
   - [ ] Mutations have onError handlers
   - [ ] Buttons disabled during async operations

4. **Report findings** organized by severity:
   - Critical (must fix)
   - Warning (should fix)
   - Suggestion (could improve)

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/code-quality) · https://claudary.paisolsolutions.com
