code-review

Automate pre-commit code quality checks for TypeScript and JavaScript.

Updated Feb 5, 2026
One-click install
npx skills add https://github.com/twlines/maslow --skill code-review-twlines
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/twlines/maslow/tree/main/skills/code-review
Command: npx skills add https://github.com/twlines/maslow --skill code-review-twlines

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps developers maintain high code quality and consistency by providing a checklist for self-review before committing changes, reducing the likelihood of introducing bugs or style violations.

Core Features & Use Cases

  • Type Safety Verification: Checks for the absence of any types and ensures proper type annotations.
  • Code Style Enforcement: Verifies adherence to specific formatting rules like indentation and quote usage.
  • Correctness Checks: Identifies unused imports, variables, and potential circular dependencies.
  • Minimality Assurance: Confirms that only necessary changes are made and no extra dependencies are introduced.
  • Use Case: Before pushing a feature branch, run this Skill to catch common errors and style issues, ensuring a smoother code review process.

Quick Start

Run the code-review skill to perform a self-review of your current code changes.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I enforce TypeScript coding standards before a git commit?

To enforce TypeScript coding standards before a commit, run an automated code review checklist that verifies type safety, checks for `any` types, and ensures proper type annotations are present in your code changes.

What does a pre-commit code review check for in JavaScript projects?

A pre-commit code review checks JavaScript projects for type safety, consistent style, correctness, and minimality. It specifically identifies unused imports, variables, and potential circular dependencies to prevent bugs.

Can I use an automated checklist to verify JavaScript code style and indentation?

Yes, an automated code review checklist can verify JavaScript code style by checking for adherence to specific formatting rules, including proper indentation and quote usage, before you commit your changes.

How do I ensure my code changes are minimal and introduce no extra dependencies?

To ensure code changes are minimal and introduce no extra dependencies, perform a pre-commit self-review that confirms only necessary modifications are made and no additional dependencies are added to the project.

Does pre-commit code review work for catching unused imports and variables?

Yes, pre-commit code review works for catching unused imports and variables. It performs correctness checks during the self-review process to identify unused code and potential circular dependencies before pushing a feature branch.