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.
›Adds respond_to_other_agents flag to the Slack integration to enable peer-agent communication between Slack-connected agents.
›Adds extraction_tool_call_limit to Learning Stores to cap runaway tool calls and prevent infinite loops.
›Adds stream_sub_agent_events support across all Context Providers.
›Adds Marengo video embeddings support to TwelveLabsTools.
└──▷ BREAKING ON UPGRADE
!The google_search method in ScavioTools now targets the Scavio Google v2 API, changing parameter mapping to gl, hl, and start for localization and paging — existing integrations relying on the v1 API will break.
langchain-openai 1.4.1 adds LangSmith gateway support via environment variable.
└──▷ GET THIS VERSION
$ git clone --branch langchain-openai==1.4.1 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-openai==1.4.1
›Supports routing OpenAI calls through the LangSmith gateway, configurable via an environment variable.
langchain-anthropic 1.5.1 adds LangSmith gateway support via environment variable for Anthropic, Fireworks, and OpenAI providers.
└──▷ GET THIS VERSION
$ git clone --branch langchain-anthropic==1.5.1 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-anthropic==1.5.1
›Supports routing Anthropic (and Fireworks/OpenAI) calls through the LangSmith gateway via an environment variable.
LangChain Core 1.5.1 adds LangSmith gateway support via environment variable for Anthropic, Fireworks, and OpenAI providers.
└──▷ GET THIS VERSION
$ git clone --branch langchain-core==1.5.1 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-core==1.5.1
›Supports routing Anthropic, Fireworks, and OpenAI provider calls through a LangSmith gateway configured via an environment variable.
GitHub Copilot CLI v1.0.74 adds Open Plugin Spec v1 / mcp.json support, gemini-3.6-flash, and a dedicated plan-mode model picker.
└──▷ GET THIS VERSION
$ git clone --branch v1.0.74 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:$ git checkout v1.0.74
└──▷ TRY IT
Pick a faster or cheaper model exclusively for plan-mode exploration without affecting your main session model.
$ /model plan gemini-3.6-flash
Clear a previously set plan-mode model so plan mode falls back to the current session model.
$ /model plan off
›Adds /model plan (or /model --plan) subcommand to select a dedicated model for plan mode; accepts a model ID, off to clear the override, or no argument to open the interactive picker — reverts to the session model on exit.
›Adds support for Open Plugin Spec v1 plugin manifests and mcp.json configuration files.
›Adds gemini-3.6-flash as a supported model.
›The /mcp add and /mcp edit wizard now preserves = characters in environment variable values (e.g. base64-padded secrets and tokens).
›The $ interactive shell shortcut now opens a shell even while the agent is working.
+8 moreshow less
›Plan mode allows session-folder planning artifacts while still blocking file mutations outside the session folder.
›Adds a first-run splash screen to opt into the default sandbox.
›Shows Tab in the /settings footer to switch scope tabs.
›IDE integration reconnects reliably when the CLI reloads MCP servers or changes directory.
›Steering interrupts shell output waits without stopping the running command.
›Increases the Responses API request size limit, enabling larger payloads.
›Downscales oversized tool-result images so CAPI Responses requests continue uninterrupted.
›Resume search matches session titles even when whitespace differs.
Lightweight coding agent that runs in your terminal
Codex CLI adds supports_standalone_web_search setting so custom model providers can opt into the standalone web.run tool.
└──▷ GET THIS VERSION
$ git clone --branch rust-v0.146.0-alpha.3.1 https://github.com/openai/codex.git
# already have the repo? check out this version:$ git checkout rust-v0.146.0-alpha.3.1
›Adds supports_standalone_web_search model-provider setting (defaults to false) that lets custom Responses API providers opt into the standalone web.run web-search tool when web search is enabled.
›Routes standalone web search requests through the custom provider's own endpoint and authentication when supports_standalone_web_search is enabled.
Codex CLI alpha.5 adds thread pinning, MCP tool prefix control, custom provider web search, and MCP connection reuse.
└──▷ GET THIS VERSION
$ git clone --branch rust-v0.146.0-alpha.5 https://github.com/openai/codex.git
# already have the repo? check out this version:$ git checkout rust-v0.146.0-alpha.5
└──▷ TRY IT
Force the standalone installer to use GitHub Releases instead of releases.openai.com, useful in environments that block the primary CDN.
$ curl -fsSL https://chatgpt.com/codex/install.sh | CODEX_INSTALLER_USE_RELEASES_OPENAI_COM=false sh
›Adds isPinned field to thread responses and allows thread/metadata/update to pin or unpin stored threads.
›Adds isPinned filter to thread/list, supporting cursor-based pagination and combinations with relationship filters.
›Allows omitting MCP tool prefixes per server, reducing namespace clutter in multi-server setups.
›Allows custom providers to opt into standalone web search.
›Allows disabling the multi-agent wait tool.
+9 moreshow less
›Sets a default user agent for MCP HTTP requests.
›Reuses MCP connections across runtime refreshes and replaces closed MCP connections during reconciliation, reducing reconnect overhead.
›Caches remote plugin catalogs by scope for faster plugin resolution.
›Tracks compaction_ms in turn profile facts and analytics events as a dedicated profile phase.
›Preserves user input in conversation history when MCP startup is interrupted mid-turn.
›Infers the bundled Claude Code plugin marketplace automatically.
›Uses the API plugin marketplace for Amazon Bedrock.
›Preserves timestamps when importing external agent sessions.
›Standalone installers now prefer releases.openai.com by default and fall back to GitHub Releases; set CODEX_INSTALLER_USE_RELEASES_OPENAI_COM=false to force GitHub Releases.
Open LSP reference results in a filterable picker with preview instead of jumping directly, useful when a symbol has many references across files.
json
{
"lsp_results_location": "pane"
}
›Adds modifications and modifications_if_available options to format_on_save to format only Git-changed lines instead of the entire file; also scopes remove_trailing_whitespace_on_save and ensure_final_newline_on_save to changed lines in these modes.
›Adds lsp_results_location global setting and per-action open_results_in option to control filterable result pickers with previews for editor: find all references, editor: go to definition, and editor: go to implementation.
›Adds support for adaptive thinking in custom Anthropic models via the "mode": { "type": "adaptive" } configuration key.
›Adds the supports_fast_mode setting for enabling fast mode on custom Anthropic models.
›Adds GPT-5.6 Sol, Terra, and Luna models to the Amazon Bedrock provider via the bedrock-mantle endpoint.
+26 moreshow less
›Adds the workspace: toggle editor zoom action to maximize the active editor pane while keeping panels visible.
›Adds the editor: move to next comment paragraph and editor: move to previous comment paragraph actions for caret navigation between comment paragraphs.
›Adds reduce_motion setting with value on to reduce UI animations.
›Adds /*glsl*/ and /*wgsl*/ comment-label syntax injection for JavaScript and TypeScript template literals.
›Adds JSON language support for deno.lock files.
›Adds a Staging grouping to the Git Panel with separate Staged and Unstaged sections and controls for staging or unstaging changes.
›Adds GPG passphrase prompts in Zed for unlocking commit-signing keys.
›Adds Restore and Restore All buttons to the unstaged diff view for discarding unstaged changes.
›Adds the Git Graph context menu to the Git Panel's History tab.
›Adds tags to Git blame tooltips.
›Adds multi-select to the File Finder and Text Finder via cmd-click (macOS) or ctrl-click (Linux/Windows), tab, or the new cmd-shift-s / ctrl-shift-s shortcuts.
›Enables ACP elicitations by default, allowing ACP agents to collect structured user input.
›Adds the ability to expand in-progress MCP tool calls.
›Adds improved skill deletion with a confirmation prompt and moves deleted skills to the system trash instead of permanently deleting them.
›Adds support for pasting clipboard images into Markdown files.
›Adds cmd-shift-v (macOS) / ctrl-shift-v (Linux/Windows) shortcut in Markdown previews to toggle between preview and source file.
›Adds support for opening gitignored subdirectories as separate workspaces.
›Adds support for regex subroutine calls in project search.
›Adds support for importing VS Code's editor.formatOnSaveMode setting.
›Adds GPT 5.6 Luna, GPT 5.6 Terra, GPT 5.6 Sol, and Grok 4.5 to OpenCode Zen.
›Adds GPT 5.6 Luna support for ChatGPT subscriptions.
›Improves MCP tool headers to show the primary argument when space allows.
›Improves Agent notifications by requesting OS-level attention for the corresponding Zed window.
›Improves copying selected text in the Agent Panel and Markdown Preview: partial selections of styled text copy as well-formed Markdown, and selections within a single inline code span copy as plain text.
›Adds branch filtering with all, local, and remote options in the branch picker.
›Improves semantic token highlighting to distinguish function parameters from local variables.
Jan v0.8.4 adds an OpenAI-compatible gateway, Responses API, native web search, and migrates credentials to the OS keyring.
└──▷ GET THIS VERSION
$ git clone --branch v0.8.4 https://github.com/janhq/jan.git
# already have the repo? check out this version:$ git checkout v0.8.4
›Adds an OpenAI-compatible translating gateway, OpenAI Responses API support, and unified reasoning across providers.
›Moves provider settings and API keys from localStorage to a backend-managed store, with secrets written to the OS keyring — existing data is migrated automatically on first launch.
›Adds native web_search/web_fetch capability via tauri-plugin-websearch.
›Adds per-model chat template kwargs for llama.cpp models.
›Adds a toggle for folding interim text into the reasoning trace in chat.
+3 moreshow less
›Adds API key rotation support for Gemini.
›Adds a token counter for remote and MLX providers.
›Bundles built-in extensions into the app binary.
└──▷ BREAKING ON UPGRADE
!Settings and credentials are now read from and written to the backend store (OS keyring for secrets) instead of the webview localStorage. Downgrading to a pre-0.8.4 build will revert to the older localStorage snapshot, not any settings changed in 0.8.4+.
CUDA NVFP4 W4A4 activation quantization improved with fused kernels and intrinsics for faster inference on NVIDIA GPUs.
└──▷ GET THIS VERSION
$ git clone --branch b10099 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b10099
›Improves NVFP4 W4A4 activation quantization on CUDA with fused per-channel amax and quantization kernels, 32-byte loads, and nvfp4x4 intrinsic support where available, reducing overhead during quantized matrix multiplication.
llama-server now auto-detects mtp/dflash/eagle3 speculative draft sidecars from -hfd repos without requiring --spec-type.
└──▷ GET THIS VERSION
$ git clone --branch b10094 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b10094
└──▷ TRY IT
Run llama-server with speculative decoding against a draft repo that ships sidecars — no --spec-type flag needed; the type is inferred automatically.
$ llama-server -hf repo:Q3_K_M -hfd repo:Q8_0
›Adds automatic speculative decoding type inference when using -hfd with a repo that ships mtp-, dflash-, or eagle3- sidecars — selects the first available following priority order mtp > dflash > eagle3 and sets --spec-type automatically, so llama-server -hf repo:Q3_K_M -hfd repo:Q8_0 works without any extra flag. An explicit --spec-type disables the inference.
Arize Phoenix Evals 3.3.0 adds a toxicity gallery template with an input/output-agnostic benchmark.
└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-evals-v3.3.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:$ git checkout arize-phoenix-evals-v3.3.0
›Adds a toxicity gallery template with an input/output-agnostic benchmark for evaluating toxic content across varied prompt and response surfaces.