Skip to content

Commit 31b856b

Browse files
committed
docs(clients): document Cline CLI setup
1 parent 17870cd commit 31b856b

2 files changed

Lines changed: 24 additions & 4 deletions

File tree

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -548,9 +548,9 @@ npx -y @continuedev/cli@latest -p \
548548
<details>
549549
<summary><img src=".github/assets/cline-favicon.png" alt="Cline logo" width="16" height="16"> Cline <code>~/.cline</code> + <code>~/.cline/mcp.json</code></summary>
550550

551-
Cline's OpenAI-compatible provider id is `openai`. Configure it with the Pool
552-
API key, the Codex Pooler `/v1` base URL, and the model id that your assigned
553-
Pool can serve.
551+
Cline CLI accepts `openai` as shorthand for its OpenAI-compatible provider and
552+
stores it as `openai-compatible`. Configure it with the Pool API key, the Codex
553+
Pooler `/v1` base URL, and the model id that your assigned Pool can serve.
554554

555555
```bash
556556
cline auth \
@@ -560,6 +560,16 @@ cline auth \
560560
--modelid gpt-5.5
561561
```
562562

563+
Check the headless CLI path after saving auth:
564+
565+
```bash
566+
cline --provider openai \
567+
--model gpt-5.5 \
568+
--json \
569+
--auto-approve false \
570+
'Reply with exactly: cline ok'
571+
```
572+
563573
For optional operator MCP in Cline CLI, add the remote server to
564574
`~/.cline/mcp.json`. Codex Pooler does not require this for model use. The VS
565575
Code extension opens its own MCP settings JSON from the Cline MCP Servers panel;

docs-site/src/content/docs/clients/cline.mdx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Cline
33
description: Configure Cline with Codex Pooler's narrow OpenAI-compatible /v1 surface and optional operator MCP metadata access.
44
---
55

6-
Cline's OpenAI-compatible provider id is `openai`. Configure it with the Pool API key, the Codex Pooler `/v1` base URL, and the model id that your assigned Pool can serve.
6+
Cline CLI accepts `openai` as shorthand for its OpenAI-compatible provider and stores it as `openai-compatible`. Configure it with the Pool API key, the Codex Pooler `/v1` base URL, and the model id that your assigned Pool can serve.
77

88
```bash
99
cline auth \
@@ -15,6 +15,16 @@ cline auth \
1515

1616
For local setup, change `--baseurl` to `http://localhost:4000/v1`.
1717

18+
Check the headless CLI path after saving auth:
19+
20+
```bash
21+
cline --provider openai \
22+
--model gpt-5.5 \
23+
--json \
24+
--auto-approve false \
25+
'Reply with exactly: cline ok'
26+
```
27+
1828
For optional operator MCP in Cline CLI, add the remote server to `~/.cline/mcp.json`. Codex Pooler does not require this for model use. The VS Code extension opens its own MCP settings JSON from the Cline MCP Servers panel; use the same `mcpServers` shape there.
1929

2030
```json

0 commit comments

Comments
 (0)