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.
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.45 adds Claude Sonnet 4.6 support, SDK rate-limit types, and richer plugin/spinner customization.
└──▷ GET THIS VERSION
$ git clone --branch v2.1.45 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:$ git checkout v2.1.45
└──▷ USE IT
Suppress all default spinner tips and show only your team's custom messages during long operations.
json
In your Claude Code settings (e.g. .claude/settings.json), add:
{
"spinnerTipsOverride": {
"tips": ["Hang tight — running your scan…", "Almost there…"],
"excludeDefault": true
}
}
Load a shared plugin and marketplace config from a team-wide directory so all members get the same plugins without touching per-repo config.
$ claude --add-dir /shared/team-claude-config
›Supports Claude Sonnet 4.6 as a selectable model.
›Reads enabledPlugins and extraKnownMarketplaces from --add-dir directories, enabling plugin and marketplace configuration via added directories.
›New spinnerTipsOverride setting lets you supply custom spinner tip strings and optionally suppress built-in tips with excludeDefault: true.
›New SDKRateLimitInfo and SDKRateLimitEvent types expose rate-limit utilization, reset times, and overage data to SDK consumers.
›[VSCode] Permission destination choice (project/user/session) now persists across sessions.
Continue v1.2.16 adds .continue/agents support, a cn checks CLI command, MCP App integration, and LM Studio agent mode.
└──▷ GET THIS VERSION
$ git clone --branch v1.2.16-vscode https://github.com/continuedev/continue.git
# already have the repo? check out this version:$ git checkout v1.2.16-vscode
└──▷ TRY IT
Run code quality checks against your project from the terminal using the new CLI subcommand.
$ cn checks
›Adds cn checks CLI subcommand for running checks from the command line.
›Introduces .continue/agents directory support for defining and managing agents as local config files.
›Adds limited MCP (Model Context Protocol) App support as a new integration surface.
›Enables agent mode support for LM Studio models.
›Makes create/read rule tools disabled by default, changing the out-of-the-box agent tool permissions.
+1 moreshow less
›Adds curl/irl installation scripts for the Continue CLI.
└──▷ BREAKING ON UPGRADE
!The create/read rule tools are now disabled by default; existing setups relying on these agent tools being enabled will need to explicitly re-enable them.
Copilot CLI v0.0.411 adds Claude Sonnet 4.6, --alt-screen syntax, include_coauthor config, MCP Windows Registry support, and SDK APIs for plan/autopilot/fleet.
└──▷ GET THIS VERSION
$ git clone --branch v0.0.411 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:$ git checkout v0.0.411
└──▷ USE IT
Suppress the Co-authored-by trailer in commits made by Copilot — useful when your org policy disallows it or you want cleaner git history.
yaml
include_coauthor: false
›Adds --alt-screen on and --alt-screen off flag syntax to explicitly control alt-screen mode.
›Adds include_coauthor config option to disable the Co-authored-by trailer in git commits.
›Adds SDK APIs for plan mode, autopilot, fleet, and workspace files.
›Supports MCP servers sourced from the Windows On-Device Registry.
›Adds support for the Claude Sonnet 4.6 model.
+3 moreshow less
›Custom agents now use disable-model-invocation instead of infer (backward compatible).
›Autopilot mode and /fleet command are now available to all users.
›Memory storage timeline now shows subject, fact, and citations.
Lightweight coding agent that runs in your terminal
Codex CLI gains richer app metadata in listings and a configurable prepare-commit-msg hook for co-author attribution.
└──▷ GET THIS VERSION
$ git clone --branch rust-v0.103.0 https://github.com/openai/codex.git
# already have the repo? check out this version:$ git checkout rust-v0.103.0
›App listing responses now include app_metadata, branding, and labels, enabling richer app cards without extra requests.
›Commit co-author attribution now uses a Codex-managed prepare-commit-msg hook, with command_attribution config support to set a default label, a custom label, or disable attribution entirely.
Codex CLI gains unified permissions flow, structured network approvals, multi-agent roles, and model reroute notifications.
└──▷ GET THIS VERSION
$ git clone --branch rust-v0.102.0 https://github.com/openai/codex.git
# already have the repo? check out this version:$ git checkout rust-v0.102.0
›Adds a unified permissions flow with clearer permissions history in the TUI and a new slash command to grant sandbox read access to blocked directories.
›Introduces structured network approval handling with richer host/protocol context shown directly in approval prompts.
›Adds customizable multi-agent roles configurable via the main config file.
›Adds a model/rerouted notification so clients can detect and render model reroute events explicitly.
Pi v0.53.0 adds caller-controlled I/O error draining, pluggable auth storage backends, and a new Claude Sonnet 4-6 model entry.
└──▷ GET THIS VERSION
$ git clone --branch v0.53.0 https://github.com/earendil-works/pi.git
# already have the repo? check out this version:$ git checkout v0.53.0
›Adds SettingsManager.drainErrors() for caller-controlled settings I/O error handling without manager-side console output.
›Adds pluggable auth storage backends (FileAuthStorageBackend, InMemoryAuthStorageBackend) and AuthStorage.fromStorage(...) for flexible auth persistence wiring.
›Adds Anthropic claude-sonnet-4-6 model fallback entry to generated model definitions.
└──▷ BREAKING ON UPGRADE
!SettingsManager setters now update in-memory state immediately and queue disk writes — code that requires durable on-disk settings must call await settingsManager.flush() explicitly.
!AuthStorage constructor is no longer public — code using new AuthStorage(...) directly will break; use AuthStorage.create(...), AuthStorage.fromStorage(...), or AuthStorage.inMemory(...) instead.
langchain-openai 1.1.10 adds automatic server-side compaction support and a new langchain-openrouter provider package.
└──▷ GET THIS VERSION
$ git clone --branch langchain-openai==1.1.10 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-openai==1.1.10
›Adds langchain-openrouter as a new provider package, enabling OpenRouter as a first-class LangChain integration.
›Supports automatic server-side compaction for OpenAI chat models.
LanceDB v0.27.0-beta.0 adds RecordBatch support in Rust, reranker info in hybrid search explain plans, and improved PyTorch Permutation integration.
└──▷ GET THIS VERSION
$ git clone --branch v0.27.0-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:$ git checkout v0.27.0-beta.0
›Accepts RecordBatch and Vec<RecordBatch> directly in create_table() and Table.add() in the Rust API, removing the need to wrap batches before ingestion.
›Shows reranker info in hybrid search explain plans, making it easier to inspect and debug reranking behavior.
›Improves Permutation PyTorch integration and adds a getitems implementation for the permutation type.
└──▷ BREAKING ON UPGRADE
!The Rust create_table() and Table.add() APIs now accept RecordBatch and Vec<RecordBatch> directly; callers using the previous input types may need to update their call sites.
LanceDB python-v0.30.0-beta.0 adds reranker info in hybrid search explain plans and improves PyTorch Permutation integration.
└──▷ GET THIS VERSION
$ git clone --branch python-v0.30.0-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:$ git checkout python-v0.30.0-beta.0
›Shows reranker info in hybrid search explain plans for better query introspection.
›Improves PyTorch integration for the Permutation type, including a new getitems implementation.
›Updates the lance dependency to v2.0.1.
└──▷ BREAKING ON UPGRADE
!The Rust create_table() and Table.add() now accept RecordBatch and Vec<RecordBatch> directly; callers using the previous input types must update their code.