Guard · Review queue

Review queue

The Review queue is one team-wide table of the code changes and pull requests waiting on a human reviewer. Each row shows the change, the diff-review findings rolled up for it, the assigned reviewer, and the status. It is a paid team capability on the hosted dashboard, and it is separate from the desktop Review tab, which reviews your local working-tree diff.

Where to find it

  • Hosted route: repoops.ai /team/review
  • List API: GET /api/team/review-queue (optional ?status=)
  • Mutate API: POST /api/team/review-queue { action: "assign" | "status", id, ... }
  • Data layer: website/lib/review-queue.ts

What it does for you

One place for everything waiting on reviewThe queue lists each change with its repo, PR number, and source in a single team-scoped table, ordered newest first. A team only ever reads its own queue; every query is scoped to the current team.
Assign a reviewer and move the item alongMembers pick a reviewer from the team roster and set status through open, in review, approved, changes requested, and merged. Assigning a reviewer to an open item moves it to in review automatically.
See the review findings without leaving the rowWhen diff-review findings exist for an item, the row shows the total count and any high-severity count, with the top findings (file, line, and rationale) on hover. The item's link opens the pull request for the full detail.
Distinct from the AI approval gateThis queue tracks human reviewer assignment and status on a diff or PR. It does not gate autonomous agent writes; that is the separate action-approval queue. Automatic ingestion from the GitHub App into this queue is not yet wired, so items do not populate from pull requests on their own today.

Read more