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

# Roo Code

> Connect Roo Code to Phaseo through an OpenAI-compatible profile.

Phaseo CLI creates and manages Roo Code's dedicated key. Roo Code keeps credentials in VS Code secret storage, so you complete the profile in the extension.

## Create the credential

```bash theme={null}
phaseo login
phaseo integrations setup roo-code --model anthropic/claude-sonnet-4.6
```

## Configure Roo Code

1. Open Roo Code in VS Code.
2. Open **Settings**, then **Providers**.
3. Create a provider configuration profile and choose **OpenAI Compatible**.
4. Enter these values:

| Roo Code field | Value                                                       |
| -------------- | ----------------------------------------------------------- |
| Base URL       | `https://api.phaseo.app/v1`                                 |
| API Key        | Output of `phaseo integrations credential roo-code`         |
| Model          | `anthropic/claude-sonnet-4.6` or the model printed by setup |

5. Save the profile and make it active.

Field labels can vary slightly between releases, but the profile needs the endpoint, key, and exact model ID.

## Verify

Ask Roo Code to reply with `PHASEO_ROO_OK`, then confirm the request appears in Phaseo activity.

## Remove

Delete the Phaseo profile or switch profiles, then run:

```bash theme={null}
phaseo integrations remove roo-code
```

The CLI cannot delete values in VS Code's private extension storage, but removal revokes the key.

## Troubleshooting

### Authentication fails

Retrieve the key again with `phaseo integrations credential roo-code`. Ensure the Base URL ends in `/v1`.

### Roo Code cannot find the model

Enter the exact Phaseo model ID manually, including its provider prefix.

### Chat works but tools fail

Switch to a model with tool-calling support.

## Related

* [Roo Code model providers](https://docs.roocode.com/providers/)
* [Coding Assistants](./coding-assistants.mdx)
* [Models](../../api-reference/endpoint/models.mdx)
