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 -175, February 23, 2026

THE AI TOOLCHAIN NO. -175
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED FEBRUARY 23, 2026 · 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   # 8 tools matched
AI & LLM Tooling
◆  AI Coding Agents

GitHub Copilot CLI

Sources Release notes → v0.0.415 NOTES

GitHub Copilot CLI v0.0.415 adds model field for custom agents, show_file tool, and overhauled /mcp show grouping

└──▷ GET THIS VERSION
$ git clone --branch v0.0.415 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v0.0.415
└──▷ TRY IT
Install a locally developed plugin whose directory path includes spaces, without renaming the directory.
$ /plugin install "/Users/analyst/My Plugins/vuln-scanner"
  • Adds model field to custom agent configuration, letting practitioners specify which model powers a given agent.
  • Adds show_file tool for presenting code and diffs to the user inline during a session.
  • Adds /plugin marketplace add and /plugin install support for local paths that contain spaces.
  • Upgrades /mcp show to group servers into User, Workspace, Plugins, and Built-in sections with full keyboard navigation.
  • Plan approval menu now surfaces model-curated actions with a recommended option highlighted first, including autopilot+fleet for parallelizable work.
+3 moreshow less
  • Adds env loading indicator displaying skills, MCPs, plugins, and other resources being loaded at startup.
  • Agent now self-reports which model is powering it when asked during a session.
  • Adds Ctrl+A/E to cycle through visual lines in wrapped input, Home/End to navigate within a visual line, and Ctrl+Home/End to jump to text boundaries.
Was this useful?
◆  AI Agent Frameworks

OpenAI Agents SDK

Sources Release notes → v0.10.0 NOTES

OpenAI Agents SDK v0.10.0 adds opt-in WebSocket mode for the Responses API with a reusable session helper.

└──▷ GET THIS VERSION
$ git clone --branch v0.10.0 https://github.com/openai/openai-agents-python.git
# already have the repo? check out this version:
$ git checkout v0.10.0
└──▷ USE IT
Reuse a single WebSocket connection across two consecutive streamed turns to reduce connection overhead.
python
import asyncio
from agents import Agent, responses_websocket_session

async def main():
    agent = Agent(name="Assistant", instructions="Be concise.")
    async with responses_websocket_session() as ws:
        first = ws.run_streamed(agent, "Say hello in one short sentence.")
        async for _event in first.stream_events():
            pass

        second = ws.run_streamed(
            agent,
            "Now say goodbye.",
            previous_response_id=first.last_response_id,
        )
        async for _event in second.stream_events():
            pass

asyncio.run(main())
  • Adds set_default_openai_responses_transport('websocket') to switch all Responses API calls to WebSocket mode globally.
  • Adds responses_websocket_session() async context manager for a reusable WebSocket connection across multiple streamed agent runs.
  • Adds use_responses_websocket=True parameter to OpenAIProvider to enable WebSocket mode per-provider.
Was this useful?

OpenClaw

Sources Release notes → v2026.2.22 NOTES

Your own personal AI assistant. Any OS.

OpenClaw v2026.2.22 adds Mistral provider support, Synology Chat channel, multilingual FTS memory, and a new --dry-run updater CLI.

└──▷ GET THIS VERSION
$ git clone --branch v2026.2.22 https://github.com/openclaw/openclaw.git
# already have the repo? check out this version:
$ git checkout v2026.2.22
└──▷ TRY IT
Preview what an update would do — channel selected, plugins synced, restart planned — without actually changing anything.
$ openclaw update --dry-run
  • Adds Mistral provider integration with memory embeddings and voice support.
  • Adds native Synology Chat channel plugin with webhook ingress, DM routing, outbound send/media, per-account config, and DM policy controls.
  • Adds optional built-in auto-updater (update.auto.*) with stable rollout delay/jitter and beta hourly cadence, default-off.
  • Adds openclaw update --dry-run to preview channel/tag/target/restart actions without mutating config or installing.
  • Adds Spanish and Portuguese stop-word filtering for FTS-only memory query expansion.
+5 moreshow less
  • Adds Japanese-aware query expansion tokenization and stop-word filtering (including mixed ASCII + katakana) for FTS-only memory search.
  • Adds Korean stop-word filtering and particle-aware keyword extraction (including mixed Korean/English stems) for FTS-only memory search.
  • Adds Arabic stop-word filtering for FTS-only memory query expansion.
  • Adds tag-aware settings filtering and improved config labels/help copy in the dashboard config screen.
  • Adds explicit auth.deviceToken support in gateway connect frames.
└──▷ BREAKING ON UPGRADE
  • !The bundled food-order skill is removed from this repo; it must now be managed and installed from ClawHub instead.
Was this useful?

PydanticAI

Sources Release notes → v1.63.0 NOTES

PydanticAI v1.63.0 adds args_validator for tools, Gemini 2.5 Pro Preview support, and Gemini logprob output.

└──▷ GET THIS VERSION
$ git clone --branch v1.63.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v1.63.0
  • Adds args_validator parameter to tool definitions for pre-execution argument validation before a tool runs.
  • Adds logprob support for Gemini models.
Was this useful?

browser-use

Sources Release notes → 0.11.12 NOTES

browser-use 0.11.12 adds Browser.from_system_chrome() for connecting to an already-running Chrome instance.

└──▷ GET THIS VERSION
$ git clone --branch 0.11.12 https://github.com/browser-use/browser-use.git
# already have the repo? check out this version:
$ git checkout 0.11.12
  • Adds Browser.from_system_chrome() class method to connect browser-use to an already-running system Chrome installation, enabling real-browser and authenticated-session workflows.
Was this useful?
◆  Local LLM Runtimes

llama.cpp

Sources Release notes → b8132 NOTES

llama.cpp b8132: CLI now passes the model's text filename to the model context.

└──▷ GET THIS VERSION
$ git clone --branch b8132 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b8132
  • The CLI provides the model with its text filename, giving the model awareness of the file it was loaded from.
Was this useful?
Other / Uncategorized
◆  VECTOR DB RAG

LanceDB

Sources Release notes → python-v0.30.0-beta.1 2 RELEASES · 2026-02-23 NOTES STABLE

LanceDB python-v0.30.0-beta.1 adds background dataset update checks.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.30.0-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.30.0-beta.1
  • Adds background checking for dataset updates, enabling tables to stay consistent without blocking the main thread.
1 more release in this issue · 2026-02-23
v0.27.0-beta.1 NOTES STABLE

LanceDB v0.27.0-beta.1 adds background dataset update checks for improved consistency.

└──▷ GET THIS VERSION
$ git clone --branch v0.27.0-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.27.0-beta.1
  • Checks for dataset updates in the background, enabling tables to stay consistent without blocking query operations.
Was this useful?
◆  AI OBSERVABILITY

Langfuse

Sources Release notes → v3.155.1 NOTES

Langfuse v3.155.1 adds an experiments section with routing and admin controls, plus evaluation prompt hover previews.

└──▷ GET THIS VERSION
$ git clone --branch v3.155.1 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.155.1
  • Adds experiments pages with routing and admin flag checks for access control.
  • Shows evaluation prompts on hover in the evals UI for quick inspection without leaving the page.
  • Improves chart loading states and failure hints in the web UI for clearer feedback when dashboards fail to load.
  • Passes v2 metrics version to custom dashboard widgets, enabling accurate metric versioning in user-defined dashboard views.
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 →