review-and-fixlisted
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