What changed
Cline's September 15 release across CLI (v3.0.62), SDK (v0.0.83), and Desktop (v0.0.28) adds Hub-managed Agent Plugins with discovery from ~/.agents/plugins/*, model turn retry logic (up to 3 attempts with exponential backoff for transient provider errors), remote SSH environment support, and fixes CVE-2026-1525 (undici HTTP library vulnerability). The model catalog expanded from 5,788 to 6,079 models (+291) with 4 new providers.
TL;DR
Cline v0.0.83 adds a plugin system for agents (discoverable from ~/.agents/plugins/*), automatic retry on transient model errors, and patches CVE-2026-1525 in the bundled undici HTTP client.
Developer signal
Three things to act on: (1) CVE-2026-1525 fix โ update if you're using any Cline flavor: the undici HTTP library vulnerability is patched in this release. Update CLI (npm install -g @anthropic-ai/cline@3.0.62), SDK, or Desktop before running further agent sessions that make HTTP requests. (2) Hub Agent Plugins: Cline now discovers plugins from ~/.agents/plugins/*/ at startup, managed through the Cline Hub. This is the first version of a package manager-style approach for agent capabilities โ install a plugin once and all Cline sessions on the machine see it. If you've built custom Cline extensions, migrate them to the plugin format now to benefit from Hub distribution. (3) Model turn retry: transient provider errors (network timeouts, HTTP 503s) now get up to 3 retry attempts with exponential backoff before surfacing as errors โ this reduces the frequency of "the agent died in the middle of a long task" failures without any config changes. The new remote SSH environment via RemoteEnvironmentService is the most experimental addition; treat it as early-preview until v0.1 docs land.