← ClaudeAtlas

review-and-fixlisted

Review MULTIPLE open pull requests in one pass — discovers the open PRs (or the ones you name), runs `/branch-review` per PR in an isolated git worktree, and archives every report to `outputs/reviews/YYYYMMDD-<branch>.md` with a fixed/not-fixed flag plus a roll-up index. Optional `--apply-fixes` is forwarded to each per-PR review; design decisions from all PRs are batched and escalated once at the end. Use for "review my PRs", "check the open PRs", "review all open pull requests", "fix PR issues", "PR fleet review", "audit the open PRs", or German "review meine PRs", "check die offenen PRs", "alle PRs prüfen", "PRs reviewen und fixen", "offene Pull Requests durchgehen". DO NOT trigger for a single diff on the branch you already have checked out — use /branch-review. DO NOT trigger for a whole-repo audit without PR context — use /full-project-review.
lx-wnk/skills · ★ 1 · Code & Development · score 71
Install: claude install-skill lx-wnk/skills
# Review and Fix (PR Fleet) Review a set of pull requests in one pass: one isolated worktree per PR, one `/branch-review` per PR, one archived report per PR. ## Scope **This skill orchestrates. It does not review.** Every finding comes from `/branch-review`; this skill contributes PR discovery, isolation, concurrency control, archiving, and a single batched escalation at the end. Does: - Resolve which PRs to review (named numbers, or all open ones). - Give each PR its own git worktree so the user's working tree is never touched. - Run `/branch-review` per PR against that PR's own base branch, forwarding `--apply-fixes` / `--no-simplify`. - Archive each `Findings.md` to `outputs/reviews/YYYYMMDD-<branch>.md` with a fix-status header. - Maintain `outputs/reviews/index.md` as the roll-up across runs. - Collect the design decisions of all PRs and present them **once**, batched, at the end. Does NOT: - Merge, close, rebase, or retarget PRs. Resolve merge conflicts. Fix CI. - Duplicate review logic — if a review dimension is missing, fix it in `/branch-review`, not here. - Review the currently checked-out branch without PR context — that is `/branch-review`. ## Examples ```bash # Review every open PR, read-only /review-and-fix # Review three specific PRs and apply the clear fixes /review-and-fix 42 57 63 --apply-fixes # Fix mode, no /simplify pass, six PRs in flight at once /review-and-fix --apply-fixes --no-simplify --parallel 6 # Include draft PRs (excluded by default