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 -313, October 8, 2025

THE AI TOOLCHAIN NO. -313
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED OCTOBER 8, 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   # 12 tools matched
AI & LLM Tooling
◆  AI Agent Frameworks

Agno (formerly Phidata)

Sources Release notes → v2.1.3 NOTES

Agno v2.1.3 adds Claude on Vertex AI, OpenRouter fallback models, and MCP server support for custom FastAPI apps

└──▷ GET THIS VERSION
$ git clone --branch v2.1.3 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v2.1.3
└──▷ USE IT
Expose an AgentOS instance with a custom FastAPI app as an MCP server so external MCP clients can call your agents.
python
agent_os = AgentOS(app=my_fastapi_app, enable_mcp_server=True)
  • Enables AgentOS instances running a custom FastAPI base app to be exposed as MCP servers via the enable_mcp_server parameter.
  • Adds a new Claude model class for serving Claude models through Vertex AI.
  • Adds fallback model support to the OpenRouter class, allowing multiple models to be defined so that if the primary model fails a fallback is used automatically.
  • Agents, Teams, and Workflows exposed via an AgentOS MCP server can now use MCP tools themselves.
  • Updates FileTools toolkit to handle relative paths across all its methods.
Was this useful?

AutoGPT

Sources Release notes → autogpt-platform-beta-v0.6.32 NOTES

AutoGPT Platform v0.6.32 adds credential management UI, custom node selection, LaunchDarkly and Prometheus instrumentation to the new builder.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.6.32 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.6.32
  • Instruments Prometheus metrics for internal services.
  • Adds LaunchDarkly feature-flag tracking on the frontend browser.
  • Adds Sentry user tracking on the client side.
  • Adds an API key modal for adding credentials in the new builder.
  • Adds a new credential field in the new builder.
+2 moreshow less
  • Adds a selecting UI for custom nodes in the new builder.
  • Adds a description field to the Upload Agent dialog.
Was this useful?

LangChain LangGraph

Sources Release notes → cli==0.4.3 NOTES

Build resilient agents.

LangGraph CLI 0.4.3 adds auth control on custom routes and server customization ordering.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.4.3 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.4.3
  • Adds auth flag in HttpConfig to enable or disable authentication on custom routes.
  • Adds configuration for controlling the ordering of server customization (middleware/routers).
Was this useful?

PydanticAI

Sources Release notes → v1.0.16 NOTES

PydanticAI v1.0.16 adds datetime.time/timedelta XML formatting, contextual agent name overrides, and FileUrl force-download support.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.16 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v1.0.16
  • Respects FileUrl.force_download flag in OpenAI Chat and Responses model integrations.
  • Supports datetime.time and timedelta types in format_as_xml, enabling richer XML serialization of time-based fields.
  • Allows agent name to be overridden contextually at runtime, without changing the agent's definition.
  • Accepts Sequence[ModelMessage] instead of list for method argument types, broadening compatibility with any sequence type.
  • Validates FileUrl and BinaryContent objects without an identifier as valid inputs.
Was this useful?

browser-use

Sources Release notes → 0.7.11 NOTES

browser-use 0.7.11 adds IP blocking, external agent stop, Cerebras provider, cookie saving, and a screenshot tool.

└──▷ GET THIS VERSION
$ git clone --branch 0.7.11 https://github.com/browser-use/browser-use.git
# already have the repo? check out this version:
$ git checkout 0.7.11
  • Adds IP blocking feature to prevent the browser agent from connecting to specified IP addresses.
  • Adds functionality to stop the agent externally, enabling programmatic interruption of running agent sessions.
  • Adds Cerebras as a supported LLM provider.
  • Adds cookie saving capability to persist authentication state across sessions.
  • Adds a screenshot tool for agents to capture browser state on demand.
+2 moreshow less
  • Adds an option to include interactive elements, giving finer control over which page elements the agent considers.
  • Stores agent state messages in the run history for improved auditability of agent sessions.
Was this useful?
◆  AI Coding Agents

Cline

Sources Release notes → v3.32.7 NOTES

Autonomous coding agent as an SDK, IDE extension, or CLI assistant.

Cline v3.32.7 launches a super-alpha CLI with send, oneshot, yolo, and checkpoint-restore commands plus AWS Bedrock global/JP inference profile support.

└──▷ GET THIS VERSION
$ git clone --branch v3.32.7 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.32.7
└──▷ TRY IT
Send a follow-up message to a running Cline task from the CLI.
$ cline send "Add error handling to the function you just wrote"
  • Introduces a 'super alpha' Cline CLI (cline-cli) for running Cline tasks from the terminal.
  • Adds send as a top-level CLI command for sending messages to a running Cline task.
  • Adds oneshot CLI command for running a single task non-interactively.
  • Adds --yolo flag to the CLI for fully autonomous execution without confirmation prompts.
  • Adds --settings flag and settings parsing to the CLI for configuring Cline from the command line.
+7 moreshow less
  • Adds checkpoint restore capability to the CLI.
  • Adds streaming markdown rendering in the CLI for real-time output display.
  • Shows historical messages in the Cline task view via the CLI.
  • Supports AWS Bedrock global and Japan (jp) inference profiles.
  • Adds multi-root workspace mentions support, enabling file references across multiple workspace roots.
  • Renders focus-chain checklist items as markdown in the UI.
  • Moves MCP marketplace catalog from global state to disk cache, improving persistence and startup performance.
└──▷ BREAKING ON UPGRADE
  • !The global --config flag has been removed from the CLI.
Was this useful?

Continue

Sources Release notes → v1.2.8-vscode 2 RELEASES · 2025-10-08 NOTES STABLE

Continue v1.2.8 adds AWS credential onboarding, environment.json support, MCP JSON formats, and a /pause endpoint for cn serve.

└──▷ GET THIS VERSION
$ git clone --branch v1.2.8-vscode https://github.com/continuedev/continue.git
# already have the repo? check out this version:
$ git checkout v1.2.8-vscode
└──▷ TRY IT
Connect to an already-running remote agent by its ID instead of spawning a new one.
$ cn --id <agent-id>
Pause a running cn serve agent session via its REST endpoint, e.g. from a CI pipeline hook.
$ curl -X POST http://localhost:<port>/pause
  • Adds .continue/environment.json file support, handled by cn serve, for managing environment configuration.
  • Adds --id option to cn CLI to connect to existing remote agents via tunnel.
  • Adds /pause endpoint to the cn serve command.
  • Adds status tool for cn to report agent/session status.
  • Enhances /init command to create custom slash commands.
+8 moreshow less
  • Adds AWS credentials onboarding flow to the CLI.
  • Supports standard MCP JSON formats, with MCP loading errors now surfaced in config loading errors.
  • Adds UI for global rule creation.
  • Adds tool call args preprocessing for improved agent tool use.
  • Highlights the first incomplete item in CLI checklist display.
  • Shows dangerous commands only once per session in the CLI.
  • Makes ToolCallStatusMessage.tsx clickable in the UI.
  • Adds Runloop blueprint CI integration for the cn CLI.
1 more release in this issue · 2025-10-08
@continuedev/[email protected] NOTES STABLE

Continue 1.27.0 adds MCP OAuth via mcp-remote, auto-accept agent edits, and directory context referencing in chat.

└──▷ 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 auto-accept agent edits setting that automatically accepts edit tools invoked by the agent, removing manual approval prompts during agentic workflows.
  • Adds MCP OAuth support in the CLI via mcp-remote, enabling authenticated MCP server connections from the command line.
  • Adds MentionFileInChatAction and directory mention support, letting users reference both individual files and entire directories as chat context simultaneously.
  • Adds MentionRepoMapInChatAction to include the repository map as chat context directly from the IDE action menu.
  • Adds a Continue icon to the context actions group in the IDE for quicker access to context-related actions.
Was this useful?

GitHub Copilot CLI

Sources Release notes → v0.0.337 NOTES

GitHub Copilot CLI v0.0.337 adds multi-line input for Kitty-protocol terminals and new cursor movement shortcuts.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.337 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v0.0.337
  • Supports multi-line input in terminals that implement the Kitty keyboard protocol.
  • Adds Ctrl+B and Ctrl+F keybindings for moving the cursor backward and forward in the input line.
  • Adds validation for MCP server names.
  • OAuth login UI now begins polling as soon as the device code is generated, improving reliability over SSH connections.
Was this useful?

Zed

Sources Release notes → v0.207.3 NOTES

Zed v0.207.3 adds Vim project-panel navigation, GitHub avatars in blame gutter, agent profile search, and Linux font improvements.

└──▷ GET THIS VERSION
$ git clone --branch v0.207.3 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.207.3
└──▷ USE IT
Show GitHub avatars next to blame annotations to identify authors at a glance without leaving the editor.
json
{
  "git": {
    "blame": {
      "show_avatar": true
    }
  }
}
  • Adds "git": { "blame": { "show_avatar": true } } setting to render GitHub avatars in the Git blame gutter.
  • Adds Vim commands to the project panel: ctrl-u/ctrl-d scroll half-page, z z/z t/z b center/top/bottom, and {num} j/{num} k count-based movement.
  • Adds support for :set ignorecase and :set noignorecase in Vim mode.
  • Adds vim: yank end of line action (equivalent to y$).
  • Adds xAI custom model configuration support for tool and image capabilities.
+10 moreshow less
  • Adds qwen3-coder to the list of supported Ollama models.
  • Adds ability to search profiles in the agent panel's profile picker.
  • Helix: Implements select_regex.
  • Enables splitting the git commit view pane.
  • Enables Vim mode in the rules editor.
  • Markdown Preview now supports HTML heading elements.
  • Linux: Implements perceptual gamma/contrast correction for font rendering.
  • Improves project search relevance by ranking results using match score instead of insertion order.
  • Collaboration: Uses a distinct sound effect when a guest joins a call.
  • Improves rules library UI to distinguish default rules from regular rules.
└──▷ BREAKING ON UPGRADE
  • !Helix mode names in the UI no longer carry the HELIX_ prefix: HELIX_NORMAL becomes NORMAL, HELIX_SELECT becomes SELECT.
Was this useful?
◆  AI Model & Data Infrastructure

Microsoft ONNX Runtime

Sources Release notes → v1.23.1 NOTES

ONNX Runtime v1.23.1 adds new Python and C# APIs, CPU MoE kernels, and a dynamic QNN HTP performance mode option.

└──▷ GET THIS VERSION
$ git clone --branch v1.23.1 https://github.com/microsoft/onnxruntime.git
# already have the repo? check out this version:
$ git checkout v1.23.1
  • Adds a dynamic option to set HTP performance mode in the QNN EP (QNN EP).
  • Adds MemcpyFromHost and MemcpyToHost support for plugin execution providers.
  • Adds CPU Mixture-of-Experts (MoE) kernel for CPU execution.
  • Adds block-wise QMoE kernel for CPU execution.
  • Implements new Python APIs.
+3 moreshow less
  • Implements missing C# APIs.
  • Adds session_id_ to LogEvaluationStart, LogEvaluationStop, and LogSessionCreationStart for improved session tracing.
  • Adds EP ABI check to verify whether nodes specified in GetCapability() have already been assigned.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v12.4.0 NOTES

Phoenix 12.4.0 adds PKCE support for OAuth 2.0 OIDC authentication flows.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v12.4.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v12.4.0
  • Adds PKCE (Proof Key for Code Exchange) support for OAuth 2.0 OIDC authentication, hardening authorization code flows against interception attacks.
Was this useful?
◆  VECTOR DB RAG

LanceDB

Sources Release notes → python-v0.25.2 2 RELEASES · 2025-10-08 NOTES STABLE

LanceDB python-v0.25.2 adds use_index for merge inserts, namespace-backed databases, and bitmap indexes on more column types

└──▷ GET THIS VERSION
$ git clone --branch python-v0.25.2 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.25.2
  • Adds use_index parameter to merge insert operations, enabling index-accelerated lookups during upserts.
  • Supports bitmap indexes on large-string, binary, large-binary, and bitmap column types, expanding index coverage beyond standard string columns.
  • Adds namespace-backed database support in the Rust backend, enabling namespace-scoped table isolation.
  • Upgrades lance to 0.38.2.
1 more release in this issue · 2025-10-08
v0.22.2 NOTES STABLE

LanceDB v0.22.2 adds use_index for merge-insert, namespace-backed databases, and bitmap indexes on more Arrow types.

└──▷ GET THIS VERSION
$ git clone --branch v0.22.2 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.22.2
  • Adds use_index parameter to merge insert operations, enabling index-accelerated lookups during upsert workflows.
  • Supports namespace-backed databases in the Rust client, enabling federated multi-namespace database topologies.
  • Extends bitmap index support to large-string, binary, large-binary, and bitmap Arrow column types.
  • Adds test_remote_connections support for validating remote connection configurations.
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 →