dxreviewloop

Automate repeated code review passes until a clean pass gate is met for Dex workflows.

3|2|Updated Jan 25, 2026
One-click install
npx skills add https://github.com/mitchellfyi/dex --skill dxreviewloop
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dxreviewloop
Source: https://github.com/mitchellfyi/dex/tree/main/skills/dxreviewloop
Command: npx skills add https://github.com/mitchellfyi/dex --skill dxreviewloop

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manually running repeated code review waves until all issues are fixed and a clean pass gate is met is tedious and prone to human error for development teams using Dex for ticket-to-PR workflows. This skill eliminates that manual overhead by automating the entire review loop.

Core Features & Use Cases

  • Adaptive Review Profiles: Supports light, standard, and thorough review profiles with configurable clean pass counts and iteration limits to match project risk tolerance, with automatic escalation to thorough mode if a wave determines the current profile is too shallow.
  • Full-Scope Change Coverage: Reviews all committed branch changes, staged and unstaged local modifications, and untracked files, falling back to a full tracked codebase review if no change set is detected.
  • Automated Finding Resolution: Automatically fixes verified safe findings between review passes, resets the clean counter as needed, and continues the loop until the consecutive clean pass gate is met or an unrecoverable blocker is encountered. Use Case: A developer working on a Dex-managed ticket can use this skill to automate the review phase, avoiding the need to manually re-run review checks after fixing each batch of issues.

Quick Start

Use the dxreviewloop skill to run full-scope review waves for your active Dex ticket until the clean pass gate succeeds and all fixable findings are resolved.

Frequently Asked Questions about dxreviewloop

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

FAQPage Schema
How do I automate code review passes until a clean pass gate is met?

Automated code review passes run repeatedly until a consecutive clean pass gate is met. The loop reviews committed branch changes, staged and unstaged modifications, and untracked files, resolving verified safe findings between passes until the threshold is reached.

What is the best way to run a full-scope review on a Dex ticket-to-PR workflow?

Full-scope review on a Dex ticket-to-PR workflow evaluates all local modifications, committed branch changes, and untracked files. If no change set is detected, the review automatically falls back to scanning the entire tracked codebase.

Can I configure different review profiles for my ticket workflow?

Light, standard, and thorough review profiles are fully configurable to match project risk tolerance. The system escalates to thorough mode automatically if a review wave determines the current profile is too shallow to catch issues.

How does automated finding resolution work between review waves?

Automated finding resolution fixes verified safe issues between review waves. After applying fixes, the consecutive clean pass counter resets as needed, continuing the loop until the gate threshold is met or an unrecoverable blocker is encountered.

What happens if no git changes are detected during the review loop?

When no git change set is detected, the review loop falls back to executing a full tracked codebase review. This ensures the clean pass gate still evaluates the complete project state rather than skipping the review cycle.

When should I avoid using an automated review loop for code changes?

You should avoid automated review loops when encountering unrecoverable blockers that the system cannot auto-fix. Additionally, if your changes require manual architectural validation, the automated resolution of verified safe findings might prematurely reset the clean pass counter.