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.407 adds /on-air mode, --alt-screen, --resume with UUID, /instructions, workspace-local MCP via .vscode/mcp.json, and a tools.list RPC.
└──▷ GET THIS VERSION
$ git clone --branch v0.0.407 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:$ git checkout v0.0.407
└──▷ USE IT
Configure workspace-local MCP servers so the project's agent tooling is checked in alongside the code.
Lightweight coding agent that runs in your terminal
Codex CLI v0.99.0 adds concurrent shell execution, new TUI controls, app-server steering APIs, and GIF/WebP image support.
└──▷ GET THIS VERSION
$ git clone --branch rust-v0.99.0 https://github.com/openai/codex.git
# already have the repo? check out this version:$ git checkout rust-v0.99.0
└──▷ TRY IT
Customize which metadata fields appear in the TUI status line without leaving the interface.
$ /statusline
Restrict agents to specific web search modes and enforce network constraints for enterprise deployments.
ini
# requirements.toml
[requirements]
allowed_web_search_modes = ["safe"]
[network]
# network constraints defined here
›Enables concurrent shell command execution alongside active agent turns without interruption.
›Adds /statusline command for interactively configuring which metadata appears in the TUI footer.
›Adds sortable resume picker with toggle between creation time and last-updated time, with an in-picker mode indicator.
›New app-server APIs for steering active turns (turn/steer), listing experimental features, resuming agents (resume_agent), and opting out of specific notifications.
›Enterprise requirements.toml now supports restricting allowed web search modes (allowed_web_search_modes) and defining network constraints.
+2 moreshow less
›Image attachments now accept GIF and WebP formats in addition to previously supported types.
›Adds shell environment and rc file snapshotting to bootstrap shell commands.
Qwen Code v0.10.0-preview.6 adds MCP tool progress updates in TUI/SDK mode and a new Coding Plan authentication mode.
└──▷ GET THIS VERSION
$ git clone --branch v0.10.0-preview.6 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.10.0-preview.6
›Adds MCP tool progress update support in TUI and SDK mode, surfacing real-time progress from MCP tools during execution.
›Adds Coding Plan authentication mode with a unified AuthDialog for streamlined login flows.
$ git clone --branch v0.223.3 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:$ git checkout v0.223.3
└──▷ TRY IT
Pre-populate the Agent Panel with a task prompt from an external script or CI link, so teammates land directly in a scoped AI thread.
$ open 'zed://agent?prompt=Review%20the%20latest%20diff%20for%20secrets%20or%20hardcoded%20credentials'
Open every new terminal in the directory of whichever file you are currently editing, keeping context local to your working file.
json
"working_directory": "current_file_directory"
›Opens the Agent Panel with a pre-filled prompt via zed://agent?prompt=<url_encoded_text> URL, enabling deep-links into AI-assisted workflows.
›Adds current_file_directory as a valid value for the terminal working_directory setting ("working_directory": "current_file_directory") to open new terminals in the active file's directory.
›Adds a settings page in the settings editor for customizing tool-call permissions per Agent tool.
›Adds support for ACP Session Config options for agents that provide them.
›Adds automatic blocking of known-dangerous Agent terminal commands such as rm -rf / and rm -rf ~.
+15 moreshow less
›Adds the ability to send terminal selections directly into an Agent thread.
›Adds multiple edit-prediction providers — GitHub Copilot Next Edit Suggestions, Ollama, Codestral, Sweep, and Mercury Coder — configurable via the Edit Prediction menu under Configure Providers.
›Adds Azure as a supported Git provider.
›Adds GitLab merge request links in the git blame hover popover.
›Adds a MultiDiffView showing all changed files in a single scrollable view.
›Extends zed --diff to recurse into directories when given folders instead of files.
›Adds right-click download option for files and folders stored on remote development servers.
›Adds detection of devcontainers located in subfolders.
›Adds configurable max height and width limits for REPL output, with large outputs scrolling and images scaling to the viewport.
›Adds JSON output support to the REPL.
›Adds memory-usage display per language server in the language servers menu.
›Improves autocomplete for .zed/settings.json to surface only project-level-valid settings.
›Changes the built-in file picker to show all hidden files by default.
›Adds double-click support on files in the Git Panel status list to open them in the editor.
OpenAI Agents SDK v0.8.4 adds ShellTool with container runtime and native skills support.
└──▷ GET THIS VERSION
$ git clone --branch v0.8.4 https://github.com/openai/openai-agents-python.git
# already have the repo? check out this version:$ git checkout v0.8.4
└──▷ USE IT
Run an agent with a sandboxed container shell and a pinned skill reference — useful when your agent needs to execute shell commands inside an isolated, network-disabled container with a pre-built skill.
python
from agents import Agent, ShellTool
agent = Agent(
name="Shell Agent",
model="gpt-5.2",
instructions="Use the available shell tool to answer user requests.",
tools=[
ShellTool(
environment={
"type": "container_auto",
"network_policy": {"type": "disabled"},
"skills": [
{
"type": "skill_reference",
"skill_id": "skill_698bbe879adc81918725cbc69dcae7960bc5613dadaed377",
"version": "1",
}
],
}
)
],
)
›Adds ShellTool with environment parameter supporting type: container_auto, network_policy, and skills (via skill_reference with skill_id and version) for hosted container shell runtime with native skills support.