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 -230, December 30, 2025

THE AI TOOLCHAIN NO. -230
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED DECEMBER 30, 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   # 5 tools matched
AI & LLM Tooling
◆  AI Coding Agents

GitHub Copilot CLI

Sources Release notes → v0.0.373 NOTES

GitHub Copilot CLI v0.0.373 adds tab completion for path arguments and enables Copilot Spaces tools in GitHub MCP Server.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.373 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v0.0.373
  • Adds tab completion for path arguments in slash commands like /cwd and /add-dir.
  • Enables Copilot Spaces tools in GitHub MCP Server.
  • Device code authorization polling now begins immediately instead of waiting for clipboard and browser to open.
  • GitHub URL resolution now works correctly for GHE (GitHub Enterprise) environments.
  • Kill command filtering now correctly allows commands where 'kill' appears as an argument rather than a command name.
Was this useful?

SST OpenCode

Sources Release notes → v1.0.218 4 RELEASES · 2025-12-30 NOTES STABLE

The open source coding agent.

OpenCode v1.0.218 adds Prisma language server support and extract reasoning middleware

└──▷ GET THIS VERSION
$ git clone --branch v1.0.218 https://github.com/sst/opencode.git
# already have the repo? check out this version:
$ git checkout v1.0.218
  • Adds Prisma language server for Prisma schema intelligence inside OpenCode
  • Adds extract reasoning middleware to surface model chain-of-thought reasoning
  • Adds CORS exception to support the Tauri desktop application
3 more releases in this issue · 2025-12-30
v1.0.214 NOTES STABLE

OpenCode desktop now sorts servers by health and shares projects across all local servers.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.214 https://github.com/sst/opencode.git
# already have the repo? check out this version:
$ git checkout v1.0.214
  • Sorts desktop servers by health status for easier identification of available instances.
  • Enables project sharing across all local servers in the desktop app.
  • Improves text selection behavior in the desktop app.
v1.0.210 NOTES STABLE

OpenCode v1.0.210 adds web interface project opening, global Claude skills, variants toggle, plugin server URL exposure, and desktop system notifications.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.210 https://github.com/sst/opencode.git
# already have the repo? check out this version:
$ git checkout v1.0.210
  • Adds ability to open projects in the web interface.
  • Reads global Claude skills in addition to project-specific skills.
  • Adds a variants toggle.
  • Exposes server URL to plugins.
  • Adds readline shortcuts to the desktop app.
+1 moreshow less
  • Adds system notifications support for the desktop application.
v1.0.209 NOTES STABLE

OpenCode v1.0.209 adds Nix syntax highlighting, nixfmt formatting, and optional WebFetch format parameter.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.209 https://github.com/sst/opencode.git
# already have the repo? check out this version:
$ git checkout v1.0.209
  • Adds Nix syntax highlighting for Nix files.
  • Adds nixfmt formatter support for Nix files.
  • Makes the format parameter optional in WebFetch, defaulting to markdown.
Was this useful?

All Hands AI OpenHands

Sources Release notes → 1.1.0 NOTES

OpenHands: AI-Driven Development

OpenHands 1.1.0 adds OAuth 2.0 Device Flow for CLI auth, Forgejo integration, and conversation export.

└──▷ GET THIS VERSION
$ git clone --branch 1.1.0 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 1.1.0
└──▷ HOW TO FIND IT
Authenticate the OpenHands CLI from a headless server or remote shell without needing a browser on the same machine.
📍In the OpenHands CLI, select 'Login' and follow the Device Flow prompt: visit the displayed URL on any device and enter the code to authorize the session.
Save a full agent conversation for audit, review, or sharing — useful after a complex remediation session.
📍In the OpenHands UI, open the conversation panel, locate the session, and click 'Export Conversation' to download the conversation as a file.
  • Adds OAuth 2.0 Device Flow for CLI authentication, enabling headless and browser-less login workflows.
  • Adds Forgejo integration, extending repository provider support to the self-hosted Forgejo platform.
  • Adds an Export Conversation button in the conversation panel to save full conversation history.
  • Adds a Refresh button on the Changes tab for on-demand file-diff updates without reloading.
Was this useful?

Alibaba Qwen Code

Sources Release notes → v0.6.0-nightly.20251230.105ad743 NOTES

Qwen Code v0.6.0-nightly adds locale-based LLM language auto-detection and ChatCompletionContentPart merging support.

└──▷ GET THIS VERSION
$ git clone --branch v0.6.0-nightly.20251230.105ad743 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:
$ git checkout v0.6.0-nightly.20251230.105ad743
  • Auto-detects the system locale to set the LLM output language, eliminating manual language configuration.
  • Supports merging ChatCompletionContentPart objects and filters empty messages from chat completion requests.
Was this useful?
◆  AI Agent Frameworks

LlamaIndex

Sources Release notes → v0.14.12 NOTES

LlamaIndex v0.14.12 adds async tool spec support, Element node parser, new LLM/embedding integrations, and MongoDB async Atlas support.

└──▷ GET THIS VERSION
$ git clone --branch v0.14.12 https://github.com/run-llama/llama_index.git
# already have the repo? check out this version:
$ git checkout v0.14.12
└──▷ USE IT
Keep an Ollama embedding model loaded in memory between requests to avoid cold-start latency in high-throughput pipelines.
python
from llama_index.embeddings.ollama import OllamaEmbedding

embed_model = OllamaEmbedding(
    model_name="nomic-embed-text",
    keep_alive="10m",
)
embeddings = embed_model.get_text_embedding("Hello, world!")
  • Adds keep_alive parameter to llama-index-embeddings-ollama embedding class to control model persistence in memory.
  • Switches use_file_api to a flexible file_mode field in llama-index-llms-google-genai for more granular file upload handling, with a bump to google-genai v1.52.0.
  • Adds gpt-5.2 and gpt-5.2 pro model support to llama-index-llms-openai.
  • Adds async support to ToolSpec across llama-index-core, llama-index-vector-stores-azurepostgresql, llama-index-vector-stores-lancedb, and llama-index-callbacks-agentops.
  • Adds new Element node parser to llama-index-core for structured element-level document parsing.
+11 moreshow less
  • Adds new llama-index-llms-aibadgr integration (v0.1.0) for AI Badgr OpenAI-compatible LLMs.
  • Adds new llama-index-tools-typecast integration (v0.1.0) with text-to-speech features.
  • Adds MENTIONS edge type to the NebulaGraph property graph store in llama-index-graph-stores-nebula.
  • Adds Voyage Multimodal 3.5 model support to llama-index-embeddings-voyageai.
  • Adds async MongoDB Atlas vector store support to llama-index-vector-stores-mongodb.
  • Adds delete index capability to llama-index-vector-stores-mongodb.
  • Adds Google Vertex AI Vector Search v2.0 support to llama-index-vector-stores-vertexaivectorsearch.
  • Permits passing a custom httpx.AsyncClient when constructing a BasicMCPClient in llama-index-tools-mcp.
  • Restores haiku-3 model support to llama-index-llms-anthropic.
  • Improves MockFunctionCallingLLM in llama-index-core for better testing of function-calling workflows.
  • Adds positional thought signature for 'thoughts' in llama-index-llms-google-genai.
└──▷ BREAKING ON UPGRADE
  • !The use_file_api field in llama-index-llms-google-genai is replaced by file_mode; existing code setting use_file_api must be updated to use file_mode.
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 →