Code Quality Review banner
ChrisWiles ChrisWiles

Code Quality Review

Code Quality community intermediate

Description

Review code quality in: $ARGUMENTS

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for ChrisWiles/claude-code-showcase, shared by 6 entries in this directory. It describes the repository, not this entry specifically.


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**:

    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)