Google AI Studio Launches 'Agents' Tab for Ephemeral Gemini Agents
trending_up Trend: studio

Google AI Studio Launches 'Agents' Tab for Ephemeral Gemini Agents

calendar_month June 28, 2026

Summary

With the introduction of the new “Agents” tab in the Google AI Studio Playground, Google provides developers with an integrated interface to design and test autonomous, multi-step AI agents directly in the browser. Powered by the “Antigravity” harness, these agents run in secure, ephemeral Linux sandboxes. Developers can toggle built-in tools such as Google Search, Python code execution, and filesystem access with a single click, and configure agent behavior using markdown files. This release significantly lowers the barrier to prototyping complex agentic workflows, positioning Google AI Studio as a leading developer platform in the agentic AI ecosystem.

What happened?

Google has added a dedicated “Agents” interface to AI Studio, accessible via a toggle in the Playground section. Instead of traditional reactive chat prompts, developers can now build “Managed Agents.” Key technical features include:

  • Runtime Sandbox: Agents execute within a transient Linux environment, allowing them to run Bash commands, execute Python scripts, manipulate files, and fetch external web content.
  • Configuration Files: Agent behavior and personas are defined using standardized markdown documents like AGENTS.md (behavioral rules) and SKILL.md (capability instructions).
  • Integrated Tooling: Built-in tools such as Google Search, URL context fetching, and code execution can be enabled directly within the Playground UI.
  • Developer Templates: Pre-built open-source templates (e.g., the “AI Radio” example) built on the Antigravity agent framework are provided as starting points.

Why it matters

For developers, AI architects, and enterprises, this release marks a shift from static LLM prompting to autonomous execution. The managed sandbox eliminates the need to host and secure code execution environments for testing. The combination of Gemini 3.5 Flash and the Antigravity harness is co-optimized for low latency and high-order reasoning in multi-step loops. The compatibility with standard configurations and the Model Context Protocol (MCP) simplifies the path from local development to cloud deployment.

Evidence

  • Playground Integration: The Agent mode toggle is active and functional in the live Google AI Studio Playground UI.
  • Technical Documentation: Official Google developer guides outline agent configuration using AGENTS.md and the lifecycle of the ephemeral Linux sandboxes.
  • Antigravity Framework: The underlying harness was showcased in Google I/O presentations as the primary execution engine for agentic workflows.
  • Developer Tooling: The availability of Google’s ADK 2.0 (Agent Development Kit) and the Agents CLI supports local testing and deployment.

Analysis

Google’s approach bridges the gap between simple visual builders (like Microsoft Copilot Studio) and heavy, self-hosted developer frameworks (like OpenClaw). By integrating agents directly into the AI Studio Playground, Google combines low-code ease of use with the flexibility of custom code execution. The Antigravity harness leverages the large context window and fast processing of Gemini 3.5 Flash. Running agents inside transient sandboxes addresses a major security concern, isolating potential risks associated with autonomous code execution while allowing developers to prototype freely.

Practical Takeaways

  • Quick Start: Experiment with the pre-built templates in the Playground to see how the Antigravity agent interacts with files and Google Search.
  • Structured Prompts: Write clear guidelines in your AGENTS.md and keep tasks modular using separate SKILL.md files to maintain agent stability.
  • Implement MCP: Connect your agent to external tools and internal APIs by building Model Context Protocol servers.
  • Local Workflow: Use the Agents CLI and ADK 2.0 to export playground configurations into your local Git repositories for further development.

Open Questions

  • Pricing Model: How will the compute overhead of running ephemeral Linux sandboxes be billed in the long run?
  • Sandbox Customization: Will developers be able to install custom system packages or specific Python libraries in the ephemeral sandbox?
  • State Management: How will persistent state be maintained across separate sandbox sessions?

Sources

  1. Google AI Studio Playground (Google Developer Docs)
  2. Building Managed Agents with Gemini (Google AI Blog)
  3. Antigravity Agent Framework and ADK (Google Developer Portal)