# Transports

Canonical: https://auggy.dev/docs/transports
Status: Published
Package: auggy 0.5.0

Expose the agent over web chat, AG-UI, Telegram, and other inbound surfaces.

## Web transport

A transport is the inbound surface that identifies the peer and creates the turn. Trust starts here: whoever the transport says is calling determines what the turn may do.

- Serves /agent/run, the AG-UI SSE runtime surface.
- Serves `/console` and `/console/chat` for creator-facing chat.
- Serves /health and the default home page.
- Owns visitor token and external auth assertion verification when configured.

## Telegram

telegramTransport provides bidirectional chat from Telegram. Add it when the agent should participate in Telegram conversations with runtime identity mapping and transport-specific configuration.

**Add Telegram transport**

```bash
auggy augment add telegramTransport
```

## Related

- [Console](https://auggy.dev/docs/console/markdown)
- [Delegated authorization](https://auggy.dev/docs/delegated-authorization/markdown)
- [Deploy and verify](https://auggy.dev/docs/deploy/markdown)