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

# Pull request command and interaction reference

> Every command and interaction available to trigger or guide Qodo directly from a pull request.

export const GerritIcon = () => <svg className="gerrit-icon" viewBox="0 0 52 52" width="12" height="12" style={{
  display: "inline",
  verticalAlign: "middle",
  flexShrink: 0,
  background: "transparent"
}}>
    <rect ry="4" rx="4" height="40" width="40" y="0" x="0" fill="currentColor" fillOpacity="0.15" stroke="currentColor" strokeWidth="2" />
    <rect ry="4" rx="4" height="40" width="40" y="12" x="12" fill="currentColor" fillOpacity="0.15" stroke="currentColor" strokeWidth="2" />
    <path d="m18,22l12,0l0,4l-12,0l0,-4z" fill="currentColor" />
    <path d="m34,22l12,0l0,4l-12,0l0,-4z" fill="currentColor" />
    <path d="m18,36l4,0l0,-4l4,0l0,4l4,0l0,4l-4,0l0,4l-4,0l0,-4l-4,0l0,-4z" fill="currentColor" />
    <path d="m34,36l4,0l0,-4l4,0l0,4l4,0l0,4l-4,0l0,4l-4,0l0,-4l-4,0l0,-4z" fill="currentColor" />
  </svg>;

Qodo can be triggered and guided from a Pull Request (PR) in two ways. Enter a slash command, or interact with it directly, using plain language or the buttons and checkboxes it adds to the pull request. This page lists both, with links to the page that covers each in detail.

Commands and interactions work on all supported Git providers unless a provider badge says otherwise.

## Slash commands

Enter slash commands directly in a pull request comment.

| Command                                                                                                                                                                                                                                                                                                                  | Use                           | Description                                                                                                                                                                                                                                                                                                             |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`/agentic_review`](/code-review/use-qodo-in-prs/code-review)                                                                                                                                                                                                                                                            | Primary review workflow       | Runs the main Qodo review experience, generating prioritized findings and suggested fixes. Accepts `--review_agent.issues_user_guidelines`, `--review_agent.compliance_user_guidelines`, and `--review_agent.smart_router_extra_instructions` as parameters. See [Extra instructions](/code-review/extra-instructions). |
| [`/agentic_describe`](/code-review/pr-summary)                                                                                                                                                                                                                                                                           | PR summarization              | Generates a structured summary of the pull request.                                                                                                                                                                                                                                                                     |
| [`/ask`](/code-review/chat-with-qodo-in-your-pull-requests)                                                                                                                                                                                                                                                              | PR-specific questions         | Answers questions about the pull request and its code changes.                                                                                                                                                                                                                                                          |
| [`/config`](/install-and-configure/configuration-overview/view-configuration-settings)                                                                                                                                                                                                                                   | Inspecting available settings | Shows supported configuration keys and default values.                                                                                                                                                                                                                                                                  |
| [`/generate_labels`](/code-review/generate-pr-labels) <br /> <Badge color="outline-provider" size="sm" shape="pill" icon="github">GitHub</Badge> <Badge color="outline-provider" size="sm" shape="pill" icon="gitlab">GitLab</Badge> <Badge color="outline-provider" size="sm" shape="pill"><GerritIcon />Gerrit</Badge> | PR categorization             | Suggests labels based on code changes (hashtags on Gerrit).                                                                                                                                                                                                                                                             |
| [`/checks`](/code-review/enable-ci-failure-feedback) <br /> <Badge color="outline-provider" size="sm" shape="pill" icon="github">GitHub</Badge>                                                                                                                                                                          | CI troubleshooting            | Analyzes CI failures and surfaces useful debugging context.                                                                                                                                                                                                                                                             |

## Natural language and native actions

For the following actions, no command is needed. Qodo responds to plain language, or you use a button or checkbox it adds to the pull request.

| Interaction                                                                                                                                                                                                                                 | Description                                                                                                                                       | Learn more                                                                                      |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Mentioning `@qodo` (or `qodo`, `/qodo`)                                                                                                                                                                                                     | Starts a conversation. Ask Qodo to explain a finding, discuss a suggestion, or push back, in natural language.                                    | [Chat with Qodo](/code-review/chat-with-qodo-in-your-pull-requests)                             |
| Asking a question without mentioning Qodo <br /> <Badge color="outline-provider" size="sm" shape="pill" icon="github">GitHub</Badge> <Badge color="outline-provider" size="sm" shape="pill" icon="gitlab">GitLab</Badge>                    | Qodo detects a question written in a PR comment and answers it, without requiring `@qodo` or `/ask`.                                              | [Auto-detected questions](/code-review/auto-detected-questions)                                 |
| Telling Qodo a finding doesn't apply                                                                                                                                                                                                        | Qodo dismisses the finding as Rejected, Deferred, or Intentional, and updates the summary comment, review thread, and inline comment accordingly. | [Chat with Qodo](/code-review/chat-with-qodo-in-your-pull-requests#what-you-can-ask-qodo-to-do) |
| Asking Qodo to fix a finding                                                                                                                                                                                                                | Triggers the Remediation agent, which opens a pull request with the proposed fix.                                                                 | [Remediate findings in your pull request](/code-review/remediate-findings-in-prs)               |
| Selecting the author self-review checkbox <br /> <Badge color="outline-provider" size="sm" shape="pill" icon="github">GitHub</Badge>                                                                                                        | Confirms the author reviewed the findings. Can be configured to add Qodo as a reviewer, allowing the PR to be merged.                             | [Enable author self-review in pull requests](/code-review/self-review)                          |
| Clicking **Apply Suggestion** or **Add suggestion to batch** <br /> <Badge color="outline-provider" size="sm" shape="pill" icon="github">GitHub</Badge> <Badge color="outline-provider" size="sm" shape="pill" icon="gitlab">GitLab</Badge> | Commits a Qodo-generated code fix directly to the pull request, using the Git provider's native suggestion workflow.                              | [Commit code fixes directly in the pull request](/code-review/commitable-code-suggestions)      |

## Related resources

* [Configuration and command reference](/install-and-configure/configuration-overview/configuration-and-command-reference): The settings behind these commands.
