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

# Continue.dev

> VS Code / JetBrains-плагин: чат, inline-edit, автодополнение.

<Frame>
  <img src="https://cdn.simpleicons.org/intellijidea/2a2521" alt="JetBrains" width="60" />
</Frame>

[Continue](https://continue.dev) — старичок среди AI-плагинов, существует с
2023 года. Работает в VS Code и JetBrains, поддерживает любой провайдер
включая Anthropic через custom `apiBase`.

## Установка

* **VS Code:** Marketplace → «Continue»
* **JetBrains:** Settings → Plugins → ищи «Continue»

## Настройка

Открой `~/.continue/config.json` (или нажми ⚙️ в панели Continue):

```json theme={null}
{
  "models": [
    {
      "title": "claude-sonnet-4.6 (claude·api)",
      "provider": "anthropic",
      "model": "claude-sonnet-4.6",
      "apiKey": "sk-ant-api03-...",
      "apiBase": "https://api.east-api-3.org/v1/"
    },
    {
      "title": "claude-opus-4.7 (claude·api)",
      "provider": "anthropic",
      "model": "claude-opus-4.7",
      "apiKey": "sk-ant-api03-...",
      "apiBase": "https://api.east-api-3.org/v1/"
    }
  ]
}
```

<Note>
  У Continue важно указать `apiBase` с **слешем** на конце и
  путём `/v1/` — это не такая же конвенция как у Anthropic CLI.
</Note>

## Что умеет Continue

| Действие                | Hotkey            |
| ----------------------- | ----------------- |
| Чат с агентом           | `Cmd L`           |
| Inline edit             | `Cmd I`           |
| Quick fix (рефакторинг) | `Cmd Shift R`     |
| Apply suggestion        | `Cmd Shift Enter` |

## Tab autocomplete

Continue умеет автокомплит. По умолчанию использует свою маленькую
модель, но можно подключить и Claude Haiku:

```json theme={null}
"tabAutocompleteModel": {
  "title": "Haiku autocomplete",
  "provider": "anthropic",
  "model": "claude-haiku-4.5",
  "apiKey": "sk-ant-api03-...",
  "apiBase": "https://api.east-api-3.org/v1/"
}
```

<Warning>
  Autocomplete генерирует **много мелких запросов** — может быстро
  истратить баланс. Если экономишь — оставь дефолтную модель Continue
  для автокомплита, а Claude только для чата.
</Warning>

## Slash-commands

Continue поддерживает кастомные слэш-команды в config.json — типа
`/explain`, `/test`, `/refactor`. Все они пойдут через наш шлюз.
