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.
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
Claude Code v2.1.181 adds in-prompt config setting, Apple Events sandbox opt-in, and a presence-file push-notification suppressor.
└──▷ GET THIS VERSION
$ git clone --branch v2.1.181 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:$ git checkout v2.1.181
└──▷ TRY IT
Toggle extended thinking off mid-session without leaving the prompt.
$ /config thinking=false
Suppress mobile push notifications while you're actively at your machine by pointing the env var at a lock file you create on login.
$ export CLAUDE_CLIENT_PRESENCE_FILE="$HOME/.claude_presence" && touch "$HOME/.claude_presence" && claude
›Adds /config key=value slash command to set any configuration value directly from the prompt (e.g. /config thinking=false), works in interactive mode, -p, and Remote Control.
›Adds sandbox.allowAppleEvents opt-in setting so sandboxed commands can send Apple Events on macOS.
›Adds CLAUDE_CLIENT_PRESENCE_FILE environment variable: point it at a marker file to suppress mobile push notifications while at the machine.
›Upgrades the bundled Bun runtime to v1.4.
›Improves streaming of long paragraphs: text now appears line-by-line instead of waiting for the first line break.
+3 moreshow less
›Improves subagent panel: idle subagents auto-hide after 30 s, list caps at 5 rows with scroll hints, and keyboard hints appear in the footer.
›Improves MCP OAuth browser page to match Claude Code's visual style and auto-close on success.
Autonomous coding agent as an SDK, IDE extension, or CLI assistant.
Cline CLI v3.0.27 adds a cline skill command, a prefilled MCP install wizard, and stricter input validation.
└──▷ GET THIS VERSION
$ git clone --branch cli-v3.0.27 https://github.com/cline/cline.git
# already have the repo? check out this version:$ git checkout cli-v3.0.27
›New cline skill command to install and manage skills, mirroring cline plugin install and cline mcp (defaults to the Cline agent directory).
›New prefilled MCP install wizard command for faster MCP server setup.
›CLI now rejects unknown commands and unquoted multi-word input with a clear error instead of silently treating bad arguments as a prompt.
└──▷ BREAKING ON UPGRADE
!The CLI now rejects unknown commands and unquoted multi-word input with an error rather than silently treating them as a prompt — any scripts or workflows relying on that silent fallback behavior will break.
Zed v1.7.2 adds agent context auto-compaction with /compact, git graph custom commands via $ZED_GIT_REF, and Add to .git/info/exclude support.
└──▷ GET THIS VERSION
$ git clone --branch v1.7.2 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:$ git checkout v1.7.2
└──▷ TRY IT
Compact the current agent context mid-thread to free up context window space without starting a new session.
$ /compact
Run a custom git command against a branch or tag directly from the git graph context menu — the clicked ref is available as $ZED_GIT_REF.
$ git checkout $ZED_GIT_REF
›Adds /compact slash command to Zed Agent for manual context compaction, alongside automatic context compaction triggered by the agent itself.
›Adds a git graph context menu for ref labels (branches, remote refs, tags) that runs custom git commands against the clicked ref, exposed as $ZED_GIT_REF (e.g. git checkout $ZED_GIT_REF).
›Adds Add to .git/info/exclude option under a new Git submenu in the project panel and git panel context menus, alongside the existing Add to .gitignore action.
›Adds default_open_behavior setting to control whether selecting a project from the recent projects menu adds it to the sidebar or opens it in a new window.
›Adds a markdown: toggle block quote action.
+15 moreshow less
›Adds support for surrounding selected Markdown text with ~ by typing ~.
›Adds ability to stylize built-in Python exceptions and warnings using the type.class.builtin syntax capture.
›Adds context window usage and cost metrics display for external agents that support it.
›Adds the ability to delete sessions from history for external agents that support it.
›Adds a button to the git worktree picker to remove an open worktree from the current window.
›Detects .envrc files as Shell Script.
›Adds an optional tree view for commit details changed-file lists.
›Makes zed:// links clickable in the terminal.
›Adds Chromium code review and SourceHut remote provider icons to the git panel.
›Adds scope picker (User vs. project) to the settings window breadcrumb for sub-pages such as Skills and per-language settings.
›Moves agent skills management into the settings UI.
›Allows loading skills whose descriptions exceed the 1024-byte limit by showing warnings instead of failing to load them.
Semantic Kernel Python 1.43.1 adds function_choice_behavior support to Azure AI and OpenAI Assistant agents.
└──▷ GET THIS VERSION
$ git clone --branch python-1.43.1 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:$ git checkout python-1.43.1
›Adds function_choice_behavior support to Azure AI and OpenAI Assistant agents, enabling tool-call control for agent interactions.
Metal backend concat operator gains f16, bf16, i8, i16, and i64 tensor type support on Apple Silicon.
└──▷ GET THIS VERSION
$ git clone --branch b9689 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b9689
›Extends the Metal backend kernel_concat operator to support f16, bf16, i8, i16, and i64 tensor types in addition to the existing f32 and i32, enabling broader model architectures to run GPU-accelerated on Apple Silicon.
llama.cpp b9688 adds a server-side model management API with download, delete, and SSE real-time update endpoints.
└──▷ GET THIS VERSION
$ git clone --branch b9688 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b9688
›Adds a model management API to the llama.cpp server router, including endpoints to download models, delete models, and stream real-time status updates via SSE (Server-Sent Events).
llama.cpp b9675 extends SYCL FP16 support to SQR, SQRT, LOG, SIN, COS, and CLAMP operations.
└──▷ GET THIS VERSION
$ git clone --branch b9675 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b9675
›Enables FP16 support in SYCL backend for the SQR, SQRT, LOG, SIN, COS, and CLAMP operations, broadening half-precision GPU acceleration on Intel SYCL devices.
llama.cpp b9673 adds GGML_SYCL_USM_SYSTEM env var to enable VRAM overcommit via USM system allocations on SYCL devices.
└──▷ GET THIS VERSION
$ git clone --branch b9673 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b9673
└──▷ TRY IT
Run a model that exceeds available VRAM on a SYCL device (e.g. Intel B580) by enabling USM system allocations for automatic host/device memory migration.
›Adds GGML_SYCL_USM_SYSTEM environment variable to enable optional USM system allocations for large GPU buffers (≥ 1 GB) on SYCL devices, allowing VRAM overcommit by letting the OS manage host/device memory migration; falls back to regular allocations if unsupported.
Phoenix v17.8.0 adds an Agent GraphQL skill and theme-aware UI pre-loading.
└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v17.8.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:$ git checkout arize-phoenix-v17.8.0
›Adds an Agent GraphQL skill, enabling agent-oriented queries through the GraphQL interface.
›UI background color pre-loading now respects saved theme preferences and OS-level dark/light mode settings.
Langfuse v3.188.0 adds rate limits to web callouts and the agent, blob storage integrations to core data S3 export, and a subquery-IN rewrite for observations.
└──▷ GET THIS VERSION
$ git clone --branch v3.188.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:$ git checkout v3.188.0
›Adds blob_storage_integrations to the core data S3 export worker, expanding what gets included in bulk exports.
›Adds rate limits to web callouts via the feat(web-callouts) surface.
›Adds rate limits to the agent component.
›Introduces a subquery-IN rewrite for observations-v2 queries, available behind an environment flag.