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

# Install Qodo Agentic Toolbox with the CLI

> Install the Qodo Agentic Toolbox locally to use Qodo-managed skills with your coding agent.

Use the Qodo Agentic Toolbox CLI when you want to use Qodo-managed skills locally. For remote or custom agents, workflows, or applications, use [MCP](../mcp).

With the CLI, your coding agent can use Qodo's code understanding and review capabilities as part of your local development workflow. For example, you can:

* Review changes before opening a pull request.
* Retrieve and resolve review findings.
* Understand your codebase, including dependencies, relationships, and recent changes.
* Retrieve the rules and standards that apply to a task.
* Access and manage Review Standards.

You install the Qodo Agentic Toolbox locally to make Qodo-managed skills available to your agent. You can install the Agentic Toolbox without a Qodo account, but you need to sign in to Qodo to use its managed skills.

For more information about choosing between the CLI and MCP, see [Agentic Toolbox overview](./agentic-toolbox-overview).

<Note>
  The Agentic Toolbox is a separate product from the deprecated Qodo Command CLI (`@qodo/command`) and Qodo Gen CLI.

  If you have an existing Qodo Command installation, installing the Agentic Toolbox replaces it automatically. You don't need to uninstall it separately.
</Note>

## Prerequisites

Before you install, make sure you have:

* Node.js 20 or later.

## Install the Agentic Toolbox

### macOS and Linux

This includes Git Bash and WSL.

```bash theme={null}
curl -fsSL https://get.qodo.ai | sh
```

### Windows PowerShell

Administrator privileges are not required.

```powershell theme={null}
powershell -ExecutionPolicy Bypass -Command "irm https://get.qodo.ai/install.ps1 | iex"
```

The installer installs the Qodo Agentic Toolbox and configures the available Qodo skills for supported agent environments.

You can install the Agentic Toolbox without a Qodo account. To use Qodo skills, sign up or log in to Qodo when prompted by your agent.

## Troubleshooting

<AccordionGroup>
  <Accordion title="The installation fails">
    Make sure you are using Node.js 20 or later and that your operating system meets the requirements for the installation command you are using.

    If the installation still fails, run the installation command again and check the error message for details.
  </Accordion>

  <Accordion title="Qodo skills do not appear in your coding agent">
    Make sure your coding agent is supported and restart or reload the agent after installing the Agentic Toolbox.

    If the skills still do not appear, verify that you are signed in to Qodo and have access to the required workspace and repositories.
  </Accordion>

  <Accordion title="Your coding agent cannot use Qodo skills">
    Make sure you are signed in to Qodo and that your account has access to the repositories you want to work with.

    If your access has changed, sign in again and restart your coding agent.
  </Accordion>
</AccordionGroup>

## Next steps

* [Agentic Toolbox overview](./agentic-toolbox-overview): Learn about Qodo Agentic Toolbox managed skills and when to use the CLI or MCP.
* [Suggested workflows](./agentic-toolbox-suggested-workflows): Guide your coding agent through development, review, and debugging workflows.
