What problem does it solve? Iterating on code review feedback manually is slow and easy to abandon halfway. This Skill automates a converging cleanup loop on a pull request: it repeatedly runs simplification passes and then code-review-with-fix passes until each phase returns zero new findings, committing and pushing along the way. ## Core Features & Use Cases - Phase A simplify loop: Invokes the simplify skill's 4-lens review (reuse, simplification, efficiency, altitude), applies fixes, runs scoped tests, commits, and pushes after each pass until no new findings remain. - Phase B code-review loop: Runs the real code-review command headlessly via claude -p "/code-review low --fix" with a fallback to the e-code-review skill, repeating until a pass reports zero findings. - Stack-aware fixes: Loads the full PR stack from base through the target PR before applying any fix, so changes fit the stack's design and intent. - Use Case: You have a draft PR that needs polish before review. Ask to run sr-loop on the PR URL; the loop simplifies, reviews, fixes, tests, commits, pushes, and finally marks the PR ready with gh pr ready. ## Quick Start Run the sr-loop skill on my current branch's pull request to simplify and code-review it until clean.