Skip to main content
Git Integration (formerly Qodo Merge) – AI code review agents for pull requests. This documentation describes the Qodo v1 experience. For the Qodo v2 documentation, click here.
Platforms supported: GitHub, GitLab
Qodo lets you leave comments on code suggestions to make changes. Its smart agent reads your comments and figures out what you want to do—whether that’s applying a change, asking a question, or requesting help—and uses the right tool automatically.

How does it work?

Behind the scenes, Qodo calls an orchestrator agent. The orchestrator analyzes your responses to determine if you want to implement a suggestion, ask a question, or request help, then uses the right tool automatically.

Setup

Enable interactive code discussions by adding the following to your configuration file (default is True):
[pr_code_suggestions]
enable_chat_in_code_suggestions = true

Activation

/improve To get dynamic responses from Qodo after running /improve, follow these steps:
1
Run the /improve command.
2
Check the /improve recommendation checkboxes (Apply this suggestion button) to have Qodo generate a new inline code suggestion discussion.
3
The orchestrator agent will then automatically listen to and reply to comments within the discussion without requiring additional commands.
/implement To get dynamic responses from Qodo after running /implement, follow these steps:
1
Select code lines in the PR diff and run the /implement command.
2
Wait for Qodo to generate a new inline code suggestion.
3
The orchestrator agent will then automatically listen to and reply to comments within the discussion without requiring additional commands.
Tip: Direct the agent with keywords.Use “implement” or “apply” for code generation.Use “explain”, “why” or “how” for information and help.

Example Usage