> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coderabbit.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Requirements and FAQ

> Who can open Triage, what plan and provider it needs, and which actions require a Review seat.

export const OpenBetaBadge = ({tip = "This feature is currently in open beta. We are actively improving it based on your feedback. If you encounter any issues or have suggestions, please share them on our Discord community or visit the support page.", title = "Open Beta", cta = "Contact support", href = "/support", disabled = false}) => {
  return <Tooltip tip={tip} cta={cta} href={href}>
        <Badge icon="badge-alert" disabled={disabled || undefined}>
            {title}
        </Badge>
    </Tooltip>;
};

export const TeamPlanBadge = ({tip = "This feature is available on Team (formerly Pro+), Advanced, and Enterprise. Please refer to our pricing page for more information about our plans and features.", title = "Team Plan", cta = "Read more", href = "https://coderabbit.ai/pricing", disabled = false}) => {
  return <Tooltip tip={tip} cta={cta} href={href}>
        <Badge icon="shield-plus" disabled={disabled || undefined}>
            {title}
        </Badge>
    </Tooltip>;
};

export const GitHubBadge = ({tip = "This feature is available on GitHub and GitHub Enterprise.", title = "GitHub", cta, href, disabled = false}) => {
  return <Tooltip tip={tip} cta={cta} href={href}>
        <Badge icon="github" disabled={disabled || undefined}>
            {title}
        </Badge>
    </Tooltip>;
};

<GitHubBadge title="GitHub Cloud" tip="Triage is available on GitHub Cloud. GitHub Enterprise Server is not supported." /> | <TeamPlanBadge /> <OpenBetaBadge />

## Who can open Triage

| Requirement  | Detail                                                                                                                                                             |
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Plan         | Team or higher. See [Plans](/management/plans).                                                                                                                    |
| Git provider | GitHub Cloud. Triage cannot be opened by GitLab, Bitbucket, or GitHub Enterprise Server organizations, and is not available on self-hosted CodeRabbit deployments. |
| Organization | Must be backed by an active CodeRabbit workspace, and you must be a member of it.                                                                                  |
| Rollout      | Triage is in beta and is enabled per organization. Meeting every requirement above does not guarantee that it is switched on for yours yet.                        |

If Triage does not open for you, the page names the specific requirement you are missing — see [When Triage will not open](/triage/troubleshooting#when-triage-will-not-open) to match the message you see.

Triage shows only the repositories you can see. Membership in the CodeRabbit organization is not enough on its own: the queue is scoped to the repositories your signed-in GitHub account can access, and archived repositories are excluded.

## What needs a Review seat

Any member of an eligible organization can **open Triage and read the queue** without a Review seat. Reading includes every view, filter, grouping, and card signal.

Actions that write to your Git provider or spend model capacity require an **active Review seat**:

| Action                                    | Review seat  |
| ----------------------------------------- | ------------ |
| Browse, filter, group, and save views     | Not required |
| Read every signal on a card               | Not required |
| Ignore or reject a close candidate        | Not required |
| Start a CodeRabbit review                 | Required     |
| Close a pull request                      | Required     |
| Request, remove, or re-request a reviewer | Required     |
| Set a manual priority                     | Required     |

Provider-writing actions additionally run as **you**, using your own GitHub authorization — Triage never acts as a shared bot identity for them. An action you are not permitted to perform in GitHub is refused in Triage too. See [Seat assignment](/management/seat-assignment) for how seats are granted.

For what each individual action needs, see [Actions on a pull request](/triage/actions#what-each-action-needs).

## What's next

<CardGroup cols={1}>
  <Card title="Triage overview" href="/triage" icon="list-filter" horizontal>
    Start here if you're new to Triage.
  </Card>

  <Card title="Actions on a pull request" href="/triage/actions" icon="square-mouse-pointer" horizontal>
    See what each action does, and which ones need a Review seat.
  </Card>

  <Card title="Troubleshooting Triage" href="/triage/troubleshooting" icon="circle-question-mark" horizontal>
    Work out why an action is disabled, refused, or did not appear to take effect.
  </Card>
</CardGroup>
