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

# Herramientas y SDKs

> Apunta Claude Code, Cursor, Codex, Cline, aider y SDKs a OmniaKey.

Cada herramienta mantiene el protocolo que ya usa. Cambia solo base URL y API
key.

| Herramienta | Protocolo         | Base URL                      |
| ----------- | ----------------- | ----------------------------- |
| Claude Code | Anthropic         | `https://api.omniakey.com`    |
| Cursor      | OpenAI-compatible | `https://api.omniakey.com/v1` |
| Codex       | OpenAI Responses  | `https://api.omniakey.com/v1` |
| Cline       | OpenAI-compatible | `https://api.omniakey.com/v1` |
| aider       | OpenAI-compatible | `https://api.omniakey.com/v1` |

## Claude Code

```bash theme={null}
export ANTHROPIC_BASE_URL="https://api.omniakey.com"
export ANTHROPIC_AUTH_TOKEN="your-omniakey-api-key"
claude
```

## Codex

```toml theme={null}
model = "gpt-5.5"
model_provider = "omniakey"

[model_providers.omniakey]
name = "OmniaKey"
wire_api = "responses"
requires_openai_auth = true
base_url = "https://api.omniakey.com/v1"
```

```bash theme={null}
export OPENAI_API_KEY="your-omniakey-api-key"
codex
```

## Herramientas OpenAI-compatible

Para Cursor, Cline, aider y la mayoría de herramientas personalizadas:

| Campo    | Valor                                |
| -------- | ------------------------------------ |
| Base URL | `https://api.omniakey.com/v1`        |
| API key  | tu API key de OmniaKey               |
| Model    | cualquier id de [Models](/es/models) |

Gemini CLI actualmente no expone una configuración estable de base URL de
terceros. Usa modelos Gemini desde herramientas OpenAI-compatible eligiendo un
model id Gemini.
