Connectors
A connector is how you talk to gaia. There are three: your terminal (built in), Telegram, and WhatsApp.
Connectors are thin I/O adapters. Each one extracts the sender and the text, hands it to the same gaia core, and sends the reply back. Memory, souls, missions, and slash commands all work the same whichever channel you use - and because one person is one identity across channels, your WhatsApp and Telegram share the same long-term memory.
Set one up
Section titled “Set one up”gaia connect # interactive menu: add or remove a channelgaia connect telegram # or go straight to onegaia start # run the enabled connectors in the background (the daemon)gaia connect writes the channel’s secret to ~/.gaia/.env (0600, never to gaia.yaml) and flips connectors.<name>.enabled in gaia.yaml.
The terminal needs no setup at all.
Who becomes admin
Section titled “Who becomes admin”You never have to look up your own id. On a fresh install with no admin yet, the first person to DM gaia becomes admin automatically (DM-only, so a group can’t grab admin).
After that, a new sender on any channel is a guest by default and is gated until an admin approves them.
Change the default for a channel with connectors.<name>.default_role (guest / user / admin).
The full model is in Access control and Permissions.
Run it + check on it
Section titled “Run it + check on it”gaia start # run the connectors in the background (daemon)gaia status # is it up?gaia restart # apply a config change / bring up a newly-enabled connectorgaia stop # stop the daemonA newly-enabled connector starts on the next gaia restart (the daemon launches connectors at boot).
Per-channel guides
Section titled “Per-channel guides”- Terminal - the built-in
gaiachat, always available, always admin. - Telegram - a bot you create with @BotFather; voice, media, typing, a
/menu, tappable buttons. - WhatsApp - pair gaia’s own account by QR; works in DMs and groups.
Full CLI flags: Reference → CLI.
The connector code lives in src/gaia/connectors/; sender-to-user routing is src/gaia/core/dispatch.py.