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 -199, January 30, 2026

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

Anthropic Claude Code

Sources Release notes → v2.1.27 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.27 adds --from-pr flag for PR-linked session resumption and automatic PR linking via gh pr create.

└──▷ GET THIS VERSION
$ git clone --branch v2.1.27 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:
$ git checkout v2.1.27
└──▷ TRY IT
Pick up a Claude Code session exactly where you left off for a specific pull request, by PR number or full URL.
$ claude --from-pr 42
Resume a session using a full PR URL instead of a number — useful when working across multiple repos.
$ claude --from-pr https://github.com/myorg/myrepo/pull/42
  • New --from-pr flag lets you resume a session linked to a specific GitHub PR number or URL.
  • Sessions created via gh pr create are now automatically linked to the corresponding PR.
  • Tool call failures and denials are now recorded in debug logs for easier troubleshooting workflows.
  • VSCode: Enables the Claude in Chrome integration.
  • Permissions now respect content-level ask over tool-level allow, so granular deny patterns like ask: ["Bash(rm *)"] correctly override a broad allow: ["Bash"].
└──▷ BREAKING ON UPGRADE
  • !Permission evaluation order has changed: a content-level ask rule now takes precedence over a tool-level allow. Configurations using allow: ["Bash"], ask: ["Bash(rm *)"] that previously permitted all Bash commands will now prompt for permission on rm commands.
Was this useful?

Cline

Sources Release notes → v3.56.2 3 RELEASES · 2026-01-30 NOTES STABLE

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

Cline v3.56.2 adds Vercel AI Gateway auth, Kimi-K2.5 model, Trinity Large prompt variant, and OpenTelemetry custom headers.

└──▷ GET THIS VERSION
$ git clone --branch v3.56.2 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.56.2
└──▷ TRY IT
Authenticate Cline against a Vercel AI Gateway provider in a headless CI pipeline where no browser is available.
$ cline auth
  • Adds Vercel AI Gateway and Cline API key provider support for headless CI/automation workflows via CLI authentication.
  • Adds Kimi-K2.5 model to the Moonshot provider (262K context, image support, prompt caching).
  • Adds Trinity Large prompt variant for improved tool-calling support.
  • Supports custom headers on OpenTelemetry metrics and logs endpoints.
  • Enables multi-root workspaces, parallel tool calling, and skills by default; disables strict plan mode by default.
+2 moreshow less
  • Hook scripts now run from the workspace repository root instead of the filesystem root.
  • Refreshed feature settings section in Settings UI with a collapsible design.
2 more releases in this issue · 2026-01-30
v3.56.1 NOTES STABLE

Cline v3.56.1 adds Vercel AI Gateway CLI auth, Kimi-K2.5 model, Trinity Large prompt variant, and OpenTelemetry custom headers.

└──▷ GET THIS VERSION
$ git clone --branch v3.56.1 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.56.1
└──▷ TRY IT
Authenticate Cline in a headless CI pipeline using the Cline API key provider for automated workflows.
$ cline auth
  • Adds Vercel AI Gateway and Cline API key provider support for headless CI/automation workflows via CLI authentication.
  • Adds Kimi-K2.5 model to the Moonshot provider with 262K context window, image support, and prompt caching.
  • Adds Trinity Large prompt variant for improved tool-calling support.
  • Supports custom headers on OpenTelemetry metrics and logs endpoints.
  • Changes default settings: multi-root workspaces, parallel tool calling, and skills are now enabled by default; strict plan mode is now disabled by default.
+1 moreshow less
  • Hook scripts now run from the workspace repository root instead of the filesystem root.
v3.56.0 NOTES STABLE

Cline v3.56.0 adds Vercel AI Gateway CLI auth, Kimi-K2.5 model, Trinity Large prompt variant, and OpenTelemetry custom headers.

└──▷ GET THIS VERSION
$ git clone --branch v3.56.0 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.56.0
  • Adds Vercel AI Gateway and Cline API key provider support for headless CI/automation workflows via CLI authentication.
  • Adds Kimi-K2.5 model to the Moonshot provider with 262K context, image support, and prompt caching.
  • Adds Trinity Large prompt variant for improved tool-calling support.
  • Supports custom headers on OpenTelemetry metrics and logs endpoints.
  • Changes default settings: multi-root workspaces, parallel tool calling, and skills now enabled by default; strict plan mode now disabled by default.
+1 moreshow less
  • Hook scripts now run from the workspace repository root instead of filesystem root.
└──▷ BREAKING ON UPGRADE
  • !Hook scripts now run from the workspace repository root instead of filesystem root — any hook that relied on running from the filesystem root will behave differently after upgrading.
Was this useful?

Charm Crush

Sources Release notes → v0.37.0 NOTES

Glamourous agentic coding for all

Crush v0.37.0 adds LSP auto-discovery, MCP server-side instructions, prompt history, and more Copilot models including Gemini 3 Pro/Flash.

└──▷ GET THIS VERSION
$ git clone --branch v0.37.0 https://github.com/charmbracelet/crush.git
# already have the repo? check out this version:
$ git checkout v0.37.0
└──▷ TRY IT
Try the new experimental UI without changing any config permanently.
$ CRUSH_NEW_UI=1 crush
  • Adds automatic LSP discovery — Crush detects and configures installed language servers without manual setup.
  • Supports MCP server-side instructions for richer model-context-protocol integrations.
  • Adds prompt history so previous inputs can be recalled during a session.
  • Expands available Copilot models, including Gemini 3 Pro (Preview) and Gemini 3 Flash (Preview).
  • Opens the commands dialog by pressing / for faster command access.
+3 moreshow less
  • Adds per-session file tracking to scope file awareness to the current session.
  • Enables disabling the indeterminate progress bar via configuration.
  • Previews a new UI, accessible by setting CRUSH_NEW_UI=1 in the environment.
Was this useful?

GitHub Copilot CLI

Sources Release notes → v0.0.400 NOTES

GitHub Copilot CLI v0.0.400 adds autopilot mode, MCP server lifecycle management, a /theme command, and a copilot plugin subcommand.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.400 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v0.0.400
└──▷ TRY IT
Switch the terminal UI to a GitHub-branded theme interactively during a session.
$ /theme
Configure a startup announcement shown to all users when the ACP server starts.
yaml
launch_messages:
  - 'Welcome to Copilot CLI. Remember to review AI suggestions before applying.'
  • Adds copilot plugin subcommand for non-interactive plugin management from the CLI.
  • Adds /theme command with GitHub Dark and Light theme options via a theme picker.
  • Adds launch_messages config key for configuring startup announcements.
  • ACP server now supports permission flags: --yolo, --allow-all, and related permissions config.
  • CLI sends DELETE requests to remove MCP servers on shutdown, enabling clean MCP server lifecycle management.
+11 moreshow less
  • Adds MCP server instructions support.
  • Adds autopilot mode for autonomous task completion (experimental).
  • ACP server supports changing models during a session.
  • Adds fuzzy search to the model picker.
  • Code Review tool handles large changesets by ignoring build artifacts and limiting to 100 files.
  • Timeline displays user responses to ask_user tool prompts with the username.
  • Improves compatibility with remote MCP servers that use OAuth.
  • Diff mode file list uses carousel navigation, showing up to 5 files at a time.
  • Adds support for UNIX keyboard bindings (Ctrl+A/E/W/U/K, Alt+arrows) and multiline content in text inputs.
  • Ordered lists now display with numbers instead of dashes, and Markdown table headers display in bold.
  • Shows a progress indicator in the terminal tab when the model is thinking.
└──▷ BREAKING ON UPGRADE
  • !Bundled LSP servers (TypeScript, Python) have been removed.
Was this useful?

Earendil Works Pi

Sources Release notes → v0.50.6 2 RELEASES · 2026-01-30 NOTES STABLE

AI agent toolkit: unified LLM API, agent loop, TUI, coding agent CLI

Pi v0.50.6 adds ctx.getSystemPrompt() for extensions to read the active system prompt.

└──▷ GET THIS VERSION
$ git clone --branch v0.50.6 https://github.com/earendil-works/pi.git
# already have the repo? check out this version:
$ git checkout v0.50.6
└──▷ USE IT
Inspect or branch logic in an extension based on the active system prompt.
javascript
const prompt = ctx.getSystemPrompt();
  • Adds ctx.getSystemPrompt() to the extension context API, enabling extensions to access the current effective system prompt at runtime.
1 more release in this issue · 2026-01-30
v0.50.4 NOTES STABLE

Pi v0.50.4 adds OSC 52 clipboard over SSH, Vercel AI Gateway routing, new RPC command, and richer editor navigation.

└──▷ GET THIS VERSION
$ git clone --branch v0.50.4 https://github.com/earendil-works/pi.git
# already have the repo? check out this version:
$ git checkout v0.50.4
└──▷ TRY IT
Copy output to the local clipboard from an SSH or mosh session without clipboard frustration.
$ /copy
  • Enables /copy to work over SSH and mosh sessions via OSC 52 terminal escape sequence.
  • Adds Vercel AI Gateway routing with provider failover and load balancing, configured via vercelGatewayRouting in models.json.
  • New set_session_name RPC command lets headless clients set the session display name programmatically.
  • Adds Bash/Readline-style character jump navigation: Ctrl+] forward, Ctrl+Alt+] backward.
  • Adds Emacs-style Ctrl+B / Ctrl+F keybindings for word-level cursor navigation in the editor.
+2 moreshow less
  • Editor now jumps to line start on Up at the first visual line, and line end on Down at the last visual line.
  • New "none" option for doubleEscapeAction setting completely disables the double-escape shortcut.
Was this useful?

Alibaba Qwen Code

Sources Release notes → v0.9.0-preview.1 2 RELEASES · 2026-01-30 NOTES STABLE

Qwen Code v0.9.0-preview.1 adds multi-modal input, concurrent batch CLI, LSP code intelligence, Zed extension, and extra_body for OpenAI-compatible providers.

└──▷ GET THIS VERSION
$ git clone --branch v0.9.0-preview.1 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:
$ git checkout v0.9.0-preview.1
  • Adds extra_body support for OpenAI-compatible providers, allowing arbitrary extra parameters to be passed in API requests.
  • Adds contextWindowSize configuration key for controlling context window size.
  • Adds parentToolCallId and subagentType fields for ACP subagent tracking.
  • New concurrent runner for batch CLI execution, enabling parallel processing of multiple tasks.
  • Adds multi-modal input support (image, PDF, audio) across all content generators.
+6 moreshow less
  • Adds experimental LSP (Language Server Protocol) support for code intelligence.
  • Adds Zed editor extension for the Qwen Code agent server.
  • Supports model selection through ACP in the VS Code IDE companion.
  • Improves retry logic for 429 and 5xx error handling.
  • Implements unified Web UI architecture with shared component library.
  • Clarifies output formats for non-interactive mode.
1 more release in this issue · 2026-01-30
v0.9.0-nightly.20260130.0eb94a29 NOTES STABLE

Qwen Code v0.9.0 adds multi-modal input, concurrent batch CLI, LSP support, extra_body for OpenAI providers, and a Zed extension.

└──▷ GET THIS VERSION
$ git clone --branch v0.9.0-nightly.20260130.0eb94a29 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:
$ git checkout v0.9.0-nightly.20260130.0eb94a29
  • Adds extra_body support for OpenAI-compatible providers, enabling pass-through of provider-specific request body parameters.
  • Adds contextWindowSize configuration key to control the model context window size.
  • Adds parentToolCallId and subagentType fields for ACP subagent tracking.
  • Adds concurrent runner for batch CLI execution, enabling parallel multi-session workloads.
  • Adds multi-modal input support (image, PDF, audio) across all content generators.
+5 moreshow less
  • Adds experimental LSP (Language Server Protocol) support for code intelligence.
  • Adds Zed extension for Qwen Code agent server, extending IDE integration to Zed.
  • Adds model selection support through ACP in the VS Code IDE companion.
  • Improves retry logic for 429 and 5xx error handling in the core request pipeline.
  • Implements unified UI architecture with shared component library for the web UI.
Was this useful?
◆  AI Agent Frameworks

OpenClaw

Sources Release notes → v2026.1.29 NOTES

Your own personal AI assistant. Any OS.

OpenClaw v2026.1.29 adds Venice API key onboarding, Telegram sticker/edit/quote support, Discord gateway intents, per-sender tool policies, and more.

└──▷ GET THIS VERSION
$ git clone --branch v2026.1.29 https://github.com/openclaw/openclaw.git
# already have the repo? check out this version:
$ git checkout v2026.1.29
  • Adds Venice API key support to the non-interactive onboarding flow.
  • Adds a dangerous Control UI device auth bypass flag with audit warnings to the Gateway.
  • Adds per-sender group tool policies with precedence control.
  • Adds extra paths support for memory indexing (symlinks ignored).
  • Adds per-account DM session scope with documented multi-account isolation.
+21 moreshow less
  • Adds Node module compile cache for faster CLI startup.
  • Adds Telegram sticker receive/send with vision caching and pixel forwarding to vision models.
  • Adds Telegram support for editing sent messages via message(action="edit").
  • Adds Telegram support for quote replies in the message tool and inbound context.
  • Adds optional silent send flag to Telegram (disables notifications).
  • Adds caption param support for Telegram media sends.
  • Adds Telegram plugin sendPayload channelData support (media/buttons) with plugin command validation.
  • Adds configurable privileged gateway intents for Discord presences and members.
  • Adds multi-image input support to the Nano Banana Pro skill.
  • Adds Google auth URL display as a copyable link after ASCII prompt.
  • Adds agent message summarization during compaction safeguard pruning.
  • Routes browser control via gateway/node and derives browser ports from gateway.port.
  • Routes browser.request via node proxies when available, honoring proxy timeouts.
  • Warns when gateway is exposed without authentication.
  • Warns when hook tokens are passed via query params and documents header auth preference.
  • Groups /help and /commands output with Telegram paging.
  • Supports tools.exec.safeBins in exec allowlist checks.
  • Renames npm package and CLI to openclaw with a compatibility shim; moves extensions to @openclaw/* scope.
  • Switches Matrix plugin SDK to @vector-im/matrix-bot-sdk.
  • Applies config.env before ${VAR} substitution in config processing.
  • Limits project-local node_modules/.bin PATH preference to debug builds to reduce PATH hijacking risk on macOS.
└──▷ BREAKING ON UPGRADE
  • !Gateway auth mode "none" is removed; gateway now requires token/password (Tailscale Serve identity still allowed). Any setup using auth: none or the gateway auth "off" choice will stop working on upgrade.
  • !The standalone browser control command and control URL config are removed; browser control is now routed via gateway/node.
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 →