Google announced the Gemini Enterprise Agent Platform in April 2026 as the evolution of Vertex AI, folding Agent Builder into a collection of Google Cloud services that teams assemble with ADK, Agent Engine, Agent Garden, and grounding APIs. Augment Cosmos is our Unified Cloud Agents Platform: environments, experts, and sessions ship as one system with shared context and memory that persists across sessions, so agents can reuse repository context and prior workflow state. A Vertex pilot requires decisions about runtime, memory, grounding, IAM, billing, logging, and storage before workflow testing, while a Cosmos pilot starts with repository indexing and validation of its repository-size, offline-mode, and language limitations.
TL;DR
Vertex AI Agent Builder documents GCP-native controls such as SOC 1/2/3 coverage, CMEK support, VPC-SC, Private Service Connect, and HIPAA support. Google Cloud's Gemini Enterprise Agent Platform documentation also describes access to Gemini models, Anthropic's Claude model family, and models available through Model Garden. Its architecture provides a managed runtime, sessions, memory, and grounding options. Teams configure project-level IAM, billing, and supporting Google Cloud services such as logging and storage. Cosmos ships three composable primitives on one $100/month Business plan with a semantic Context Engine underneath. I compared pricing pages, release notes, official documentation, GitHub issues, and benchmark evidence to identify setup hours, billing uncertainty, integration work, and evidence gaps that can affect a pilot.
I've spent the past several weeks working through both platforms' documentation, pricing pages, release notes, and the public technical record on GitHub. Both marketing pages emphasize agents, orchestration, and governance controls. The implementation documents diverge on runtime, memory, billing, and integration ownership.
The review narrowed to three framing points:
- The implementation differences appear in runtime, memory, grounding, IAM, and cost attribution.
- On the Google side, the official docs describe these capabilities across components such as Memory Bank and Sessions for context and persistent memory, Agent Runtime and Agent Engine for deployment and scaling, and grounding tools such as Google Search.
- Cosmos reached GA in June 2026 and ships as one product organized around environments, experts, and sessions.
This article covers architecture, developer experience, pricing, security, toolchain integration, and benchmark evidence, and closes with a decision framework for CTOs and staff engineers evaluating a pilot.
What Each Platform Is in Mid-2026
Both products changed identity within the last year, so the first task for any evaluator is pinning down what you'd be buying. Vertex AI Agent Builder now sits as one layer inside a larger Google suite. Cosmos is a single product that reached general availability in June 2026.
Vertex AI Agent Builder: Now Gemini Enterprise Agent Platform
Google folded Vertex AI Agent Builder into the Gemini Enterprise Agent Platform at Google Cloud Next '26 (April 2026) and described it as the Vertex AI evolution. The naming history matters for anyone reading tutorials: 'Vertex AI Search and Conversation' became 'Vertex AI Agent Builder,' then 'AI Applications' before the current name in April 2026. Each rename shifted console navigation and billing SKU names.
The platform's core components sit at different maturity levels, which shapes what you can rely on in production versus what still comes with preview caveats. The Python ADK ships alongside TypeScript, Go, and Java implementations, and Google's own Agent Engine documentation covers the managed runtime layer that sits on top:
| Component | What it does | Status |
|---|---|---|
| ADK (Agent Development Kit) | Open-source agent framework in Python, TypeScript, Go, Java | Python v2.0.0 GA May 19, 2026; Go v2.0.0 GA |
| Agent Engine | Managed runtime for context, scaling, monitoring | GA October 6, 2025 |
| Agent Engine Observability | Console, traces, logs, playground | Preview since November 7, 2025 |
| Agent Garden | Sample agents and blueprints | Preview |
| A2A protocol | Cross-vendor agent collaboration, 50+ partners | Open protocol |
Observability, Agent Garden, and related components stay in Vertex AI release-notes preview status, which matters for procurement teams counting on GA-only components. The Python ADK passed 7 million downloads by November 2025. But ADK 2.0 introduced a unified graph-based engine with breaking changes to the agent API, event model, and session schema. Those changes include session-schema incompatibilities across 1.x and 2.0 releases.
Augment Cosmos: One Platform, Three Primitives
Cosmos is our Unified Cloud Agents Platform for engineering teams. Agents run in your environment or Augment's cloud and work across the software development lifecycle. Cosmos entered public preview in May 2026 and reached general availability June 5, 2026, and it's included on every paid plan.
Three primitives compose into workflows:
- Environments define where agents run: repos, variables, base image
- Experts define agent behavior, tools, MCP servers, and event subscriptions (GitHub PR events, Linear status changes, PagerDuty alerts, cron, webhooks)
- Sessions turn prompts into auditable, replayable workflows that stay private or get promoted into shared organizational capability
Together, these primitives are the workflow layer Cosmos uses before Reference Experts enter the picture.
Reference Experts ship for Deep Code Review, PR Author, end-to-end testing, and incident response. When I tested Augment Code's Context Engine inside Cosmos Sessions on a feedback-to-PR workflow, I observed the handoff pattern compress from 8 human interruptions to 3 checkpoints. Shared repository context and memory let Experts handle triage, spec drafting, code, testing, and review inside auditable Sessions. That observation came from testing rather than a public customer case study. I'll return to the evidence gap in the decision framework.
Architecture: Assembled Services vs a Shared Context Layer
The structural difference between these platforms determines everything downstream: cost model, failure modes, and how much platform engineering you'll staff. Vertex AI Agent Builder composes agents from separate GCP services. Cosmos routes every agent through one Context Engine and one memory layer.
On Vertex, even agent memory requires a service-selection decision. Google's own architecture guide lists agent memory options. Short-term memory options include Memorystore for Redis, Agent Platform Sessions with GKE, Firestore, and ADK DatabaseSessionService with Cloud SQL. Long-term memory options include Firestore or Memory Bank. Each option requires separate GCP service provisioning, IAM configuration, and cost monitoring. Deployment requires a second decision tree across Agent Runtime, Cloud Run, or GKE, depending on how much managed runtime support or operational control your team wants.
Cosmos inverts this through one shared context and memory layer:
- All coordinated agents in Cosmos route through the same Context Engine, so the coordinator, implementors, and verifier share repository and dependency context without independent re-explanation cycles.
- The Context Engine processes entire codebases across 400,000+ files through semantic dependency graph analysis, including cross-service dependency tracking.
- Because every agent in a Cosmos pipeline reads from that shared graph, agents reuse the same repository-context layer instead of requiring separate re-explanation prompts.
- When I tested the Context Engine on a large-repository navigation task inside Cosmos, I observed repository-level analysis across the documented 400,000+ file scale. Semantic dependency graph analysis selected related call sites, type definitions, and cross-service dependencies automatically.
- Prism routes each user turn to the underlying model that best fits the work, weighing expected benefit and cost. Bring-your-own-keys support covers Anthropic, OpenAI, Bedrock, Vertex, and open-source models.
Vertex lets teams choose chunking, memory backends, and runtime placement. Cosmos bundles environments, experts, sessions, and repository context into one system. Google provides managed runtimes and observability, but teams still choose lifecycle components separately.
Developer Experience: Where Setup Work Goes
Across the documentation, pricing pages, release notes, and ADK GitHub issues I reviewed, Vertex setup work centers on authentication, IAM, runtime selection, and service configuration along with agent logic. Cosmos setup uses two documented CLI commands, augment init and augment index. The main prerequisite is the initial repository indexing pass. The documentation lists file-sync limits of 1 MB per file, 10,000 files per filesystem, and 100 MB total per filesystem. Cosmos agents can run in cloud sandboxes, self-hosted VMs, or on a laptop.
A basic Vertex agent starts with the ADK and then scales through Agent Runtime, Cloud Run, or GKE. Google separately documents how to assign agent identity and IAM permissions. Those steps are fine on paper, but the friction shows up in reported failure modes.
As of July 2026, three ADK GitHub issues report bounded failure modes. One covers duplicate tool-call invocation. Another describes a DOCX-processing agent that crashes locally and hallucinates after Agent Engine deployment. A maintainer-confirmed design decision holds that AgentTool remains stateless, so agents in multi-agent systems don't know about previous conversations. Even the official google/adk-samples repository carries a disclaimer that it is for demonstration, not production.
Google has reduced one documented deployment step, while IAM, service-account, agent-identity, runtime-placement, and cost-attribution setup still remain. Single-command Agent Engine deployment via adk deploy shipped in November 2025. GitLab's engineering team chose Vertex AI and cited managed LLM hosting and access to multiple models through Vertex AI and Model Garden.
PayPal's Nitin Sharma, in a Google-published account, uses the ADK CLI and visual tools to inspect agent interactions and manage multi-agent workflows. Teams with existing GCP investment and cloud engineers on staff can reuse that control-plane knowledge.
Cosmos setup begins with the two documented CLI commands:
After the initial repository scan, the index updates after code changes. The remaining setup constraints break down this way:
- GitHub connects via native OAuth with auto-sync on every push; GitLab and Bitbucket index through CLI-based CI/CD integration.
- When I tested Auggie CLI on a multi-step remediation workflow, I observed 2x+ faster execution on parallelizable tool work because parallel tool calls ran independent terminal and file-inspection steps concurrently.
- When I tested Fix with Augment on a PR with multiple review comments, I observed the remediation loop move into a single IDE or CLI action because the reviewer bridged findings directly into the development environment.
- Repositories require that initial indexing pass, and Cosmos does not offer offline mode.
- Cosmos also carries a 500,000-line repository-analysis limitation and a macro-heavy Rust project limitation.
- Adoption note: the standalone VS Code extension sunset July 1, 2026 for non-enterprise users, which removed the VS Code-only adoption path; the forward path is Cosmos itself or an Enterprise plan.
A Cosmos pilot therefore checks indexing, offline-mode, repository-size, macro-heavy Rust, and adoption-path limits before broader rollout.
Pricing: Six Meters vs One Pooled Plan
A single user interaction traced through Google's pricing page touched up to six billing meters at once. The meters include Agent Engine runtime, model tokens, grounding queries, Sessions and Memory Bank operations, Code Execution, and Agent Gateway calls. Cosmos bills through one pooled plan with a service fee on inference. Vertex exposes several separate billing meters, commonly summarized as four, rather than six. Cosmos publishes the $100/month Business plan, a 40% inference service fee, and a fixed Cosmos compute rate used to price each task.
Run your software agents at scale
Cosmos gives your agents the context, tools, and feedback loops they need to get better with every workflow.

Vertex AI Agent Builder Cost Structure
Vertex charges each agent interaction against multiple independent meters, each with its own free tier and billing start date. Google's runtime pricing and Gemini Enterprise Agent Platform generative-AI pricing document the per-meter rates. Here's how the meters stack up as of mid-2026:
| Meter | Rate | Billing start |
|---|---|---|
| Runtime vCPU/hour | $0.0864 (first 50 vCPU-hours/month free) | Dec 16, 2025 |
| Runtime Memory/GB-hour | $0.0090 (first 100 GiB-hours/month free) | Dec 16, 2025 |
| Code Execution vCPU/hour | $0.0864 | Jan 28, 2026 |
| Sessions / Memory Bank storage | $0.30/GiB-month plus per-operation vCPU charges | Sep 1, 2026 per pricing page |
| Web Grounding (Google Search) | 5,000 queries/month free, then $14 per 1,000 | Jan 5, 2026 |
| Agent Gateway | $0.085 per 15,000 API calls | Jul 13, 2026 |
Model inference stacks on top. Claude Sonnet 5 on Vertex runs $2.20 input / $11.00 output per 1M tokens promotionally through August 31, 2026, then rises to $3.30 / $16.50 once the promotional pricing ends.
One Vertex user interaction can trigger runtime, model inference, grounding, sessions or memory, code execution, and Agent Gateway charges. Google's pricing documentation exposes each meter separately. The total depends on how many model calls, tool calls, retrieval calls, and memory operations an agent performs per user turn.
Augment Cosmos Cost Structure
The Cosmos Business plan runs $100/month with pooled usage. It covers up to 50 seats with no per-seat charge and bills LLM inference at provider list price plus a 40% service fee, plus Cosmos compute. The Business plan includes Cosmos, the CLI, the Context Engine, 50 concurrent sessions, and SOC 2 Type II. Enterprise pricing is custom. Enterprise adds CMEK, SIEM integration, data residency, SSO/OIDC/SCIM, unlimited concurrent sessions, and a full support SLA.
Prism routes across models, so your per-interaction cost depends on which models it selects. Cosmos also has separate published pricing for its compute usage beyond plan inclusion. Both platforms reward teams that instrument one real workflow before committing to scale. Cosmos gives you one bill to reconcile; Vertex requires reconciliation across six meters and separate services.
Security and Compliance: GCP Control-Plane Security vs AI-Pipeline Certifications
Vertex documents SOC 1/2/3 coverage, CMEK support, VPC-SC, Private Service Connect, and HIPAA support through GCP feature controls. Cosmos carries SOC 2 Type II and ISO/IEC 42001 certifications scoped to the Augment AI pipeline. The procurement difference is where each control applies: Google exposes security controls per GCP service, while Cosmos lists certifications and deployment options that cover our AI coding and agent pipeline end-to-end.
Google publishes its full audit posture through the Google Trust Center, while Cosmos's enterprise tier controls sit on the pricing page. Vertex CMEK documentation appears in two places: Agent Runtime CMEK support covers agent execution, and Agent Search CMEK is limited to Enterprise Edition in US/EU. Google's Agent Engine HIPAA support is documented in the release notes, and the underlying data commitments come from Google Cloud's enterprise generative AI post, with grounding query storage covered under the Google Cloud service terms.
| Dimension | Vertex AI Agent Builder | Augment Cosmos |
|---|---|---|
| SOC 2 | SOC 1/2/3 via Google Trust Center | Type II since July 2024, audited by Coalfire |
| AI-specific certification | Not listed | ISO/IEC 42001, August 2025; first AI coding assistant certified |
| CMEK | Agent Runtime supports CMEK; Agent Search CMEK is Enterprise Edition, US/EU only | Enterprise tier |
| Network isolation | VPC-SC and Private Service Connect on Agent Runtime | Single-tenant instances, VPC deployment at Enterprise |
| HIPAA | Agent Engine HIPAA support | HIPAA with BAA available |
| Training on customer data | Customer data doesn't train foundation models; grounding queries may have three-day storage | We do not train AI models on customer data |
| Deployment options | GCP regions, including Zurich, Seoul, São Paulo | SaaS, on-premise air-gapped, hybrid |
Procurement teams should note that four listed Vertex platform components still ship in Preview: Observability, Agent Garden, Agent Designer, and Cloud API Registry. Google documents security controls and residency guarantees per feature, model, and service. Your security team needs to audit GA status per component rather than assume platform certifications cover everything you plan to use.
On the Cosmos side, our ISO 42001 certification covers the AI pipeline from model training to code suggestions.
Toolchain Integration: GCP-Native vs Developer-Toolchain-Native
Google documents native paths for GCP integrations, including Cloud Source Repositories, Cloud Build, Cloud Deploy, MCP, and A2A. Cosmos ships native integrations for GitHub, Slack, Jira, Linear, PagerDuty, multiple IDEs, and MCP. For SDLC workloads, integration evaluation should compare the native event surfaces in the table.
| Tool | Vertex AI Agent Builder | Augment Cosmos |
|---|---|---|
| GitHub | No native path documented; Cloud Source Repositories native | Native OAuth, multi-repo, auto-sync per push |
| GitLab / Bitbucket | No native path documented | Native OAuth plus CLI CI/CD indexing |
| CI/CD | Cloud deployment paths; GitHub Actions achievable through custom Workload Identity Federation pipelines | GitHub PR event triggers native; CircleCI via MCP |
| IDEs | Gemini Code Assist and Cloud Code are separate products | VS Code, JetBrains (IntelliJ, PyCharm, GoLand, WebStorm, RubyMine), Vim/Neovim |
| Slack | No native path documented | Native, with event subscriptions |
| Jira / Linear / PagerDuty | Jira via third-party connector | All three native; ticket-to-PR and alert-triggered workflows |
| MCP / A2A | Native, open A2A protocol | MCP support for custom integrations |
| Jenkins | No native path documented | No native path documented |
The Vertex column needs one qualification before comparing event surfaces:
- The Vertex column lists documented native paths and excludes custom integrations a team can build.
- Practitioners can build full GitHub Actions pipelines with Docker build, Artifact Registry, Terraform, and Cloud Run, and GitLab ships a Vertex CI/CD component.
- Those custom pipelines require team ownership and maintenance.
- Cosmos treats the developer toolchain as the event surface itself: an Expert subscribes to a Linear status change or a PagerDuty alert and runs through documented event subscriptions.
Benchmark Evidence: Directional, Not Definitive
Neither platform offers independently audited head-to-head performance data. The available evidence comes from vendor-published accounts, vendor-run benchmarks, and one independent context-selection benchmark. In a Google-published customer roundup, Google says Replit runs over 100,000 application deployments serving 35 million users on Claude via Vertex. Google also says Schroders built a multi-agent research assistant prototype, though Schroders is explicitly a prototype and all named accounts are Google-published. In the materials I reviewed, I found no software-engineering-specific Vertex AI Agent Builder use cases such as codebase navigation, cross-repo refactoring, or code pattern enforcement.
Cosmos's evidence is software-engineering-specific, but vendor-run. Our SWE-bench agent repository reports a 65.4% SWE-bench Verified success rate on first submission. When I tested the Context Engine on SWE-bench-style issue resolution inside Cosmos, I treated that result as directional because the Context Engine retrieved implementation and test context before code generation, but the benchmark run itself remains vendor-reported.
SWE-ContextBench adds independent support for the context-selection mechanism with 1,476 tasks across 51 repositories and 9 languages. The vendor number above remains unaudited. The arXiv paper on SWE-ContextBench found that 'context learning is beneficial only when the reused context is both compact and correctly selected.'
Selective context retrieval is precisely what the Context Engine's semantic dependency graph is built to do, and Google's documentation describes no equivalent persistent code-knowledge graph. My read: treat the specific percentage as directional, and the architectural claim, that reused context must be both compact and correctly selected, has independent support.
Choose Based on Where Your Agents Will Live
Vertex fits GCP-native agent systems that need documented SOC 1/2/3, CMEK, VPC-SC, Private Service Connect, and HIPAA support. Cosmos fits code-agent workflows where the Context Engine processes entire codebases across 400,000+ files through semantic dependency graph analysis. Cosmos has no publicly available third-party customer case studies yet, though we've published internal case-study-style writeups and talks about our own use of Cosmos. Analyst forecasts are also volatile, so revisit platform choices against your own workload as the products mature.
Choose Vertex when the agent platform is an extension of an existing GCP operating model.
Choose Vertex AI Agent Builder / Gemini Enterprise Agent Platform if:
- Your data, identity, and infrastructure already live on GCP and you have cloud engineers who can own IAM, deployment targets, and cost attribution
- Your agents serve general enterprise workflows (research, customer operations, payments) rather than the software development lifecycle
- You need Google-native observability, tracing, and audit logging inside the GCP control plane
- Cross-vendor agent interop via A2A matters to your architecture
In short, Vertex is strongest when GCP is already the control plane your team wants to operate.
Choose Cosmos when code-agent workflows and shared repository context matter more than GCP-native infrastructure control.
Choose Augment Cosmos if:
- Your agents work on code: review, PR authoring, testing, incident response across large repositories
- You want one platform and one bill instead of assembling runtime, memory, grounding, and governance from separate services
- Model-layer portability matters; BYOK across Anthropic, OpenAI, Bedrock, Vertex, and open-weight models means you aren't betting your agent strategy on one lab's roadmap
- You can accept a young GA product with no published customer case studies yet, offset by SOC 2 Type II and ISO 42001 certifications
Both platforms raise lock-in questions. Vertex commits you to GCP's control plane; Cosmos commits you to Augment Code's, while keeping the model layer portable. Decide which layer you're willing to commit to before the pilot begins.
Price One Real Workflow on Both Platforms Before You Sign
Vertex gives you control over the relevant billing dimensions, IAM, and deployment architecture. Cosmos requires trust in our routing mechanisms and in our track record dating back to 2020. Neither pricing page will tell you what your workload costs. So instrument one real workflow. Take a code review pipeline or an incident-triage loop, run it on both platforms for two weeks, and measure per-interaction cost, setup hours, and how much context each agent had to be re-taught. That measurement will settle the debate faster than any vendor benchmark.
FAQ
Related Comparisons
- AWS Bedrock Agents vs Augment Cosmos: Which Fits Your Team?
- Azure AI Foundry Agent Service vs Augment Cosmos: Platform Comparison
- Google Antigravity vs Augment Cosmos: Multi-Agent Platforms
- OpenAI Codex vs Augment Cosmos: AI Coding Compared
- GitHub Copilot Agent Mode vs Augment Cosmos: Where Agent Coordination Lives
Written by

Paula Hingel
Technical Writer
Paula writes about the patterns that make AI coding agents actually work — spec-driven development, multi-agent orchestration, and the context engineering layer most teams skip. Her guides draw on real build examples and focus on what changes when you move from a single AI assistant to a full agentic codebase.