Autonomous coding agent as an SDK, IDE extension, or CLI assistant.
Cline v0.0.8 adds conversation forking with atomic workspace rewind, per-server MCP timeouts, and Claude Sonnet 5 as the OpenRouter default.
$ git clone --branch desktop-v0.0.8 https://github.com/cline/cline.git # already have the repo? check out this version: $ git checkout desktop-v0.0.8
- ›MCP servers now honor their configured per-server timeout, giving each server its own time limit instead of a shared global one.
- ›OpenRouter now defaults to Anthropic Claude Sonnet 5.
- ›Ollama cold model loads no longer time out — empty responses are retried automatically and the response-start timeout is raised to 5 minutes.
- ›Reasoning controls (effort, thinking budget, on/off) now come from the shared model catalog, so each model exposes only the reasoning options it actually supports.
- ›Upstream provider errors forwarded through the gateway now surface the real message (e.g. 'This model's maximum context length is 40960 tokens...') instead of a raw validation dump or
[object Object].
+3 moreshow less
- ›Custom model info for OpenAI-Compatible providers now carries over into the seeded model catalog.
- ›Unknown or removed legacy model IDs now fall back to the default Cline model instead of failing.
- ›Checkpoints are now created reliably after a restart, after compaction, and on the first turn of a resumed session, and restoring one rewinds the whole workspace.
- !The 'Enable R1 messages format' option has been removed from the OpenAI-Compatible provider.
1 more release in this issue · 2026-08-02
Cline SDK v0.0.69: true workspace rewind for checkpoints, Ollama reliability improvements, and requestTimeoutMs support.
$ git clone --branch sdk/sdk/v0.0.69 https://github.com/cline/cline.git # already have the repo? check out this version: $ git checkout sdk/sdk/v0.0.69
- ›Adds
requestTimeoutMsoverride for Ollama's response-start timeout, which now defaults to 5 minutes (up from 30 seconds) so large cold-loading models no longer time out prematurely. - ›Checkpoints are now correctly created in both VS Code and the CLI, with run-boundary detection that also survives process restarts and compaction.
- ›Ollama turns that return completely empty (no text, reasoning, or tool call) are now automatically retried at the model boundary instead of failing the task with 'Model returned empty response'.