惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
U
Unit 42
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
I
InfoQ
WordPress大学
WordPress大学
H
Help Net Security
D
Docker
B
Blog
腾讯CDC
A
About on SuperTechFans
Recent Announcements
Recent Announcements
雷峰网
雷峰网
有赞技术团队
有赞技术团队
C
Check Point Blog
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
From Chatbots to Coworkers: How Google Cloud NEXT ’26 Red...
Dickson Kany · 2026-04-24 · via DEV Community

This is a submission for the Google Cloud NEXT Writing Challenge

I expected Google Cloud NEXT '26 to be about better AI models and more powerful APIs. Instead, it quietly introduced something bigger: software that no longer waits to be used—it acts on its own. I didn’t expect a complete rewrite of how we build software. And once you see it through an agent system, you can’t unsee what software is becoming next.

For this challenge, I focused on the Developer Keynote—specifically the shift toward the Agentic Enterprise and systems designed to coordinate thousands of AI agents.

Instead of just analyzing it, I tried to answer a more practical question:

What happens if you actually build something using this mindset today?

This triggered me into building an agent system that coordinates multiple AI agents to handle complex tasks. The result was a system that not only processes requests but also learns from them, adapts its behavior, and operates with a level of autonomy that feels almost like having a team of coworkers as we will see in the following sections.


🧠 The Shift: From Features → Systems That Act

The biggest idea wasn’t a tool. It was a mental model shift.

We’re moving from:

  • Request → Response (user asks, system replies) to:
  • Goal → Execution (user defines outcome, system figures out how)

This sounds subtle—but it changes everything.

Software is no longer just something you use. It’s something that acts on your behalf.

Key Shift: We’re moving from stateless requests to systems that persist, plan, and execute.


⚠️ The Real Problem: The “Integration Tax”

Before this keynote, AI already felt powerful—but fragmented. If you wanted to automate something like invoice processing, you still had to:

  • parse emails
  • connect to your ERP
  • trigger workflows
  • handle approvals

Every step required glue code.
What Google is really solving: Orchestration at scale. Not smarter chatbots—but systems that:

  • maintain context
  • coordinate actions
  • operate across tools

🧩 Why “Many Agents” Changes the Game

One large AI system sounds powerful—but it’s fragile.

Problems:

  • hard to debug
  • hard to trust
  • fails all at once

The alternative introduced at NEXT: Modular intelligence (multi-agent systems)

Instead of one brain, you build a team:

  • Finance Agent
  • Ops Agent
  • Communication Agent

Each:

  • has a clear role
  • can be tested independently
  • can fail safely

This is essentially: Microservices… but for reasoning


🛠️ I Tried It: Building My First Multi-Agent System After Google Cloud NEXT '26

A Practical Implementation of a Simple Multi-Agent Workflow.

To ground this idea, I designed a small but realistic system:

“Meeting → Action” Pipeline

Goal: Turn a meeting into structured execution automatically.

Architecture

[Google Meet Transcript]
        ↓
[Scribe Agent]
  - Summarizes discussion
  - Extracts key decisions
        ↓
[Task Agent]
  - Converts decisions → tasks
  - Assigns owners + deadlines
        ↓
[Manager Agent]
  - Reviews tasks
  - Requests human approval
        ↓
[Execution Layer]
  - Creates Jira tickets
  - Sends emails
  - Updates calendar

Enter fullscreen mode Exit fullscreen mode

While this is a conceptual build, mapping it out exposed something quickly:

Coordination—not intelligence—becomes the bottleneck.


How This Maps to NEXT ’26 Concepts

1. Persistent Context (Memory Bank)

Each agent retains:

  • meeting history
  • past decisions
  • previous tasks

👉 No need to resend context every time.

2. Agent Identity

Each agent has:

  • a unique identity
  • defined permissions

Example:

  • Task Agent → can suggest tasks
  • Manager Agent → can approve execution

This is critical. Without identity, automation becomes unsafe.

3. Agent-to-Agent Communication

Instead of APIs like:

POST /create-task

Enter fullscreen mode Exit fullscreen mode

We move toward:

TaskAgent.handle("Generate tasks from this summary")

Enter fullscreen mode Exit fullscreen mode

👉 Communication is based on intent, not just data.

More importantly, this is where emerging standards like Model Context Protocol (MCP) come in—allowing agents to consistently access tools, data, and context across systems.

If MCP (or something like it) wins, it could become the foundation for cross-platform agent interoperability.


What Changed for Me as a Developer

This experiment exposed something important:

I wasn’t writing logic anymore.
I was designing behavior.

Instead of:

  • functions
  • endpoints
  • workflows

I was defining:

  • roles
  • goals
  • constraints

⚡ Infrastructure Insight: Always-On Systems

One of the most overlooked announcements was the split between training and inference infrastructure.

  • Training systems → build intelligence
  • Inference systems → run it continuously

The real shift:

Compute is becoming continuous, not event-driven.

This shift is reinforced by hardware like TPU 8i, which is optimized for low-latency reasoning loops—making always-on agents economically viable.

In my system:

  • agents don’t wait for input
  • they monitor for triggers
  • they act proactively

The Hidden Power Move: Workspace as a Knowledge Layer

Another subtle—but huge—idea:

Your productivity tools are becoming structured memory for agents.

Think about it:

  • Docs → decisions
  • Gmail → intent
  • Calendar → commitments

When connected, this becomes: a living graph of organizational knowledge

In my pipeline:

  • the Scribe Agent isn’t just summarizing
  • it’s linking context across tools

🔐 Reality Check: What Breaks First

Let’s be honest—this model isn’t production-ready at scale yet.

1. Orchestration Debt

With many agents:

  • responsibilities overlap
  • actions conflict
  • systems become unpredictable

Example:

  • one agent schedules a task
  • another cancels it due to “priority changes”

Key Risk: Scaling agents without structure creates orchestration debt faster than teams can manage it.

2. Debugging Complexity

When something fails:

  • there’s no clear stack trace
  • decisions are distributed

You’re debugging:

interactions, not code

3. Security Risks

New attack surface:

  • malicious inputs
  • indirect prompt injection
  • unintended execution

Example:

An agent reads a message that contains hidden instructions and executes them.


⚠️ The Missing Piece: Interoperability

One thing the keynote didn’t fully address:

What happens when agents from different ecosystems need to collaborate?

Right now:

  • systems are platform-specific
  • protocols are not standardized

This suggests something inevitable: A future Agent Protocol War


🧨 The Big Realization

After building even a small system, one thing became clear:

We’re not scaling AI anymore.
We’re scaling behavior.

And behavior is much harder to control.

Most teams adopting agents today will fail—not because of AI limitations, but because they underestimate orchestration complexity.


Final Take: The Trust Model Must Change

Would I trust a single autonomous agent with critical decisions? No.

Would I trust a system of agents? Yes—with structure.

Example:

  • Agent A proposes
  • Agent B validates
  • Human approves

Trust emerges from coordination, not intelligence.


🏁 Conclusion: A New Role for Developers

This is the real takeaway from Google Cloud NEXT '26:

We are no longer just building applications.

We are designing systems that act, collaborate, and decide.

The developer’s job is shifting from writing instructions, to:

  • defining intent
  • setting boundaries
  • orchestrating behavior

If this direction holds, debugging production systems may look less like reading logs—and more like auditing decisions made by autonomous actors.

We’re not just writing software anymore.
We’re programming organizations.


#googlecloud #ai #machinelearning #cloudcomputing #softwarearchitecture #systemdesign #devops #futureofwork #artificialintelligence