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.
GitHub Copilot CLI v0.0.410 adds /init suppress, repo-level validation tool controls, ACP session loading, and new keyboard/shell ergonomics.
└──▷ GET THIS VERSION
$ git clone --branch v0.0.410 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:$ git checkout v0.0.410
└──▷ TRY IT
Silence per-repo init suggestions after the feature is noisy in a monorepo.
$ /init suppress
›Adds /init suppress subcommand to control init suggestions on a per-repository basis.
›Adds repo-level settings to disable individual validation tools.
›Extends skill name validation to support underscores, dots, and spaces; makes name and description optional in skill frontmatter with sensible fallbacks.
›Supports tilde (~) expansion in MCP server cwd configuration.
›ACP server now supports loading existing sessions.
+9 moreshow less
›Adds Ctrl+Z suspend/resume support on Unix platforms.
›Adds Ctrl+D to exit the CLI on an empty prompt.
›Adds Ctrl+N and Ctrl+P as arrow-key alternatives in the input prompt.
›Shell mode is now accessed only via ! and is removed from the Shift+Tab cycle.
›Shift+Enter inserts newlines in terminals that support the kitty keyboard protocol.
›Adds Page Up / Page Down keyboard scrolling in alt-screen mode.
›MCP server errors and loading issues now surface in the timeline.
›Shows IDE file-selection indicator in the status bar when connected to an IDE.
›Appends a Copilot co-authored-by trailer to git commits created by the tool.
OpenCode v1.2.1 migrates session storage to SQLite and adds a new PartDelta SDK event for incremental updates.
└──▷ GET THIS VERSION
$ git clone --branch v1.2.1 https://github.com/sst/opencode.git
# already have the repo? check out this version:$ git checkout v1.2.1
›Migrates all flat-file session data to a single SQLite database on first run, enabling faster and more scalable session storage.
›New PartDelta SDK event delivers only incremental changes to parts, avoiding repeated transmission of full text-part content.
›Shows all project sessions from any working directory, not just the current one.
└──▷ BREAKING ON UPGRADE
!On first run after upgrading, a one-time data migration runs automatically, converting flat files in the data directory to a SQLite database (~/.local/share/opencode/opencode.db* on Linux/macOS, %APPDATA% on Windows); depending on data volume this may take significant time before the tool becomes usable.
OpenCode v1.2.0 migrates storage to SQLite and adds a PartDelta SDK event plus a --dir CLI flag.
└──▷ GET THIS VERSION
$ git clone --branch v1.2.0 https://github.com/sst/opencode.git
# already have the repo? check out this version:$ git checkout v1.2.0
└──▷ TRY IT
Run opencode against a specific project directory without changing your shell's working directory.
$ opencode run --dir /path/to/project
›Migrates session data from flat files to a single SQLite database for improved storage performance and reliability.
›New PartDelta SDK bus event (message.part.delta) delivers only incremental text-part changes, eliminating redundant full-content retransmissions.
›New --dir option on the run command lets you specify the working directory at invocation time.
›Moves timeout configuration from the programmatic API to a CLI flag, enabling per-invocation timeout control.
└──▷ BREAKING ON UPGRADE
!On first run, all flat files in the data directory are migrated to ~/.local/share/opencode/opencode.db (or %APPDATA% on Windows); the migration may take significant time depending on data volume and hardware.
Qwen Code v0.10.1-nightly adds --session-id for CLI/SDK and TPM throttling retry handling.
└──▷ GET THIS VERSION
$ git clone --branch v0.10.1-nightly.20260214.03c38899 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.10.1-nightly.20260214.03c38899
└──▷ TRY IT
Resume or correlate a specific conversation session across CLI invocations by pinning a session ID.
$ qwen --session-id my-debug-session-001 'Continue analysing the auth module'
›Adds --session-id flag to the CLI and SDK, enabling callers to specify or resume a named session.
›Adds TPM throttling error handling with an automatic 1-minute retry delay when rate limits are hit.
OpenClaw v2026.2.13 adds Discord voice messages, Hugging Face provider support, configurable presence status, and Slack thread-ownership gating.
└──▷ GET THIS VERSION
$ git clone --branch v2026.2.13 https://github.com/openclaw/openclaw.git
# already have the repo? check out this version:$ git checkout v2026.2.13
›Adds Discord voice message sending with waveform previews from local audio files, including silent delivery.
›Adds configurable Discord presence status, activity, type, and URL (custom status defaults to activity text).
›Adds Slack/plugin thread-ownership outbound gating via message_sending hooks, with @-mention bypass tracking and cancel/modify behavior.
›Adds first-class Hugging Face Inference provider support with onboarding auth flow, API key configuration, and default-model selection.
›Adds pre-prompt context diagnostics for agent embedded runner calls (messages, systemPromptChars, promptChars, provider/model, session file) to aid overflow debugging.
+4 moreshow less
›Adds synthetic catalog support for the hf:zai-org/GLM-5 agent model.
›Adds security audit misconfiguration checks for sandbox Docker config, ineffective gateway.nodes.denyCommands entries, minimal tool-profile overrides, and permissive extension-plugin tool reachability.
›Blocks high-risk tools (sessions_spawn, sessions_send, gateway, whatsapp_login) from HTTP /tools/invoke by default, with gateway.tools.{allow,deny} overrides.
›Adds security audit distinction between external webhooks (hooks.enabled) and internal hooks (hooks.internal.enabled) in attack-surface summaries.
└──▷ BREAKING ON UPGRADE
!Canvas IP-based auth fallback now only accepts machine-scoped addresses (RFC1918, link-local, ULA IPv6, CGNAT); public-source IP matches now require bearer token auth.
llama.cpp b8054 adds multimodal support for Nemotron Nano 12B v2 VL.
└──▷ GET THIS VERSION
$ git clone --branch b8054 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b8054
›Adds vision-language (VL) support for the Nemotron Nano 12B v2 model, including pre-downsampled position embeddings during GGUF conversion for fixed input sizes.