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.
AutoGPT Platform adds Slack and Discord blocks, Markdown chat export, AutoPilot task queue, and smarter workflow triggers.
└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.6.60 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:$ git checkout autogpt-platform-beta-v0.6.60
›Adds Export Chat as Markdown option to the session menu for saving agent conversations.
›Adds SendSlackMessageBlock for direct Slack message integration within agent workflows.
›Adds smart Discord thread support with a setup-link button, human mentions, and bot-to-bot communication.
›Introduces AutoPilot task queue capped at 5 running and 15 in-flight tasks per user for resource management.
›Adds 'Trigger On Anything' mode for enhanced flexibility in workflow trigger configuration.
+6 moreshow less
›Seeds dynamic-cost block preflight estimates from 30-day historical production usage averages for more accurate cost projection.
›Auto-opens the artifact panel when an agent creates a new artifact.
›Enables auto-rerouting of OpenAI models through OpenRouter when configured.
›Enables Stripe automatic tax on checkout sessions.
›Redesigns the publish agent flow modal and creator dashboard edit modal.
›Surfaces 15% yearly savings in the switch-to-yearly modal and defaults onboarding pricing to yearly with monthly-equivalent and charged-today display.
›Adds native Tool Search support for Anthropic and OpenAI providers, with custom search strategies available on any provider.
›Introduces the Instrumentation capability class; the existing Agent(instrument=...) parameter is now deprecated in favour of capabilities=[Instrumentation(...)].
›Renames 'built-in tools' to 'native tools'; native tools are now registered via capabilities=[NativeTool(...)]; old fields are deprecated ahead of v2.
›Adds local= opt-in parameter for provider-adaptive capability fallback; auto-fallback is deprecated.
›Supports combining structured output and tool use together for Gemini 3 models via the Google provider.
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.141 adds terminalSequence hooks, HTTPS plugin cloning, workspace identity scoping, and richer agent/rewind controls.
└──▷ GET THIS VERSION
$ git clone --branch v2.1.141 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:$ git checkout v2.1.141
└──▷ TRY IT
Trigger a desktop notification from a hook after a long-running task completes, without needing a controlling terminal.
$ # In your hook script, emit a bell via terminalSequence:
echo '{"terminalSequence": "\a"}'
Install a Claude Code plugin in a CI/CD environment that lacks a GitHub SSH key.
$ CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1 claude plugin install <plugin-name>
List only agents scoped to the current project directory, filtering out unrelated sessions.
$ claude agents --cwd /path/to/project
›Adds terminalSequence field to hook JSON output, enabling hooks to emit desktop notifications, window titles, and bells without a controlling terminal.
›Adds CLAUDE_CODE_PLUGIN_PREFER_HTTPS env var to clone GitHub plugin sources over HTTPS instead of SSH, for environments without a GitHub SSH key.
›Adds ANTHROPIC_WORKSPACE_ID env var for workload identity federation, scoping minted tokens to a specific workspace when a federation rule covers more than one.
›Adds claude agents --cwd <path> to scope the session list to a specific directory.
›Extends /feedback to optionally include sessions from the last 24 hours or 7 days, covering issues that span multiple sessions.
+5 moreshow less
›Adds 'Summarize up to here' option in the Rewind menu to compress earlier context while keeping recent turns intact.
›Background agents launched via /bg or ←← now preserve the current permission mode instead of reverting to default.
›Auto mode permission dialog now explains when a permissions.ask rule triggered the prompt.
›Spinner now warms to amber after 10 seconds of thinking to signal Claude is still working.
›Improves plugin menu navigation: →/Tab switch tabs, ↑ moves to the tab strip, and tab headers and search box are clickable in fullscreen mode.
$ git clone --branch v0.15.11 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.15.11
└──▷ TRY IT
Force structured JSON output in a non-interactive CI pipeline by constraining the model response to a schema.
$ qwen --headless--json-schema '{"type":"object","properties":{"severity":{"type":"string"},"summary":{"type":"string"}},"required":["severity","summary"]}' 'Review the following diff for security issues: ...'
Disable tool search for a prefix-caching model to avoid cache invalidation caused by dynamic tool lists.
yaml
# In your Qwen Code settings file
# tools.toolSearch.enabled: false
›Adds --json-schema flag to headless mode for structured JSON output constrained to a user-supplied schema.
›Adds tools.toolSearch.enabled setting to control tool-search behavior for prefix-caching models.
›Adds DASHSCOPE_PROXY_BASE_URL environment variable to route DashScope prompt-cache requests through an API gateway.
›Writes a runtime.json sidecar file for active sessions, exposing live session metadata on disk.
›Injects traceId and spanId into debug log files for OpenTelemetry (OTel) correlation.
+10 moreshow less
›Adds hierarchical session tracing spans to telemetry.
›Adds a codegraph skill for PR review risk analysis and merge-conflict detection.
›Adds standalone archive installation path for environments where npm install is unavailable.
›Adds Ctrl+B keybind to promote context in the CLI.
›Replaces the internal fdir crawler with git ls-files (with ripgrep fallback) for faster, git-aware file enumeration.
›Defers low-frequency built-in tools at startup to reduce initial prompt token size.
›Keeps ask_user_question tool always visible in the tool list to surface clarification UX.
›Improves Anthropic proxy compatibility and enables global prompt cache scope.
›Bounds session-list metadata reads to head/tail 64 KB with pooled buffers and lazy message counts, enabling usable performance on very large session histories.
›Expands core built-in i18n (internationalization) coverage in the CLI.
└──▷ BREAKING ON UPGRADE
!The qwen auth CLI subcommand is removed; authentication is now handled exclusively through the /auth TUI dialog.
!The useCollector telemetry setting and TelemetryTarget.QWEN target are removed; configs referencing them will silently lose those values.
Zed v1.2.3 adds Git Graph remote support, MCP 2025-11-25, new editor actions, and path pasting in the terminal.
└──▷ GET THIS VERSION
$ git clone --branch v1.2.3 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:$ git checkout v1.2.3
└──▷ USE IT
Lock the cursor's vertical position in the viewport when jumping to definitions — useful in large files where spatial context matters.
json
// In settings.json
{
"go_to_definition_scroll_strategy": "preserve"
}
Quickly base64-encode selected text (e.g. a secret or token) without leaving the editor.
📍Open the command palette with Cmd+Shift+P (macOS) or Ctrl+Shift+P (Linux/Windows), then run: editor: convert to base64
›Adds git::ToggleFillCommitEditor action to expand the commit editor to fill the git panel's available vertical space.
›Adds a new preserve option to go_to_definition_scroll_strategy that keeps the cursor at the same vertical position within the viewport when navigating to a definition.
›Adds editor: convert to base64 and editor: convert from base64 commands to the command palette.
›Adds support for MCP version 2025-11-25.
›Git Graph: Adds remote support, enabling visualization of remote branches in the graph.
+15 moreshow less
›Git Graph: Adds a context menu to graph rows.
›Adds View History to folder and project-root context menus in the project panel, opening Git history for the selected folder or the whole project.
›Adds running agent version display in the External Agent settings (ACP).
›Adds Mistral Ministral 3 models.
›Adds path pasting functionality in the terminal.
›Adds support for embedded bitmaps in fonts on Linux.
›Adds text rendering support for BGR subpixel layouts.
›Adds the ability to move a currently open project to a new window through the recent projects modal.
›Adds the line endings button setting to the settings UI.
›Adds a jump-to-project-file affordance from the commit view.
›AWS Bedrock provider now always uses 1M context windows for Anthropic models.
›Improved text rendering clarity on macOS, particularly in dark themes.
›Improved performance of 'Replace All' in buffer search.
›Improved settings window performance.
›Improved Vim navigation in the git graph with Ctrl-U and Ctrl-D half-page scrolling.
llama.cpp server and WebUI now support continuing generation on reasoning models with chain-of-thought preservation.
└──▷ GET THIS VERSION
$ git clone --branch b9133 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b9133
›Server and WebUI support continued generation on reasoning models by orchestrating thinking_start_tag / thinking_end_tag pairs around prefilled messages, so the stream parser routes chunks correctly after a resume.
›Server rejects reasoning prefill on channel-based templates (e.g. GPT-OSS) with an explicit error, limiting scope to simple thinking-tag templates.
llama.cpp b9129 adds GGML_ZENDNN_ADAPTIVE_FALLBACK env var to control ZenDNN-to-CPU fallback for small batch sizes.
└──▷ GET THIS VERSION
$ git clone --branch b9129 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b9129
›Adds GGML_ZENDNN_ADAPTIVE_FALLBACK environment variable (default: enabled) to control whether the ZenDNN backend adaptively falls back to the CPU backend for small batch sizes.
Ollama v0.30.0 adds llama.cpp engine support, broader GGUF model compatibility, and faster NVIDIA performance.
└──▷ GET THIS VERSION
$ git clone --branch v0.30.0 https://github.com/ollama/ollama.git
# already have the repo? check out this version:$ git checkout v0.30.0
›Adds llama.cpp engine as a backend, augmenting the existing MLX engine on Apple Silicon and extending support to a wider range of hardware.
›Supports GGUF-based models from Hugging Face directly, including user fine-tuned models.
›Delivers faster inference performance on NVIDIA hardware.
└──▷ BREAKING ON UPGRADE
!nomic-embed-text now converts inputs to lowercase per the model card; prior Ollama versions incorrectly preserved mixed case, so embeddings generated by this model will differ from previous versions.
Phoenix 15.8.0 adds session population for agent traces and thinking controls for Anthropic and Google in the playground.
└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v15.8.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:$ git checkout arize-phoenix-v15.8.0
›Adds thinking controls for Anthropic and Google models in the playground UI.
›Populates project_sessions for /chat and /summary agent traces, enabling session-level grouping of agent interactions.
›Rebalances the pxi tool layout for improved workspace ergonomics.
Phoenix v15.7.0 adds trace user feedback annotations and session-tagged identifiers for open/axial coding workflows.
└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v15.7.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:$ git checkout arize-phoenix-v15.7.0
›Adds trace user feedback annotations, enabling practitioners to attach human feedback directly to individual traces.
›Adds session-tagged identifiers for open/axial coding workflows, supporting qualitative analysis patterns on session data.
›Makes session turn messages expandable in the UI for easier inspection of multi-turn conversation traces.
›Moves UI toast notifications to top-center with sonner-style stacking for improved visibility during active workflows.
└──▷ BREAKING ON UPGRADE
!The v1 /chat route and its associated code have been removed.
Langfuse v3.174.0 adds email verification on signup, configurable blob-export field groups, and exposes exportSource/exportFieldGroups in the public REST API.
└──▷ GET THIS VERSION
$ git clone --branch v3.174.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:$ git checkout v3.174.0
›Exposes exportSource and exportFieldGroups in the public REST API for blob exports, giving teams programmatic control over what data is included in exports.
›Adds configurable exportFieldGroups for events export, letting operators select which field groups are included when exporting blob/event data.
›Adds exportFieldGroups DB column with tRPC passthrough as the backend plumbing for the new field-group export feature.
›Adds email verification on signup to strengthen account authentication at registration time.
›Adds more default views to the v4 traces view in the web UI.
Composio @composio/[email protected] surfaces accountType filter on connectedAccounts.list() and namespaces Shared Connection mutation APIs under experimental.
└──▷ GET THIS VERSION
$ git clone --branch @composio/[email protected] https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:$ git checkout @composio/[email protected]
└──▷ USE IT
List all SHARED connected accounts for a specific creator user without dropping to the raw client.
›Adds accountType: 'SHARED' filter to connectedAccounts.list() so SHARED connections can be listed directly without dropping to the raw client.
›Moves accountType and aclConfigForShared options on connectedAccounts.link() and session.authorize() under a single experimental block, signalling that the shape may change in future releases.
›Promotes connectedAccounts.updateAcl() off the class to a top-level named export experimental_updateAcl(composio, id, opts), consistent with the existing experimental_createTool / experimental_createToolkit pattern.
└──▷ BREAKING ON UPGRADE
!The flat accountType and aclConfigForShared options on connectedAccounts.link() and session.authorize() must now be nested inside an experimental: { ... } block — callers passing these at the top level will no longer compile or behave correctly.
!connectedAccounts.updateAcl() has been removed from the class; callers must switch to the top-level experimental_updateAcl(composio, id, opts) export.
$ git clone --branch python-v0.32.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:$ git checkout python-v0.32.0
└──▷ USE IT
Tag client requests with a user identity when connecting to LanceDB Cloud for audit and multi-tenant tracking.
python
import lancedb
from lancedb import ClientConfig
db = lancedb.connect(
"db://my-project",
api_key="<api_key>",
client_config=ClientConfig(user_id="[email protected]"),
)
›Adds IVF_HNSW_FLAT vector index type, combining IVF partitioning with HNSW graph search over flat (uncompressed) vectors.
›Adds user_id field to ClientConfig for per-user identification in enterprise/cloud connections.
›Supports Enum types in Pydantic-to-Arrow schema conversion, so Python enum fields map correctly to Arrow schemas.
›Supports child namespace operations and JSON serialization for LanceDBConnection, enabling nested namespace hierarchies.
+3 moreshow less
›Adds manifest-enabled directory namespace mode for organizing tables within namespaces.
›Supports nested namespace operations in database listing.
›Makes Permutation fork-safe for PyTorch DataLoader workers, enabling safe use in multi-process data loading.
└──▷ BREAKING ON UPGRADE
!Namespace-related naming and enterprise integration have been consolidated — existing code referencing the old namespace identifiers or enterprise connection fields may break after upgrade.
›Adds manifest-enabled directory namespace mode for managing database namespaces.
+3 moreshow less
›Supports child namespace operations and JSON serialization for LanceDBConnection in Python.
›Supports nested namespace operations in listing databases from Rust.
›Supports Enum types in Pydantic-to-Arrow schema conversion in Python.
└──▷ BREAKING ON UPGRADE
!Namespace-related naming and enterprise integration identifiers have been consolidated — existing code referencing the old namespace naming conventions or enterprise integration entry points may break and require updates.