What problem does it solve? Uncommitted feature work often hides logic bugs and formatting or lint drift that fail CI gates even when the code compiles. This Skill reviews the working-tree diff, fixes issues it finds, and loops verification until every CI gate passes. ## Core Features & Use Cases - CI Gate Verification: Runs the exact CI checks (cargo fmt --check, clippy, cargo test, go vet, tsc) against the real workflow config instead of trusting that the code merely builds. - Diff-Focused Bug Review: Reads each changed file's diff for control-flow errors, mirrored-logic drift, shared-state hazards, and off-by-one boundary bugs. - Concurrent Session Isolation: Distinguishes errors in files you touched from in-flight work by other agent sessions, avoiding accidental interference. - Use Case: After finishing a feature across the Rust core and Go TUI, ask for a review of your uncommitted changes; the Skill finds a formatting failure and a duplicated-list drift bug, fixes both, and re-runs all gates until green. ## Quick Start Review my uncommitted git changes, fix any bugs or issues you find, and keep looping until all CI checks pass.