One-click install
npx skills add https://github.com/Dragoon0x/dragoon-skills --skill review-dragoon0x
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review
Source: https://github.com/Dragoon0x/dragoon-skills/tree/main/skills/review
Command: npx skills add https://github.com/Dragoon0x/dragoon-skills --skill review-dragoon0x

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Running separate tools for engineering code checks and design quality reviews is time-consuming, often misses overlapping issues, and slows down pull request workflows. This Skill consolidates all review steps into a single pass to eliminate that overhead.

Core Features & Use Cases

  • Unified Review Pipeline: Runs all 12 slop detection rules, lightweight engineering checks (unresolved TODO/FIXME markers, TypeScript any types, oversized files) and full design quality scoring in one run, no need to execute separate commands.
  • Flexible Scope Options: Supports reviewing entire directories, specific files, or only files changed in the git working tree via the --diff flag, making it ideal for PR reviews, pre-merge checks, and CI gating.
  • Real-World Use Case: Before merging a feature branch, run this Skill to catch both AI-generated design slop and overlooked technical debt in a single report, ensuring code and design quality meet team standards without switching between tools.

Quick Start

Use the review skill to run a unified code and design check on all changed files in your current git working tree.

Frequently Asked Questions about review

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

FAQPage Schema
How do I combine code review and design quality checks into a single pass?

Unified code and design review consolidates engineering quality checks like unresolved TODO detection and design critique into a single pass, eliminating the need to run separate tools. It catches overlapping issues and reduces pull request workflow overhead.

Can I run a code and design review on only the files changed in my git working tree?

Yes, code and design review supports reviewing only git-changed files via the --diff flag. This flexible scope option is ideal for pull request reviews, pre-merge checks, and CI gating without scanning the entire directory.

How do I detect AI-generated design slop in a pull request?

Design slop detection runs 12 automated rules during the review pass to flag AI-generated design slop. It also scores design quality against project-specific manifests to ensure code and design meet team standards before merging.

What engineering checks are included in a unified codebase audit?

A unified codebase audit includes lightweight engineering checks that flag unresolved TODO and FIXME markers, TypeScript any types, and oversized files. These checks run alongside slop detection and design quality scoring in one report.

Does unified code and design review work for CI gating and ad-hoc audits?

Yes, unified code and design review applies to CI gating, pre-merge validation, and ad-hoc codebase audits. It supports scanning entire directories, individual files, or only git-changed files to fit various pipeline requirements.