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

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
有赞技术团队
有赞技术团队
美团技术团队
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
I
InfoQ
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog

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
Telegram Just Opened the Door for Agent-to-Agent Communic...
Kavin Kim · 2026-05-20 · via DEV Community

Kavin Kim

On May 7, 2026, Telegram became the first billion-user messaging platform to enable native bot-to-bot communication. One bot can now send a private message directly to another bot by referencing its @username. No intermediary server. No custom routing layer.

For developers building multi-agent systems, this sounds like the answer. It isn't.

What Telegram Actually Shipped

The update is real and significant. Telegram's Bot API now supports direct agent-to-agent messaging with a mutual opt-in requirement. Both bots must explicitly enable the mode before they can exchange messages.

The use cases Telegram outlined are practical: a code-review bot delegating to a specialist bot, enterprise booking agents coordinating sub-tasks, multi-step AI workflows executing end-to-end without human relay.

With over 10 million bots already on the platform, those bots can now form networks. A research agent can offload data retrieval to a specialist bot and receive results back, all within Telegram's native infrastructure.

This is progress. But it comes with three structural limitations that matter for production multi-agent systems.

Limitation 1: Platform Lock-In

Telegram's bot-to-bot communication works inside Telegram. Your Claude-powered agent on Telegram can talk to your GPT-powered agent on Telegram. But what about the agent running on Slack? The one deployed on AWS Bedrock? The custom Python bot on your own infrastructure?

The moment your agent network spans more than one platform, Telegram's native communication becomes one channel among many, not the universal layer.

// With rosud-call: platform-independent agent messaging
import { RosudCall } from 'rosud-call';

const agent = new RosudCall({
  agentId: 'procurement-bot-v3',
  token: process.env.ROSUD_TOKEN
});

// This works regardless of where the other agent lives
// Telegram, Slack, AWS, your own server - same API
await agent.send('inventory-checker', {
  type: 'stock-query',
  sku: 'WIDGET-2000',
  urgency: 'high'
});

// Subscribe to responses from any agent, any platform
agent.on('message', (msg) => {
  if (msg.from === 'inventory-checker') {
    console.log(`Stock level: ${msg.payload.quantity}`);
  }
});

Enter fullscreen mode Exit fullscreen mode

Limitation 2: Security Coverage Gap

The same week Telegram shipped bot-to-bot communication, a Georgia Tech study found that the best existing security framework for multi-agent systems covers only 65.3% of identified threat categories. Non-determinism and data leakage were the two most under-addressed risk domains.

A separate study from the Cooperative AI Foundation identified three structural failure modes specific to multi-agent architectures: miscoordination, conflict, and collusion. One compromised agent can cascade through trust relationships across an entire network.

Telegram's mutual opt-in is a start. But opt-in doesn't solve:

  • Message integrity verification between agents
  • Rate limiting per agent pair
  • Payload schema validation
  • Audit trails for compliance
  • Credential scoping per conversation
// rosud-call: built-in security primitives
const secureChannel = new RosudCall({
  agentId: 'finance-bot',
  token: process.env.ROSUD_TOKEN,
  security: {
    verifyPeer: true,           // Cryptographic identity check
    maxMessagesPerMinute: 100,  // Rate limiting per peer
    schemaValidation: true,     // Reject malformed payloads
    auditLog: true              // Every message logged
  }
});

// Only accept messages from verified agents
secureChannel.on('message', (msg) => {
  // msg.verified === true means cryptographic proof of sender
  // msg.auditId links to immutable log entry
  if (!msg.verified) return;
  processPaymentRequest(msg.payload);
});

Enter fullscreen mode Exit fullscreen mode

Limitation 3: No Observability by Default

Telegram mentions that users "who choose to watch can observe bot-to-bot conversations." That's consumer-grade visibility. Enterprise multi-agent systems need:

  • Message latency metrics per agent pair
  • Failure rate tracking with automatic retry
  • Dead letter queues for undeliverable messages
  • Circuit breakers when downstream agents are unhealthy
  • Distributed tracing across multi-hop agent chains

These aren't nice-to-haves. When your procurement agent delegates to an inventory agent, which delegates to a supplier agent, and the chain fails silently at hop three, you need infrastructure-level observability to diagnose it.

// rosud-call: observability built into the SDK
const channel = new RosudCall({
  agentId: 'orchestrator',
  token: process.env.ROSUD_TOKEN,
  observability: {
    tracing: true,        // Distributed trace IDs across hops
    metrics: true,        // Latency, throughput, error rates
    deadLetterQueue: true // Capture failed deliveries
  }
});

// Send with delivery guarantees
const result = await channel.send('supplier-agent', payload, {
  timeout: 5000,          // 5s deadline
  retries: 3,             // Automatic retry on failure
  circuitBreaker: {
    threshold: 5,         // Open after 5 consecutive failures
    resetAfter: 30000     // Try again after 30s
  }
});

if (!result.delivered) {
  // Message is in dead letter queue
  // Alert, fallback, or escalate
  await escalateToHuman(result.deadLetterId);
}

Enter fullscreen mode Exit fullscreen mode

The Real Question

Telegram opening bot-to-bot communication validates the market. Over 10 million bots can now form networks on a billion-user platform. That's real.

But production multi-agent systems don't live inside a single messaging app. They span platforms, clouds, and custom infrastructure. They need security primitives that go beyond opt-in. They need observability that goes beyond "users can watch."

The protocol layer (A2A, MCP) tells agents how to discover each other. The platform layer (Telegram, Slack) gives them a place to exist. The SDK layer makes sure messages actually arrive, securely, with proof.

That's what rosud-call does. One npm install. Platform-independent. Security and observability built in. No lock-in to any single messaging platform.

npm install rosud-call

Enter fullscreen mode Exit fullscreen mode

Telegram opened the door. Now build something that works everywhere the door leads.


Kavin Kim builds payment and communication infrastructure for AI agents at Rosud. Previously: 15 years designing global payment systems processing cross-border transactions across 172 countries.