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.
AutoGPT Platform adds Enrichlayer and v0 by Vercel integrations, LaunchDarkly feature flags, and editing for agent submissions.
└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.6.23 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:$ git checkout autogpt-platform-beta-v0.6.23
›Adds support for v0 by Vercel models and credentials as a new LLM provider integration.
›Adds Enrichlayer integration for data enrichment workflows.
›Implements LaunchDarkly feature flag support for the block menu redesign.
›Adds frontend service to docker-compose with environment config improvements.
›Streamlines Supabase to minimal essential services in the platform stack.
+4 moreshow less
›Enables editing for agent submissions.
›New library agent view setup.
›Adds a Line Tabs UI component.
›Adds a reusable component for the new block menu.
Semantic Kernel .NET 1.63.0 adds Guid/ObjectId key support for MongoDB and enriches OpenAPI parameter schemas.
└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.63.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:$ git checkout dotnet-1.63.0
›Adds support for Guid and ObjectId key types in the MongoDB Connector, expanding the range of document ID formats usable with the vector store integration.
›Adds OpenAPI parameter descriptions to their JSON schemas, improving function metadata surfaced to the kernel when importing OpenAPI plugins.
$ git clone --branch v1.0.24-vscode https://github.com/continuedev/continue.git
# already have the repo? check out this version:$ git checkout v1.0.24-vscode
└──▷ USE IT
Enable autocomplete tuning in a YAML config file now that autocompleteOptions is supported there.
Crush v0.7.0 adds a --data-dir flag and git-style parent-directory discovery for the .crush state folder.
└──▷ GET THIS VERSION
$ git clone --branch v0.7.0 https://github.com/charmbracelet/crush.git
# already have the repo? check out this version:$ git checkout v0.7.0
└──▷ TRY IT
Point Crush at a shared data directory on a per-invocation basis, useful when you want to keep project state outside the default location.
$ crush --data-dir /path/to/project/.crush
›Adds --data-dir (-D) flag to specify a custom path for the .crush data directory at runtime.
›Automatically discovers a .crush directory in any parent directory, similar to how git locates .git, so subdirectory work reuses the project's data dir.
Qwen Code v0.0.8-nightly.5 adds .geminiignore support in grep and a project/global save location option.
└──▷ GET THIS VERSION
$ git clone --branch v0.0.8-nightly.5 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.0.8-nightly.5
└──▷ USE IT
Exclude build artifacts and secrets from grep results by listing them in .geminiignore at the repo root.
yaml
# .geminiignore
dist/
*.env
node_modules/
*.log
›Adds .geminiignore support to the grep tool, so files and paths listed in .geminiignore are excluded from grep searches.
›Adds a project/global save location option, letting users choose whether settings are saved at the project or global scope.
Keep the project panel closed by default when opening new projects, reducing visual noise.
json
{
"project_panel": {
"starts_open": false
}
}
›Adds top-level "macos", "windows", and "linux" fields in user settings to configure OS-specific overrides, with lower precedence than release-channel settings.
›Adds reasoning_effort field (values: minimal, low, medium (default), high) to OpenAI model entries under language_models.openai.available_models for controlling reasoning effort per model.
›Adds project_panel.starts_open setting to control whether the project panel opens automatically in new projects.
›Adds status_bar.show_active_language_button setting to show or hide the language button in the status bar.
›Adds git.inline_blame.padding setting for configurable padding on inline blame annotations.
+15 moreshow less
›Adds theme_overrides setting for theme-specific setting overrides.
›Adds git: Clone action to clone remote Git repositories from within Zed.
›Adds compare marked files context menu item in the project panel to diff any two files against each other.
›Adds Subtle and Eager edit prediction modes for Copilot and Supermaven.
›Adds thinking support for the Mistral provider in the Agent.
›Adds support for Ollama gpt-oss model in the Agent.
›Adds editor: unwrap syntax node action for the editor.
›Agent now creates checkpoints before every edit, not just periodically.
›OpenAI-compatible models now have configurable capabilities.
›Adds Run to Cursor back to the editor context menu in the Debugger.
›Go: Adds support for running Go table-test subtests.
›Vue: Adds Emmet support in Vue.js files.
›Vim: Adds filename support in :tabnew and :tabedit commands.
›Vim: Adds ctrl-y / ctrl-e in insert mode to copy the next character from the line above or below.
└──▷ BREAKING ON UPGRADE
!FreeBSD support has been removed temporarily.
!The default split directions for pane: split horizontal and pane: split vertical have changed; restore the old behavior via pane_split_direction_horizontal and pane_split_direction_vertical in settings.
!always_allow_tool_actions is removed from project-local settings and is now a global-only setting.
!Settings overrides (e.g. local project settings) can now only override disable_ai to true; they can no longer re-enable AI that has been disabled at a higher level.
An open-source AI agent that brings the power of Gemini directly into your terminal.
gemini-cli v0.2.0-preview.0 adds automatic conversation saving, Zed editor integration, MCP server restart, and tool auto-approval.
└──▷ GET THIS VERSION
$ git clone --branch v0.2.0-preview.0 https://github.com/google-gemini/gemini-cli.git
# already have the repo? check out this version:$ git checkout v0.2.0-preview.0
└──▷ TRY IT
Restart a misbehaving MCP server mid-session without quitting gemini-cli.
$ /mcp refresh
›Introduces ChatRecordingService for automatic conversation saving to session files.
›Adds read/write file access through the Zed editor via IDE integration.
›Adds hideFooter setting to hide the footer from the CLI UI.
›Enables /mcp refresh to restart MCP servers in addition to refreshing them.
›Shows /ide subcommands dynamically based on actual IDE connection status rather than a static boolean.
+5 moreshow less
›Adds IDE client information to /bug and /about output when IDE mode is enabled.
›Adds skipNextSpeakerCheck setting to control speaker-check behavior in core.
›Auto-approves compatible pending tools when 'allow always' is selected, reducing repetitive prompts.
›Refactors shell execution to use node-pty for improved terminal emulation support.
›Adds file change tracking metrics to session telemetry.