> ## 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.

# Implement

<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" icon="bitbucket">Bitbucket</Badge>

<Warning>
  **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.](/code-review)
</Warning>

The `implement` tool converts human code review discussions and feedback into ready-to-commit code changes.

It uses large language model (LLM) technology to transform PR comments and review suggestions into concrete implementation code, helping developers quickly turn feedback into working solutions.

<Note>
  Note that the implementation will occur within the review discussion thread.
</Note>

## How to use the `/implement` tool

<Tabs>
  <Tab title="For Reviewers">
    Reviewers can request code changes by:

    <Steps>
      <Step>
        Selecting the code block to be modified.
      </Step>

      <Step>
        Adding a comment:

        ```bash theme={null}
        /implement <code-change-description>
        ```

        <Frame>
          <img src="https://mintcdn.com/qodo/uIkZ6kAWHm6WXqrW/images/v1/image-180.png?fit=max&auto=format&n=uIkZ6kAWHm6WXqrW&q=85&s=1744f2cb100102cb5e6aafe8476e5ecf" alt="" width="1172" height="1716" data-path="images/v1/image-180.png" />
        </Frame>
      </Step>
    </Steps>
  </Tab>

  <Tab title="For PR Authors">
    PR authors can implement suggested changes by replying to a review comment.

    You can do this by either:

    * Adding specific implementation details by commenting:

    ```bash theme={null}
    /implement <code-change-description>
    ```

    * Using the original review comment as instructions:

    ```bash theme={null}
    /implement
    ```

    <Frame>
      <img src="https://mintcdn.com/qodo/uIkZ6kAWHm6WXqrW/images/v1/image-181.avif?fit=max&auto=format&n=uIkZ6kAWHm6WXqrW&q=85&s=1869d0d26323f7a42308e66525f360aa" alt="" width="1200" height="1725" data-path="images/v1/image-181.avif" />
    </Frame>
  </Tab>

  <Tab title="For Referencing Comments">
    You can respond to an inline comment by triggering the tool from anywhere in the thread:

    ```bash theme={null}
    /implement <link-to-an-inline-comment>
    ```

    <Frame>
      <img src="https://mintcdn.com/qodo/uIkZ6kAWHm6WXqrW/images/v1/image-182.avif?fit=max&auto=format&n=uIkZ6kAWHm6WXqrW&q=85&s=8a2062f8b2d9b0d7cfefaa383e9c8f15" alt="" width="1200" height="1200" data-path="images/v1/image-182.avif" />
    </Frame>
  </Tab>
</Tabs>

## Configuration options

To implement based on the review discussion:

```bash theme={null}
/implement
```

To implement specific instructions, inside a review discussion use:

```bash theme={null}
/implement <code-change-description>
```

To indirectly call the tool from any comment, use:

```bash theme={null}
/implement <link-to-review-comment>
```
