What problem does it solve?
Reviewing uncommitted local changes for AI slop and redundant code is messy when done in the main working tree, and mixing the original work with review-driven refactors in one commit makes both hard to evaluate. This Skill snapshots the work as a baseline commit, moves the review into a throwaway git worktree, and lands the cleanup as a separate refactor commit.
Core Features & Use Cases
- Baseline Commit Isolation: Stages and commits only the cohesive local change using the repo's conventional commit style, capturing the exact SHA as the sole review target.
- Worktree-Based Review: Creates a lightweight git worktree so the main checkout stays free while a thermo-nuclear code quality review runs scoped strictly to that one commit.
- Separate Refactor Commit: Triages findings, verifies dead-code claims with grep, applies behavior-preserving fixes, and lands them as a distinct follow-up commit before fast-forward merging back.
- Use Case: After finishing a feature with uncommitted changes, invoke the skill to get an independent audit of just that work, with the cleanup kept as its own reviewable commit.
Quick Start
Ask the assistant to run nv-park-and-review on your current uncommitted changes to audit them for AI slop and redundant code.