Heads up This site is currently under heavy development.
Subscribe Get it delivered — the daily firehose, filtered to the tools you run, plus the documentation changes vendors never announce. Compare plans →

The AI Toolchain — issue -347, September 3, 2025

THE AI TOOLCHAIN NO. -347
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED SEPTEMBER 3, 2025 · EVERY WEEKDAY
EDITIONS tail grep head diff uniq

The daily firehose — everything the toolchain shipped today, already filtered.

// HOW THIS ISSUE IS MADE

We read every release from the 174 tools on our watchlist at the source — GitHub and GitLab release notes, vendor release pages and changelogs, project blogs and feeds, vendor press releases, and the source code behind the tag. Bug-fix-only releases and non-product newsroom noise are dropped; what's left is summarized down to the new capability, how to try it, and any screenshots or videos the release itself published. Every entry links to the sources it was built from.

VIEW
ISSUE VIEW full issue
Do you prefer this view?
$ tct list   # 10 tools matched
AI & LLM Tooling
◆  AI Coding Agents

Continue

Sources Release notes → @continuedev/[email protected] NOTES

Continue 1.13.0 adds a continuous AI Guide, image-paste instructions, and CLI tips for practitioners.

└──▷ GET THIS VERSION
$ git clone --branch @continuedev/[email protected] https://github.com/continuedev/continue.git
# already have the repo? check out this version:
$ git checkout @continuedev/[email protected]
  • Adds a continuous AI Guide to surface contextual AI assistance inline.
  • Shows users how to paste images into the chat interface.
  • Adds tips UI for the CLI to help users discover available actions.
Was this useful?

OpenAI Codex CLI

Sources Release notes → rust-v0.29.0 NOTES

Lightweight coding agent that runs in your terminal

Codex CLI 0.29.0 adds Android/Termux support, Windows ARM64 distribution, and switches to the latest search tool.

└──▷ GET THIS VERSION
$ git clone --branch rust-v0.29.0 https://github.com/openai/codex.git
# already have the repo? check out this version:
$ git checkout rust-v0.29.0
  • Adds Android/Termux support by gating the arboard dependency on unsupported targets.
  • Includes Windows ARM64 executable in the npm package.
  • Switches to the latest search tool for @ search queries.
  • Supports cd foo && ... syntax in exec and apply_patch commands.
  • Shows a loading state in the TUI when @ search results are pending.
+2 moreshow less
  • Adds stable, cross-platform file locking using std::fs APIs.
  • Adds a rollout listing API and returns file heads via the extracted rollout module.
Was this useful?

SST OpenCode

Sources Release notes → v0.6.4 NOTES

The open source coding agent.

OpenCode v0.6.4 adds OPENCODE_CONFIG_CONTENT env var support and API key generation.

└──▷ GET THIS VERSION
$ git clone --branch v0.6.4 https://github.com/sst/opencode.git
# already have the repo? check out this version:
$ git checkout v0.6.4
└──▷ TRY IT
Inject OpenCode config without a config file — useful in ephemeral CI/CD environments.
$ OPENCODE_CONFIG_CONTENT='{"model":"anthropic/claude-3-5-sonnet"}' opencode run
  • Supports OPENCODE_CONFIG_CONTENT environment variable for supplying configuration content directly.
  • Adds API key generation capability.
Was this useful?

Zed

Sources Release notes → v0.202.5 NOTES

Zed v0.202.5 adds Claude Code via ACP, tab switcher diagnostics/preview, and new config keys for panels and completions.

└──▷ GET THIS VERSION
$ git clone --branch v0.202.5 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.202.5
└──▷ USE IT
Prevent accidental file moves by disabling drag and drop in the project panel.
json
{ "project_panel": { "drag_and_drop": false } }
  • Adds { "project_panel": {"drag_and_drop": false } } setting to disable drag and drop in the project panel.
  • Introduces min_words_query_len threshold config for automatic word completion display, defaulting to 3 to reduce noise.
  • Adds zoomed_padding setting to disable padding around zoomed panels.
  • Supports .editorconfig's max_line_length property.
  • Adds grok-code-fast-1 model to xAI's list of available models in the Agent panel.
+12 moreshow less
  • Launches beta support for Claude Code in Zed via the Agent Client Protocol (ACP) adapter.
  • Adds diagnostics indicators to the tab switcher.
  • Tab switcher now shows a preview of the selected tab.
  • Adds file icons to the multi-buffer view.
  • File finder now shows matching file paths when a :row:column suffix is added to the query.
  • Enables running rust-analyzer's flycheck actions from anywhere in the project (not just the current file).
  • Makes kotlin-language-server the default language server for Kotlin.
  • Adds CSS language injection support for styled-components and emotion in JavaScript, TypeScript, and TSX files.
  • Adds new highlight groups for modules and shorthand initializers in Rust syntax highlighting.
  • Helix mode: Shift+R now pastes instead of entering ReplaceMode.
  • Helix mode: g . navigates to the last modification location.
  • Improves Python virtual environment detection for terminals and tasks in remote projects.
└──▷ BREAKING ON UPGRADE
  • !The diagnostics.cargo.fetch_cargo_diagnostics setting has been removed.
Was this useful?

Google gemini-cli

Sources Release notes → v0.3.0-preview.3 NOTES

An open-source AI agent that brings the power of Gemini directly into your terminal.

gemini-cli v0.3.0-preview.3 adds extension management commands, prompt completion, screen reader mode, fuzzy search toggle, and custom theme file paths.

└──▷ GET THIS VERSION
$ git clone --branch v0.3.0-preview.3 https://github.com/google-gemini/gemini-cli.git
# already have the repo? check out this version:
$ git checkout v0.3.0-preview.3
└──▷ TRY IT
Install, list, and remove a CLI extension without leaving the terminal.
$ gemini extensions install <extension-name>
gemini extensions list
gemini extensions uninstall <extension-name>
Load a custom color theme from a local JSON file instead of a built-in theme name.
$ gemini --theme /path/to/my-theme.json
Disable fuzzy search when you need exact file/tool name matching in large repos.
$ gemini --no-fuzzy-search
  • Adds extensions install, uninstall, update, and list subcommands for managing CLI extensions.
  • Adds prompt completion in the CLI interactive prompt.
  • Introduces a screen reader mode flag for improved accessibility.
  • Adds option to disable fuzzy search in file/tool search.
  • Supports specifying themes as file paths instead of only built-in theme names.
+12 moreshow less
  • Supports IDE connections via stdio MCP transport.
  • Supports editing string settings directly from the settings UI.
  • Handles 401 authentication errors for MCP HTTP URL connections.
  • Improves MCP prompt argument parsing.
  • Logs MCP requests that result in errors for easier debugging.
  • Adds debug logging of keystrokes to aid input investigation.
  • Supports JSON schema formats via ajv-formats in tool schemas.
  • Shares file list patterns between glob and grep tools for consistency.
  • Parallelizes memory discovery file operations for a performance gain.
  • Adds explicit license selection and status visibility.
  • Adds OTel logging for malformed JSON events.
  • Retries message stream on empty chunks.
Was this useful?
◆  Local LLM Runtimes

LocalAI

Sources Release notes → v3.5.0 NOTES

LocalAI v3.5.0 adds MLX, WAN video, CPU diffusers, Purego Whisper with VAD, P2P model sync, and a system backend path.

└──▷ GET THIS VERSION
$ git clone --branch v3.5.0 https://github.com/mudler/LocalAI.git
# already have the repo? check out this version:
$ git checkout v3.5.0
└──▷ USE IT
Run text-to-speech on macOS using Kokoro voice models via the new MLX audio backend.
yaml
backend: mlx-audio
name: kokoro-mlx
parameters:
  model: prince-canuma/Kokoro-82M
  voice: "af_heart"
  known_usecases:
    - tts
Generate video on a GPU from a text prompt using the new WAN pipeline in the diffusers backend.
yaml
name: wan21
f16: true
backend: diffusers
known_usecases:
  - video
parameters:
  model: Wan-AI/Wan2.1-T2V-1.3B-Diffusers
diffusers:
  cuda: true
  pipeline_type: WanPipeline
  step: 40
options:
  - guidance_scale:5.0
  - num_frames:81
  - torch_dtype:bf16
  • Adds LOCALAI_BACKENDS_SYSTEM_PATH environment variable (and equivalent command-line argument) to specify a read-only system backend directory, defaulting to /usr/share/localai/backends, enabling package-manager-friendly and system-wide installations.
  • New mlx-audio backend (backend: mlx-audio) enables text-to-speech on macOS using MLX-powered Kokoro voice models.
  • New mlx-vlm backend (backend: mlx-vlm) supports vision-language models (VLMs) on macOS via MLX.
  • New mlx backend brings MLX-accelerated LLM inference to macOS.
  • New WanPipeline pipeline type in the diffusers backend enables text-to-video and image-to-video generation with Wan2.1 and Wan2.2 models using config keys pipeline_type: WanPipeline, num_frames, and guidance_scale.
+11 moreshow less
  • Diffusers backend now supports CPU and macOS MPS execution, removing the GPU requirement for image generation.
  • Whisper backend rewritten in Purego with integrated Voice Activity Detection (VAD) for speech detection, improving efficiency and macOS compatibility.
  • Stablediffusion backend converted to Purego, improving architecture and enabling macOS CI builds.
  • Adds automatic P2P model synchronization across federated LocalAI instances for models installed via the gallery.
  • WebUI gains a 'Get Config' button to download a model's YAML configuration file without installing the model.
  • WebUI adds a manual model refresh button to reload on-disk YAML configurations without restarting.
  • WebUI gains model import and edit screens for managing model configurations directly in the browser.
  • WebUI now displays the list of currently installed backends.
  • WebUI surfaces SSE streaming errors directly to the user for improved debugging visibility.
  • New LocalAI Launcher app (Alpha) for Linux and macOS simplifies installation, startup, shutdown, updates, and WebUI access.
  • Diffusers backend prioritizes ref_images over src for image source selection, enabling more robust image input handling.
Was this useful?
◆  AI Agent Frameworks

holmesgpt

Sources Release notes → 0.13.2 NOTES

SRE Agent - CNCF Sandbox Project

HolmesGPT 0.13.2 adds Datadog integration, cross-account IRSA, Prometheus range queries, and CLI approval for bash tool execution.

└──▷ GET THIS VERSION
$ git clone --branch 0.13.2 https://github.com/HolmesGPT/holmesgpt.git
# already have the repo? check out this version:
$ git checkout 0.13.2
  • Adds a general-purpose Datadog tool, enabling HolmesGPT to query Datadog as part of AI-driven investigations.
  • Adds cross-account IRSA support, allowing HolmesGPT to assume IAM roles across AWS accounts for multi-account Kubernetes environments.
  • Adds Prometheus range-query support to the Prometheus toolset, enabling historical metric analysis over configurable time windows.
  • Adds a CLI approval step for the bash tool, requiring explicit user confirmation before executing bash commands from the CLI.
  • Adds manual and HPA-driven replica count control options.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-client-v1.17.0 2 RELEASES · 2025-09-03 NOTES STABLE

Arize Phoenix client v1.17.0 adds methods to log document annotations.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-client-v1.17.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-client-v1.17.0
  • Adds new methods to the Phoenix client for logging document annotations.
1 more release in this issue · 2025-09-03
arize-phoenix-v11.31.0 NOTES STABLE

Phoenix v11.31.0 adds methods to log document annotations for retrieval tracing.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v11.31.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v11.31.0
  • Adds new methods to log document annotations, enabling practitioners to attach structured annotations to retrieved documents within traces.
Was this useful?

Langfuse

Sources Release notes → v3.107.0 2 RELEASES · 2025-09-03 NOTES STABLE

Langfuse v3.107.0 adds score column filtering to show only populated scores in table views.

└──▷ GET THIS VERSION
$ git clone --branch v3.107.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.107.0
  • Score columns in table views now filter to display only rows where a score value exists for the given column, reducing noise in sparse score tables.
1 more release in this issue · 2025-09-03
v3.106.4 NOTES STABLE

Langfuse v3.106.4 adds copy button on JSON value cells in trace view and maps OpenTelemetry gen_ai message fields to trace input/output.

└──▷ GET THIS VERSION
$ git clone --branch v3.106.4 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.106.4
  • Maps gen_ai.input.messages and gen_ai.output.messages OpenTelemetry semantic convention fields to trace input/output fields.
  • Adds a copy button on value cells in the JSON view of the single-trace detail panel.
Was this useful?
◆  VECTOR DB RAG

Weaviate

Sources Release notes → v1.31.13 NOTES

Weaviate v1.31.13 adds support for Amazon Nova models in the modules integration.

└──▷ GET THIS VERSION
$ git clone --branch v1.31.13 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.31.13
  • Adds support for Amazon Nova models in the Weaviate modules integration.
Was this useful?
my-toolchain — 0 tools
paste an install list to detect your tools

A brew list, a Brewfile, requirements.txt, a Dockerfile — or just the product names, free-form. Nothing leaves your browser.

    browse all tools →