reviewing-code-quality

Diagnose code quality issues across six axes without rewriting source code.

Updated Jan 23, 2026
One-click install
npx skills add https://github.com/pipemind-com/pipemind-marketplace --skill reviewing-code-quality-pipemind-com
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: reviewing-code-quality
Source: https://github.com/pipemind-com/pipemind-marketplace/tree/main/plugins/spec-driven-development/skills/reviewing-code-quality
Command: npx skills add https://github.com/pipemind-com/pipemind-marketplace --skill reviewing-code-quality-pipemind-com

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill provides a structured, automated assessment of code quality across six axes, returning a diagnostic report instead of rewriting the code.

Core Features & Use Cases

  • Evaluate Purity & State Management to spot hidden side effects and mutable state.
  • Assess Testability & Modularity to identify hard-to-test components and coupling.
  • Measure Abstraction Fitness to detect unnecessary generalization or insufficient encapsulation.
  • Evaluate Readability & Structure to flag unclear naming and complex control flow.
  • Review Documentation Quality for missing or outdated docs and public API clarity.
  • Verify Robustness & Correctness to catch input validation gaps and error-path vulnerabilities.
  • Use Case: during code reviews, PR checks, or CI pipelines to surface actionable quality improvements without altering source code.

Quick Start

Provide the code snippet, file path, directory, or glob pattern to evaluate.

Frequently Asked Questions about reviewing-code-quality

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

FAQPage Schema
How do I perform an automated code quality review without rewriting the source?

Automated code quality review can be performed by providing a file path or code snippet to evaluate, which generates a diagnostic report across six axes without altering the original source code.

What is structured code quality assessment and what dimensions does it evaluate?

Structured code quality assessment is a diagnostic process that evaluates code across six axes: Purity, Testability, Abstraction Fitness, Readability, Documentation, and Robustness, reporting per-axis severity.

Can I use this static analysis for code reviews in a CI pipeline?

Yes, static analysis for code reviews is applicable in CI pipelines and PR checks to surface actionable quality improvements and error-path vulnerabilities without modifying the source.

How do I check code readability and modularity for hard-to-test components?

To check code readability and modularity, you assess testability and structure by providing your codebase to the evaluation tool, which flags unclear naming, complex control flow, and coupling.

Does this quality assessment tool support analyzing an entire codebase or only single files?

This quality assessment tool supports both single files and whole codebases, allowing you to provide a code snippet, file path, directory, or glob pattern for evaluation.

What is the best way to detect hidden side effects and mutable state in my code?

The best way to detect hidden side effects and mutable state is to evaluate Purity and State Management, a diagnostic process that identifies these issues and reports their severity without changing source.