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 -039, July 11, 2026

THE AI TOOLCHAIN NO. -039
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED JULY 11, 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

Anthropic Claude Code

Sources Release notes → v2.1.207 NOTES

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.207 makes Auto Mode generally available on Bedrock, Vertex, and Foundry and tightens plugin security.

└──▷ GET THIS VERSION
$ git clone --branch v2.1.207 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:
$ git checkout v2.1.207
└──▷ USE IT
Disable auto mode on Bedrock or Vertex if you relied on the old opt-in flag to keep it off.
json
# In ~/.claude/settings.json
{
  "disableAutoMode": true
}
Migrate a plugin hook from shell-form (now rejected for user-config interpolation) to exec form so it survives the security change.
json
# Before (rejected):
# command: "my-hook ${user_config.api_key}"

# After — exec form in hook definition:
{
  "args": ["my-hook", "$CLAUDE_PLUGIN_OPTION_API_KEY"]
}
  • Auto mode is now available on Bedrock, Vertex AI, and Foundry without the CLAUDE_CODE_ENABLE_AUTO_MODE opt-in flag; disable via disableAutoMode in settings.
  • Bedrock, Vertex, and Claude Platform on AWS now default to Claude Opus 4.8.
  • Plugin hooks/monitors/MCP headersHelper: ${user_config.*} in shell-form commands is now rejected; hooks must use exec form (args array) or $CLAUDE_PLUGIN_OPTION_<KEY>.
  • Plugin option values (pluginConfigs) are no longer read from project-level .claude/settings.json; only user, --settings, and managed settings are honored.
  • Agent view: pasting the same text again now expands the existing collapsed [Pasted text #N] placeholder instead of creating a duplicate.
+2 moreshow less
  • Agent view: blocked session peeks now lead with the question and display a worded staleness clock (e.g. waiting 3m).
  • /doctor now reports when the launcher at ~/.local/bin/claude is externally managed.
└──▷ BREAKING ON UPGRADE
  • !Auto mode no longer reads autoMode from .claude/settings.local.json (repo-resident); move the setting to ~/.claude/settings.json.
  • !${user_config.*} interpolation in shell-form plugin hook/monitor/headersHelper commands is rejected; switch to exec form (args array) or $CLAUDE_PLUGIN_OPTION_<KEY> for hooks, or read the value inside the script for monitors and headersHelper.
  • !pluginConfigs plugin option values are no longer read from project-level .claude/settings.json; only user-level, --settings, and managed settings are honored.
Was this useful?

Cline

Sources Release notes → v4.0.8 NOTES

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

Cline v4.0.8 expands GCP Vertex AI model support with new models and a free-form custom model entry option.

└──▷ GET THIS VERSION
$ git clone --branch v4.0.8 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v4.0.8
  • Adds more models to the GCP Vertex provider dropdown.
  • Enables free-form entry in the Vertex model dropdown to specify custom or unlisted Vertex models.
Was this useful?
◆  AI Model & Data Infrastructure

Ollama

Sources Release notes → v0.32.0 NOTES

Get up and running with Kimi-K2.6, GLM-5.2, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.

Ollama v0.32.0 launches an interactive agent experience and renames the ChatGPT integration.

└──▷ GET THIS VERSION
$ git clone --branch v0.32.0 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.32.0
└──▷ TRY IT
Start the interactive agent session to chat, write code, or delegate tasks without specifying a subcommand.
$ ollama
Launch the renamed ChatGPT integration, or use --restore to revert to your previous ChatGPT profile.
$ ollama launch chatgpt --restore
  • New interactive agent experience: running ollama with no arguments now launches an agent for coding, web search, and delegating work.
  • Simplified ollama launch menu now surfaces only the most popular integrations; all others remain accessible via ollama launch directly.
  • Adds deprecation warnings before launching older agent models (CodeLlama, Qwen2.5(-coder), Llama 3.x, Mistral, StarCoder, base DeepSeek-R1 tags).
Was this useful?
◆  AI Agent Frameworks

OpenAI Agents SDK

Sources Release notes → v0.18.2 NOTES

OpenAI Agents SDK v0.18.2 adds GPT-5.6 request controls and hosted multi-agent beta support.

└──▷ GET THIS VERSION
$ git clone --branch v0.18.2 https://github.com/openai/openai-agents-python.git
# already have the repo? check out this version:
$ git checkout v0.18.2
  • Adds GPT-5.6 request controls support to the SDK.
  • Adds hosted multi-agent beta support.
Was this useful?

PydanticAI

Sources Release notes → v2.9.0 NOTES

PydanticAI v2.9.0 adds a /usage CLI command, GPT-5.6 + reasoning mode support, and usage_limits exposure on RunContext.

└──▷ GET THIS VERSION
$ git clone --branch v2.9.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v2.9.0
└──▷ USE IT
Inspect the active run's token limits inside a tool to short-circuit expensive work before hitting the cap.
python
from pydantic_ai import Agent, RunContext

agent = Agent('openai:gpt-4o')

@agent.tool
async def my_tool(ctx: RunContext[None]) -> str:
    limits = ctx.usage_limits
    if limits and limits.response_tokens_limit and limits.response_tokens_limit < 500:
        return 'Skipping — too close to token limit'
    return 'Proceeding with full response'
Check cumulative token consumption mid-session in the clai interactive CLI.
$ /usage
  • Exposes usage_limits on RunContext so tools and capabilities can inspect the current run's token/request limits at call time.
  • Adds /usage slash command to the clai CLI to display cumulative token usage across a session.
  • Adds GPT-5.6 models and reasoning mode support to the OpenAI provider.
Was this useful?
◆  Local LLM Runtimes

llama.cpp

Sources Release notes → b9963 NOTES

llama.cpp b9963 adds DeepSeek-OCR v1 multi-tile dynamic resolution support with unified image preprocessors.

└──▷ GET THIS VERSION
$ git clone --branch b9963 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b9963
  • Adds DeepSeek-OCR v1 multi-tile dynamic resolution support in mtmd, unifying image preprocessors across DeepSeek-OCR v1 and v2.
Was this useful?

vLLM

Sources Release notes → v0.25.0 NOTES

vLLM v0.25.0 adds a Streaming Parser Engine, static HTTPS/mTLS on the Rust frontend, universal speculative decoding, and a raft of new models and API fields.

└──▷ GET THIS VERSION
$ git clone --branch v0.25.0 https://github.com/vllm-project/vllm.git
# already have the repo? check out this version:
$ git checkout v0.25.0
└──▷ TRY IT
Turn on GPU sync checking during development to surface synchronization issues early.
$ VLLM_GPU_SYNC_CHECK=1 vllm serve <model-id>
  • Adds VLLM_GPU_SYNC_CHECK environment variable for GPU synchronization checking.
  • Adds return_loss_mask field to Chat/Completions responses for training-data generation.
  • Adds model_class_overrides CLI option for development and debugging.
  • Adds repetition_detection sampling parameter in the Rust frontend.
  • Adds kv_transfer_params merging via MultiConnector for PD disaggregation.
+51 moreshow less
  • Adds FLASH_ATTN_MLA_SPARSE environment variable to select the Hopper sparse-MLA attention backend.
  • Adds ROCM_AITER_FA backend flag to enable the AITER FlashAttention MLA prefill path on ROCm.
  • Adds static HTTPS and mTLS support for HTTP and gRPC in the Rust frontend.
  • Adds per-request timing metrics field on Chat/Completions responses.
  • Adds token offsets on render endpoints.
  • Adds profiler control routes in the Rust frontend.
  • Adds a DP supervisor via the Rust frontend.
  • Introduces a new Streaming Parser Engine — a unified tool-call and reasoning parsing framework — with a new Kimi k2.5/k2.6/k2.7 parser and ports of seed_oss and DeepSeek V4 parsers.
  • Adds universal speculative decoding for heterogeneous vocabularies (TLI), enabling spec decode across models with mismatched vocabularies.
  • Adds DSpark and DFlash speculative decoding drafters, including a Laguna XS.2.1 drafter.
  • Adds tok_sparse_select configuration for MiniMax-M3, replacing Triton kernels.
  • Adds LookupResult enum to the KV offloading subsystem.
  • Adds TorchCodec as a video decoding backend.
  • Adds TTFT and TPS metrics printing in vllm chat.
  • Adds usage field exposed for disaggregated serving.
  • Adds a dedicated Harmony renderer for gpt-oss / Harmony serving.
  • Adds a secondary-tier implementation for PD disaggregation.
  • Adds 2/3/5/6/7-bit pack-quantized weight-only inference (Humming).
  • Adds Triton INT4 per-token-head KV cache quantization.
  • Adds NVFP4 KV cache with skip-layers sliding window support.
  • Adds Marlin thread-tile padding extended to MoE (WNA16 + FP8/MXFP8) and int8 grouped WNA16 MoE.
  • Adds FlashInfer MXINT4 MoE support for gated SiLU.
  • Adds W8A8 FP8 linear kernel with multi-granularity quantization for Intel XPU.
  • Adds AITER custom all-reduce in CudaCommunicator for ROCm.
  • Adds INT3 quantization for quickreduce on ROCm.
  • Adds EPLB support for Quark OCP MXFP4 MoE on ROCm.
  • Adds accelerator-agnostic get_memory_info platform API and a C++ implementation for Intel XPU.
  • Adds RVV path for W4A8 INT4 GEMM on RISC-V, BF16 support on VLEN=256 hardware, and reduced LMUL pressure in INT4 LUT dequant.
  • Adds fp16 support on PowerPC.
  • Adds new models: LLaVA-OneVision-2, Unlimited OCR (with Triton R-SWA backend), MOSS-Transcribe-Diarize, openai/privacy-filter, and Hy3 (with token-suffix and JSON Schema array support).
  • Adds GLM-5 / DeepSeek-V3.2 to the model zoo and pipeline parallelism for MiniMax-M3.
  • Model Runner V2 is now the default execution path for all dense models, adding support for EVS, realtime embeddings, Mamba hybrid prefix caching, multimodal-prefix bidirectional attention, and dynamic speculative decoding with full CUDA graphs.
  • Adds sequence parallelism without requiring data parallelism, yielding 1.9–5.0% end-to-end throughput improvement.
  • Adds NCCL symmetric memory support extended to AllGather and ReduceScatter operations.
  • Adds a fault-tolerance backend to detect all-to-all peer faults and prevent corrupted output.
  • Adds Mooncake connector support for GDN (Qwen3.5) and MLA (DeepSeek-V4-Flash) in PD disaggregation.
  • Adds NIXL Mamba1 support for PD disaggregation.
  • Adds fused_indexer_q_rope_quant Triton kernel for GLM-5.2/DeepSeek, providing 1.9–3.3% end-to-end throughput gain.
  • Adds token_to_req_indices cache for DSv4, achieving 5–6x kernel speedup.
  • Adds Responses API namespace tools for OpenAI compatibility.
  • Adds HTTP 422 response for unprocessable image URLs.
  • Adds image decompression-bomb OOM denial-of-service prevention.
  • Adds pluggable sleep-mode backend abstraction with communicator-agnostic capability flags.
  • Adds blocking CUDA events to avoid busy-polling the driver lock.
  • Adds VRAM semaphore infrastructure.
  • Adds FlashInfer fused all-reduce tuned for world_size=16 on GB300 (Blackwell).
  • Adds CuTeDSL/FA4-MLA warmup infrastructure and a B12x backend for non-gated MoEs on Blackwell.
  • Adds Helion fused_qk_norm_rope and silu_and_mul_per_block_quant kernels.
  • Adds accelerated unquantized MoE for AArch64 CPUs.
  • Adds compressed-tensor w8a8 int8 MoE and Mamba ShortConv support on CPU.
  • Adds chunked prefill and prefix caching for Qwen3.5 on CPU.
└──▷ BREAKING ON UPGRADE
  • !PagedAttention has been deleted; deployments relying on the legacy attention implementation must migrate to the V1/MRv2 backend.
  • !Models removed: Baichuan, Aquila, Grok, Tarsier/Tarsier2, AyaVision/MusicFlamingo, and Mantis are no longer supported.
  • !gptq_marlin has been removed from supported ROCm quantization schemes.
  • !Legacy api_server.py has been moved to the examples directory and is no longer the primary server entrypoint.
  • !The old FP8 online MoE quantization class is deprecated (removed in a future release).
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v17.26.0 2 RELEASES · 2026-07-11 NOTES STABLE

Phoenix v17.26.0 clarifies forced tool choice menus in the UI.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v17.26.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v17.26.0
  • Improves forced tool choice menus with clearer labeling to make tool selection options more distinguishable.
1 more release in this issue · 2026-07-11
arize-phoenix-v17.25.0 NOTES STABLE

Phoenix v17.25.0 adds approval-gated annotation config tools, a .env file, and a new Metrics tab with experiment charts.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v17.25.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v17.25.0
└──▷ USE IT
Configure Phoenix server settings persistently without passing environment variables on every launch.
ini
PHOENIX_HOST=0.0.0.0
PHOENIX_PORT=6006
PHOENIX_SQL_DATABASE_URL=sqlite:///phoenix.db
  • Introduces a Phoenix environment file for configuring the server via .env.
  • Adds approval-gated annotation config tools and span-coding support for PXI in the agents workflow.
  • Adds a Metrics tab to the dataset page showing experiment charts in the UI.
  • Refines experiment metric charts in the UI with improved visuals.
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 →