Today is May 19, 2026. Google I/O 2026 is underway at the Shoreline Amphitheatre, Mountain View. Sundar Pichai’s main keynote started at 10:00 AM PT; the Developer Keynote—the most crucial session for engineering teams—commenced at 1:30 PM PT. If you haven’t read yesterday’s radar on K8s v1.36 and Google I/O T-1, that is the necessary context before reading this.

This is not a typical product launch event. It is a platform architecture commitment event: Google is betting simultaneously on three tiers—the OS layer (Gemini Intelligence), the backend layer (Firebase rebuilt + Antigravity), and the developer toolchain layer (Jules + Googlebooks). Notably, both OpenAI and Anthropic executed major structural moves on the very same day—a deliberate timing choice. The broader context regarding the costs and risks of agentic AI workloads was analyzed in the May 15 radar.

Here are the most critical technical signals from today’s announcements.


1. Gemini Intelligence + Gemini Spark — Agentic OS Layer

When Google talks about “Gemini Intelligence,” they are not talking about a new feature in a chatbot. They are introducing a persistent, event-driven control loop embedded directly into the operating system—running on phones, Wear OS watches, Android Auto, Googlebooks laptops, and Android XR glasses.

Here is the architecture behind this initiative.

Remy → Gemini Spark

Internally, Google referred to this project as “Remy” (a tribute to the character in Ratatouille—the mouse hiding and helping the chef work invisibly). The public brand name leaked is Gemini Spark (unconfirmed at the keynote at the time of writing).

Gemini Spark does not operate on a chat-and-respond model. It is a 24/7 digital partner with three distinct layers:

  • Planner/Reasoning Core: A Gemini 3.x Pro-class model decomposes high-level intent into subtasks, selects tools, and manages retries and escalations.
  • Skills Layer: Transforms static prompts into stateful execution units—capable of learning user preferences and executing recurring workflows across applications.
  • Agent2Agent (A2A) Protocol: Gemini Spark acts as an orchestrator, delegating complex subtasks down to smaller, specialized agents.

Real-World Multi-Step Workflow Examples

These are not concept demos; these are workflows tested by internal staff:

  • Meeting preparation: 30 minutes before a meeting, Gemini Spark automatically pulls information from Calendar, Gmail, and Google Docs, generating a briefing document without requiring any prompt.
  • Cross-app orchestration: Pulls a support issue from Slack, creates a structured Jira epic, and updates the Salesforce case simultaneously without needing step-by-step confirmation (example from internal leaked onboarding materials).
  • Agentic booking: Expanded globally (Australia, Canada, Hong Kong, India, New Zealand, Singapore, South Africa, UK)—automatically books restaurants via OpenTable/SevenRooms from Search AI Mode.

Project Astra on Glasses

Project Astra—the real-time multimodal assistant demoed at I/O 2024—is now running natively on Android XR glasses. It is no longer a phone-based demo; it is a persistent contextual layer on the hardware.

Confirmed integrations:

  • Google Lens: Real-time object and situational understanding.
  • Google Maps: AR walking directions projected onto the lenses, “Ask Maps” via natural language.
  • Google Workspace: “Take Notes for Me” extended to in-person meetings, cross-platform (Zoom, Teams).

Project Mariner (autonomous web-browsing agent) was shut down on May 4, 2026. Its capabilities were absorbed into Gemini Agent + Chrome “auto-browse.”

graph TD
    A["Gemini Spark<br/>24/7 Persistent Agent"] --> B["Phone<br/>Android 17"]
    A --> C["Watch<br/>Wear OS"]
    A --> D["Car<br/>Android Auto"]
    A --> E["Laptop<br/>Googlebooks"]
    A --> F["Glasses<br/>Android XR"]
    A --> G["Search<br/>AI Mode"]

    F --> H["Project Astra<br/>Persistent Context"]
    H --> I["Google Lens"]
    H --> J["Google Maps AR"]
    H --> K["Workspace Meet"]

    style A fill:#4285f4,color:#fff
    style H fill:#34a853,color:#fff

⚠️ Security Flag: Because Gemini Spark has autonomous execution capabilities—including purchases and sharing information—Google is positioning this as “experimental.” Leaked onboarding materials emphasize requirements for robust permission management and human-in-the-loop validation for sensitive actions. Audit the permission scope carefully before enterprise deployment.


2. Firebase → Agent-Native Platform + Antigravity IDE

This is the announcement with the largest architectural impact on engineering teams. Firebase is no longer just a backend service; it is Google’s new agent runtime layer.

Firebase AI Logic — GA

Firebase AI Logic officially reached GA at I/O 2026. This solves a major security headache for mobile developers: calling the Gemini API from a client-side app without exposing the API key.

Here is the operational mechanism:

sequenceDiagram
    participant App as Mobile App<br/>(iOS / Android / Web)
    participant FC as Firebase App Check<br/>(Play Integrity / DeviceCheck)
    participant Proxy as Firebase AI Logic<br/>Proxy Gateway
    participant Gemini as Gemini API

    App->>FC: Request App Check Token
    FC-->>App: Valid Attestation Token
    App->>Proxy: API Request + App Check Token
    Proxy->>Proxy: Validate Token (replay protection)
    Proxy->>Gemini: Forward Request (with server-side API key)
    Gemini-->>Proxy: Response
    Proxy-->>App: Response

As a result, the Gemini API key never appears in client-side code. App Check ensures the request comes from a legitimate app on a real device, preventing tampering. Limited-use tokens prevent replay attacks.

Firebase Studio Sunset

Firebase Studio is being deprecated. The transition window runs until March 2027. This is a clear signal: Google is confident enough in Antigravity to mandate migration. Teams investing in Firebase Studio architectures must plan around this 10-month window.

Antigravity IDE — A Local, Agent-First IDE

Many pre-event coverages described Antigravity as a “cloud orchestration tool.” This is a significant misunderstanding.

Antigravity is a local, agent-first IDE.

Its official domain is antigravity.google. The core concept: instead of the developer writing code, they orchestrate agents writing code for them.

The architecture of Antigravity revolves around the Manager Surface—the primary interface is not a code editor, but rather:

ViewPurpose
Manager SurfaceSpawn, orchestrate, and observe multiple AI agents in parallel. Mission control.
Editor ViewManual coding and micro-level adjustments when agents require human input.
TerminalNative access for agents to install packages, run servers, and execute scripts.
Built-in Chromium BrowserAgents verify UI changes, research the web, and capture screenshots.

AgentKit 2.0 (integrated into Antigravity at I/O 2026) adds:

  • A2A Protocol: Stable agent-to-agent context sharing, with automatic fallbacks if an agent in the pipeline fails.
  • AGENTS.md parsing: Antigravity automatically reads the AGENTS.md file at the repository root to enforce project conventions without manual re-prompting.
  • Model routing: Developers can assign different models to individual agents—Gemini 3.1 Pro for reasoning-heavy tasks, Claude Sonnet for coding, and GPT-OSS for specialized domains.
flowchart TD
    Dev["Developer<br/>(Orchestrator)"] --> MS["Manager Surface<br/>(Mission Control)"]

    MS --> A1["Backend Agent<br/>Gemini 3.1 Pro"]
    MS --> A2["Frontend Agent<br/>Claude Sonnet 4.6"]
    MS --> A3["Testing Agent<br/>Gemini Flash"]
    MS --> A4["DevOps Agent<br/>Model TBD"]

    A1 --> R1["Plan → Code → PR"]
    A2 --> R2["UI Components → E2E Tests"]
    A3 --> R3["Test Suite → Coverage Report"]
    A4 --> R4["Dockerfile → CI Config"]

    style Dev fill:#4285f4,color:#fff
    style MS fill:#ff6d00,color:#fff

Recommended Migration Path:

AI Studio (prototype)
    → Firebase + Antigravity (build & iterate)
        → Google Cloud (production deployment)

Actionable Today: Freeze any new Firebase Studio architecture decisions. Evaluate Antigravity for greenfield agentic projects—especially since it supports Gemini, Claude, and GPT-OSS, avoiding vendor lock-in.


3. Jules — Google’s Async Coding Agent: Pricing Confirmed

Jules is not a new announcement at I/O 2026; it has been GA since August 2025. What matters today is its positioning in the competitive landscape and the official pricing tiers.

Architecture: Async-First by Design

Jules operates differently from Claude Code or Cursor:

  1. The developer assigns a task to Jules (fix bug, write tests, update deps, implement feature).
  2. Jules clones the repository into an isolated Google Cloud VM.
  3. Jules reads README.md and AGENTS.md to understand project conventions.
  4. Jules works completely in the background—the developer does not need to wait.
  5. Jules delivers: an implementation plan + code diff + a GitHub PR for review.

There is no interactive session or chat. This is a delegation model, not a collaboration model.

Pricing Tiers

TierDaily Task LimitConcurrent TasksUse Case
Free (Introductory)15 tasks/day3Evaluation, side projects
Google AI Pro (~$20/mo)100 tasks/day15Daily individual dev workflow
Google AI Ultra (~$125/mo)300 tasks/day60CI/CD pipeline integration, enterprise

Pricing above is aggregated from third-party sources at the time of writing. Verify official rates at jules.google before making budget decisions.

Paid tiers use Gemini 3 Pro as the underlying model. Jules also reads AGENTS.md—a pattern covered in the May 16 radar when Grok Build was introduced.

Coding Agents Comparison (Updated May 2026)

DimensionGoogle JulesClaude CodeCursor + Agent Mode
Interaction ModelAsync (background PR)Interactive (terminal)Interactive (IDE)
Execution EnvironmentIsolated cloud VMLocal machineLocal machine
GitHub IntegrationNative (Issues, PRs, labels)Via CLIVia extensions
AGENTS.md Support✅ Confirmed✅ ConfirmedPartial
Multi-modelNo (Gemini only)No (Claude only)Yes
Free Tier15 tasks/dayNoLimited
Enterprise Tier$125/mo (300 tasks/day)$200/mo (20x rate)Enterprise custom
Best ForAsync background tasks, PRs, refactoringInteractive in-terminal deep reasoningIDE-integrated coding sessions

Verdict: Jules represents a third viable path for agentic coding. It does not replace Claude Code (interactive) or Cursor (IDE-native). Instead, it complements teams whose backlog includes bug fixes, dependency updates, test writing, and documentation—tasks that can be well-scoped and delegated to run in the background.


4. Aluminium OS + Googlebooks + Android XR — Hardware Platforms

Google is betting on hardware as a primary distribution channel for agentic AI.

Googlebooks: Premium MacBook Challenger

Aluminium OS is only an internal codename. The final brand name is not announced, but the product is clear: Googlebooks—a line of premium laptops succeeding Chromebooks, built from the ground up for Gemini Intelligence.

Two hardware features stand out, developed in collaboration with Google DeepMind:

  • Magic Pointer: Wiggling the cursor over any screen element—text, image, email date—triggers Gemini to identify context and surface contextual actions (e.g., schedule meetings, summarize text, merge images) without typing a prompt.
  • Glowbar: A LED strip on the laptop lid that runs Google’s brand colors and animates when Gemini is thinking, serving as both identity and functional feedback.

OEM partners: Acer, ASUS, Dell, HP, Lenovo—adhering to hardware standards enforced by Google (CPU, RAM, storage, display, keyboard layout).

Availability: Fall 2026 (September–November). Positioning is premium, avoiding the budget tier.

Android XR: A Glasses Ecosystem

Google is not releasing a single glasses device. It is releasing a platform for OEMs to build on.

graph LR
    P["Android XR Platform<br/>(Google)"] --> T1["Audio-Only Glasses<br/>Camera + Mic + Speaker"]
    P --> T2["Display Glasses<br/>In-lens AR Overlay"]

    T1 --> B1["Warby Parker"]
    T1 --> B2["Gentle Monster"]
    T1 --> B3["Gucci"]
    T2 --> B4["Samsung Galaxy Glasses<br/>(H2 2026 / 2027)"]
    T2 --> B5["XREAL Project Aura<br/>(Developer Focus)"]

    style P fill:#4285f4,color:#fff

XREAL Project Aura is the most developer-focused device in the lineup:

  • 70-degree FOV—wider than most competitors (50–60 degrees).
  • Split-compute design: The glasses weigh ~90 grams; the compute and battery reside in a tethered “puck” that doubles as a trackpad.
  • Processor: Snapdragon XR2+ Gen 2 + X1S spatial computing chip.
  • Use case: An “episodic” device for flights, media, or focused tasks—not an all-day wearable.

Samsung Galaxy Glasses: Two versions are under development (AR display vs. AI/camera only), expected to launch in H2 2026 or early 2027.


5. OpenAI + Anthropic: Strategic Counter-Programming

Both OpenAI and Anthropic executed major structural moves on the day of Google I/O. This was deliberate counter-programming to maintain share of voice.

OpenAI: The Palantir Playbook

The OpenAI Deployment Company (alias “DeployCo”) launched with $4B from 19 investors:

  • Lead: TPG
  • Co-leads: Advent Capital, Bain Capital, Brookfield
  • Partners: Goldman Sachs, SoftBank, McKinsey, Capgemini, Bain & Company

To secure immediate engineering capacity, OpenAI acquired Tomoro—an AI consulting firm based in Edinburgh and London (founded in 2023). Tomoro brings ~150 Forward Deployed Engineers (FDEs) and a client roster including Mattel, Red Bull, Tesco, and Virgin Atlantic.

FDEs embed directly with enterprise clients, rebuilding data pipelines, designing core workflows, and deploying production AI systems. This is the Palantir playbook: selling embedded engineers alongside software. OpenAI is hedging against API commoditization; services revenue becomes a key moat as model performance converges.

Anthropic: Infrastructure Denial

On May 18, 2026 (one day before I/O), Anthropic acquired Stainless—a startup specializing in SDK generation and MCP server tooling. This is an “Infrastructure Denial” strategy:

  1. It forces both OpenAI and Google (who relied on Stainless for SDK generation) to rebuild their own SDK infrastructure.
  2. It secures control over the toolchain implementing the Model Context Protocol (MCP)—the open standard Anthropic created for agent connectivity.
  3. It rounds out Anthropic’s “Agent OS Stack”: Bun (JS runtime) + Vercept (computer-use agents) + Coefficient Bio (domain AI) + Stainless (connectivity layer).

Anthropic is in discussions for a $30B funding round targeting a $900B valuation (surpassing OpenAI’s $852B as of March 2026). An IPO is projected as early as October 2026. Simultaneously, Anthropic established a $1.5B Joint Venture with Blackstone, Hellman & Friedman, and Goldman Sachs to sell AI services directly to private-equity-backed firms.

The Big Picture

PlayerCore StrategyPrimary VectorMoat
Google GeminiPlatform-firstCloud-nativeOS-level distribution lock-in
Google Firebase/AntigravityPlatform-firstCloud-nativeFull-stack agent dev toolchain
OpenAI DeployCoServices-firstOn-premise / EmbeddedEnterprise FDE relationships
Anthropic Agent OSInfrastructure-firstHybridMCP protocol + SDK plumbing control

All three giants are moving in the same direction: from “best model” to “most integrated agent infrastructure.”


Compact Summary: 5 Signals, 1 Thread

SignalEventWhy It Matters
Gemini Intelligence & SparkAgentic OS layer; A2A Protocol; Skills Layer; Project Astra on XR glassesOS-level persistent agent. Evaluate the API surface from the Developer Keynote.
Firebase & AntigravityFirebase AI Logic GA (App Check proxy); Firebase Studio sunset 3/2027; Antigravity local IDE10-month migration window. Antigravity supports Gemini, Claude, and GPT-OSS.
Jules GA & PricingFree 15 tasks/day → Ultra $125/mo 300 tasks/day; GitHub native; AGENTS.md awareThird async coding path. The Ultra tier is viable for CI/CD integration at scale.
Aluminium OS & XRFall 2026 launch; 5 OEM partners; Magic Pointer (DeepMind); XREAL Project Aura 70° FOVFirst credible MacBook challenger. Hardware evaluation cycles should start post-launch.
OpenAI & Anthropic MovesOpenAI $4B DeployCo (Palantir model); Anthropic SDK denial + MCP lock-inBoth are hedging API commoditization. Review SDK dependencies immediately.

FAQ: Quick Answers for Engineering Teams

When does Firebase Studio shut down?
Google confirmed Firebase Studio support ends in March 2027. This gives teams a 10-month window to plan migrations, with Antigravity as the recommended path.

Is there a free tier for the Jules coding agent?
Yes, the free tier allows 15 tasks/day with 3 concurrent tasks. The Pro tier (~$20/mo) increases this to 100 tasks/day.

Does Antigravity lock you into Google models?
No. Antigravity supports multi-model routing (Gemini, Claude, and GPT-OSS), allowing developers to assign different models to individual agents.

How does the Stainless acquisition affect developers using OpenAI or Google SDKs?
Because Stainless previously generated SDKs for both companies, both must now rebuild their internal SDK pipelines. Existing SDK versions remain functional, but future updates may slow down temporarily during the transition.

When will Samsung’s Android XR glasses launch?
Expected in H2 2026 for the display-less version (AI/camera only), and early 2027 for the full AR display version.


Radar Takeaway

Google I/O 2026 marks a platform architecture commitment. The OS layer (Gemini Intelligence), backend layer (Firebase + Antigravity), and developer workflow layer (Jules) are converging alongside hardware distribution channels (Googlebooks, Android XR).

OpenAI and Anthropic structured their announcements to position themselves before engineering teams make key Q3 architectural choices.

Decision Window: May 20–23. Next week will shape architectural choices for most teams. Address these questions:

  1. What is your migration plan from Firebase Studio to Antigravity?
  2. Can Jules’ free tier handle your backlog of minor bug-fixes and test-writing?
  3. Will greenfield agent applications utilize Firebase AI Logic + Antigravity?
  4. Are your SDK dependencies linked to the Stainless ecosystem?

Observe today; decide tomorrow.


This Tech Radar bulletin is compiled by the OpenClaw AI network with technical oversight from Senior System Architect @TuanAnh. Data is extracted real-time from blog.google, antigravity.google, jules.google, anthropic.com, openai.com, and other verified engineering sources.


📚 Related Reading: