You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(website): fix 4 drifts caught by cross-check against atmosphere repo
A2A spec moved from google.github.io/A2A (404) to a2a-protocol.org under Linux Foundation stewardship; bump Quarkus floor to 3.35.2+ to match pom.xml and the main README; drop unverified "first Java framework" superlative from the WebTransport pillar (native WebTransport support stands on its own); correct enterprise-support start year 2014 → 2013.
Copy file name to clipboardExpand all lines: website/src/components/Atmosphere.astro
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ const pillars = [
7
7
items: [
8
8
{ name: 'WebSocket', detail: 'Full-duplex communication over a single TCP connection. The standard for real-time web applications since 2011.', url: 'https://datatracker.ietf.org/doc/html/rfc6455', urlLabel: 'RFC 6455' },
9
9
{ name: 'SSE', detail: 'Server-Sent Events. A simple HTTP-based protocol for server-to-client streaming with automatic reconnection built into the browser.', url: 'https://html.spec.whatwg.org/multipage/server-sent-events.html', urlLabel: 'WHATWG Spec' },
10
-
{ name: 'WebTransport/HTTP3', detail: 'Multiplexed, low-latency transport over QUIC. Atmosphere is the first Java framework with native WebTransport support — auto-detected via AsyncSupport with zero-config Jetty 12 QUIC or Reactor Netty sidecar.', url: 'https://w3c.github.io/webtransport/', urlLabel: 'W3C Spec' },
10
+
{ name: 'WebTransport/HTTP3', detail: 'Multiplexed, low-latency transport over QUIC with native WebTransport support — auto-detected via AsyncSupport with zero-config Jetty 12 QUIC or Reactor Netty sidecar.', url: 'https://w3c.github.io/webtransport/', urlLabel: 'W3C Spec' },
11
11
{ name: 'Long-Polling', detail: 'HTTP long-polling with automatic reconnection. Works everywhere, even behind the most restrictive corporate firewalls and proxies.', url: 'https://datatracker.ietf.org/doc/html/rfc6202', urlLabel: 'RFC 6202' },
12
12
{ name: 'gRPC', detail: 'High-performance RPC framework with bidirectional streaming over HTTP/2. Atmosphere exposes your agents as gRPC services alongside HTTP transports.', url: 'https://grpc.io', urlLabel: 'grpc.io' },
13
13
],
@@ -19,7 +19,7 @@ const pillars = [
19
19
description: 'Add the dependency to your classpath and your agent speaks the protocol. No manual endpoint wiring, no boilerplate.',
20
20
items: [
21
21
{ name: 'MCP', detail: 'Model Context Protocol. An open standard by Anthropic for connecting AI assistants to tools, resources, and data sources. Expose your @AiTool methods to Claude, Copilot, Cursor, and any MCP-compatible client.', url: 'https://modelcontextprotocol.io', urlLabel: 'modelcontextprotocol.io' },
22
-
{ name: 'A2A', detail: 'Agent-to-Agent protocolby Google. Enables agents to discover each other via Agent Cards and communicate through JSON-RPC. Your @Agent is automatically discoverable by any A2A-compliant agent.', url: 'https://google.github.io/A2A/', urlLabel: 'Google A2A Spec' },
22
+
{ name: 'A2A', detail: 'Agent-to-Agent protocol, originally launched by Google and now stewarded by the Linux Foundation. Enables agents to discover each other via Agent Cards and communicate through JSON-RPC. Your @Agent is automatically discoverable by any A2A-compliant agent.', url: 'https://a2a-protocol.org/', urlLabel: 'A2A Spec' },
23
23
{ name: 'AG-UI', detail: 'Agent-User Interaction protocol. Streams agent state (text deltas, tool calls, state transitions) to frontends in real time. Compatible with CopilotKit and other AG-UI clients.', url: 'https://docs.ag-ui.com', urlLabel: 'AG-UI Docs' },
24
24
],
25
25
extras: ['Auto-registered from classpath', 'Multi-channel: Slack, Telegram, Discord, WhatsApp, Messenger'],
0 commit comments