Multi-Agent Collaboration
The group chat just became AI's most dangerous proving ground
Alibaba Cloud's AgentTeams and Anthropic's Claude Tag are turning group chats into the proving ground for multi-agent collaboration. The shift from one-on-one to many-to-many conversations introduces complex challenges in context management, permission governance, and memory, and a new paradigm for how AI works inside organizations.
Emmanuel Fabrice Omgbwa Yasse AI-assisted
2026-07-16 · 5 min read

For the past two years, talking to an AI has been a private affair: you type, it answers, the conversation dies when you close the window. That's shifting. A new generation of products embeds agents directly into group chats, the messy, high-traffic channels where real work happens inside companies.
Alibaba Cloud's AgentTeams, unveiled at the 520 Alibaba Cloud Summit, and Anthropic's Claude Tag, released for Slack, both let multiple humans and multiple agents coexist in the same chat room. The surface similarity, agents in a group, masks a deep philosophical divide about how such systems should be governed. Alibaba treats the chat as a miniature organization with identity layers; Anthropic keeps one powerful model that listens and replies when called. Both approaches are already running inside companies, and both reveal how fragile current AI governance models are when you scale beyond a single conversation, as the infrastructure behind AI agents is only beginning to address.
Two philosophies for the same room
Claude Tag takes the straightforward path: one powerful model sits in a Slack channel, listens to the conversation, and answers when @mentioned. Anthropic's blog defines four characteristics of agent group chats, persistence, shared context, asynchronous tasks, and flat topology, but keeps the model overhead low. The agent does the thinking; Slack provides the topology.
AgentTeams treats every chat as a miniature organization. Each agent and each human carries a declarative identity:
- Manager, human, platform-level administrator
- Team Leader, agent, orchestrates Workers
- Worker, agent, smallest execution unit
- Human, with three permission tiers: L1 Admin, L2 Team Leader, L3 Worker
Every Worker holds files like SOUL.md, AGENT.md, and MEMORY.md, a Kubernetes-for-agents approach where everything is declared, scheduled, audited, and revocable. This mirrors the process-level grading that SkillCoach advocates for evaluating agent behavior.
When one agent is not enough
The fundamental driver for group chat agents is the same reason humans form teams: limited attention. A single agent's context window cannot hold a week-long software development pipeline spanning requirement analysis, coding, testing, and review without degrading its reasoning quality.
Alibaba Cloud's AgentLoop pipeline, built on AgentTeams, decomposes end-to-end coding into five Workers handling Requirement Classification, Coding, Test, Review, and Verify. Each Worker maintains its own clean context; a Team Leader orchestrates handoffs and resumes from checkpoints on failure. The result is a system that mirrors how a human dev team works, and one that can run across hours or days without collapsing. Anthropic reports that 65% of its own product team's pull requests now go through Claude Tag. In both cases, the marginal benefit of shared context and asynchronous tasking has outweighed the added complexity.
The governance gap
Single-chat agents borrow the user's credentials for every call. In a group chat, that model breaks: when ten people @mention the same agent simultaneously, whose token is used? And when a task spans hours and the original requester's session expires, who picks it up?
AgentTeams solves this at the infrastructure layer through the Higress AI Gateway. Workers never touch real credentials, they hold revocable Consumer Tokens, and the gateway swaps in the real API keys, GitHub PATs, and MCP credentials for each outbound call. A compromised Worker yields nothing more than a one-time token. Claude Tag uses a channel-level permission model: the channel's rules define what the agent can access, irrespective of who @mentioned it. An HR channel agent cannot read engineering data, even if an engineer @mentions it from the HR channel. Both approaches recognize that group chat escalates the problem from scheduling to governance. The difference is that AgentTeams treats it as a control-plane problem drawn from Kubernetes, while Anthropic treats it as a UI extension of Slack's existing thread model. This tension between infrastructure-first and interface-first thinking echoes the lessons from DSpark's systems-level approach to AI inference.
Memory as an organizational asset
Single-chat memory is disposable: close the window, lose the context. Group chat memory is an organizational asset, new hires join the channel and can ask the agent about past decisions, technical choices, or onboarding steps. AgentTeams' ReMe memory framework structures this in three layers:
- Short-term, conversational streams, written to session files, not directly used in online recall.
- Long-term, structured digests of personal facts, procedures, and knowledge nodes, indexed via BM25 or embedding for enterprise production.
- Dream, a nightly cron job that distills, corrects, deduplicates, and merges the day's short-term facts into long-term storage, then generates a 'waking report' for Team Admin review.
This mirrors how organizations actually learn: through iterative distillation of conversations into durable knowledge, not by dumping raw chat logs into a vector database. It also points to a deeper truth: memory in these systems is not just a retrieval problem, it is a governance and trust problem. As Nvidia's work on synthetic data shows, the quality of what an agent remembers often matters more than the raw volume of data.
Three scenarios where group chat beats single chat
Alibaba Cloud's analysis identifies three conditions under which group chat becomes the superior mode:
- Cross-domain collaboration, when a task spans requirement analysis, coding, and testing, splitting it across specialized agents keeps each context clean.
- Long-running workflows, a release pipeline that runs for hours or days dilutes a single agent's attention; multiple agents preserve intermediate states and resume from checkpoints.
- Multiple trust boundaries, when different teams need different levels of access to data, tools, and costs, a single agent cannot act on behalf of multiple organizational identities.
None of these can be effectively handled by a one-on-one chat session. The challenge of estimating the real human-hours saved by such agents is something Cognition Labs is working to solve.
Not a replacement, but an extension
Group chat agents will not replace single-chat interactions, the teams behind both systems acknowledge this. For quick code generation, document retrieval, or image creation, a single chat remains cheaper and faster. But for the 70% of enterprise collaboration that already happens in IM group chats, the paradigm shift is real.
The two approaches, Anthropic's single-powerful-model and Alibaba's K8s-style multi-agent control plane, are not mutually exclusive. They may converge as the industry learns which problems each solves best. What matters is that the group chat has become more than a feature: it is now a testbed for how AI will be governed inside organizations. The outcome of that test could define the next phase of enterprise AI adoption.
Get the tech essentials in 3 minutes every morning
One email, every weekday, with what actually matters in AI and tech.