Back
GoogleAntigravity
Mid-conversation model execution, custom agent subagent dependencies, and MCP parameter validation fixes
AI summary
Written by AI from the official notes. Check them for exact details.New features include mid-conversation model execution and improved metadata handling, along with several bug fixes.
- Introduced
/modelfor mid-conversation model switching. - Added
conversation_titlefor active conversation display. - Custom agents can now declare subagent dependencies.
- Improved
/settingspanel with verbosity explanations. - Fixed tool calls to reject undeclared parameters.
Why it matters: Users who rely on custom agents and model switching will benefit from these enhancements and fixes.
Full release notes13 changes
Introduces /model for running one-off prompts with alternative models, adds conversation_title metadata to status line scripts, adds subagent dependency declarations in custom agent Markdown frontmatter, and delivers fixes for MCP argument schema validation, headless permission handling, Vim normal mode shortcuts, and cross-conversation artifact access prompts.
- Added
/model, which runs a single prompt on another model and then returns the session to the model it was using, so you can consult a different model mid-conversation without disturbing your saved default. - Added a
conversation_titlefield to the JSON payload passed to custom status line and window title scripts, so they can show the active conversation's name and pick up renames immediately. - Added an
agentslist to custom agent Markdown frontmatter, letting an agent declare the subagents it depends on using the same workspace-relative, absolute, and agent-relative path rules asskills. - Improved
/modelto show a[model]argument hint as you type, so the command's arguments are discoverable without opening help. - Improved the
/settingspanel so each Verbosity option explains itself as you highlight it, describing whether tool calls, commands, and thoughts are shown in full or collapsed into a token metrics table. - Improved the sign-in and Google Cloud setup screens to use the CLI's standard styled key hints, which follow your color scheme and keybindings and drop the navigation hint when only one option is available.
- Changed
/modelto reportModel already set towhen the session is already using that model, instead of reporting a switch that did not happen. - Fixed tool calls to MCP servers accepting arguments the server's own schema never declared, so an invented parameter is now rejected and corrected instead of being silently dropped.
- Fixed headless runs with
-psilently skipping tool actions they were not permitted to take, which now end with a notice naming the refused actions and report them asdenied_actionsin the JSON output. - Fixed
?in Vim Normal mode opening the shortcuts panel while the prompt already contained text, so character-search and replace operators such asf?,t?, anddf?work;?still opens shortcuts on an empty prompt. - Fixed
/modelwith no argument doing nothing when run before the session had finished starting up, so it now opens the model picker. - Fixed print mode (
-p) exiting before the session finished shutting down, which could drop the run's trailing conversation history before it reached disk. - Fixed a redundant approval prompt when the agent reads or writes another conversation's artifact files after you have already allowed access to files outside your workspace.