RepoJournal
AI Agents AI Agents
48 wires and counting

$ follow AI Agents

Keep up with AI Agents in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-08
stories 6

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Cline desktop commands unblocked from slow backend startup

By RepoJournal · Filed · About AI Agents

Cline fixed a desktop startup bottleneck that queued every command behind a 15-second poll, and VSCode silently-failing commands now report success.

The desktop backend's slow startup no longer blocks the command path. `get_desktop_backend_endpoint` previously polled for the ready line synchronously for up to 15 seconds, serializing all sync commands on Windows; a trivial `set_app_icon` invoke took 21–29 seconds. The startup is now kept off the command path, and a recheck under the process lock covers the shutdown race [1].

In VSCode, shell integration now distinguishes empty success from failure. A command that exited 0 with no output used to be treated as a shell-integration failure, reporting `[Command exited with code 1]` via a clipboard snapshot, causing silent commands like `git add -A` to fail intermittently even though the OSC 633 marker confirmed the read stream. Empty output is now reported as success [2].

Meanwhile, LangChain refreshed model profile data for in-monorepo integrations, removing `z-ai/glm-5.2:free` from OpenRouter and adjusting 9 profiles, with `deepseek/deepseek-v4-flash-0731` max output tokens cut from 943,718 to 131,072 [3].

Quick answers

What shipped in AI Agents on September 8, 2026?
Cline fixed a desktop startup bottleneck that queued every command behind a 15-second poll, and VSCode silently-failing commands now report success. In total, 3 commits and 3 pull requests landed.
Who contributed to AI Agents on September 8, 2026?
3 developers shipped this update, including langchain-oss-model-profiles[bot], langchain-oss-model-profiles, and dominiccooney.
What were the notable AI Agents updates?
fix(desktop): keep desktop backend startup off the command path (#13829), fix(vscode): report silent shell-integration successes as empty output, and chore(model-profiles): refresh model profile data (#40258).