Personal and team modes

Choose local SQLite coordination for one machine or PostgreSQL authority for a multi-host team.

Both runtime modes use the same protocol and interfaces. The difference is where authoritative state lives and how many hosts may coordinate safely.

Personal mode

Personal mode is designed for one user coordinating agents on one machine.

  • A per-project daemon owns the write path.
  • SQLite in WAL mode stores authoritative state.
  • CLI, TUI, and MCP clients share the daemon rather than competing for filesystem locks.
  • Reads remain local and governed writes require the local authority.
  • No account, server container, or PostgreSQL installation is required.

This is the default created by agent-comms init.

Team mode

Team mode is for multiple users or machines that require one consistent project head.

  • PostgreSQL is authoritative.
  • Each mutation is revalidated and committed in one short database transaction.
  • The service appends the event, updates projections, advances the head, and writes an outbox record atomically.
  • Local daemons maintain rebuildable SQLite caches and resumable cursors.
  • Governed writes prefer correctness over availability during a network partition.

Team mode requires the service deployment and database described in Deploy the service.

Comparison

ConcernPersonalTeam
Intended topologyOne user and hostMultiple users or hosts
AuthorityLocal SQLitePostgreSQL service
Local daemonYesYes, with projection cache
Offline readsLocal stateCached state with freshness metadata
Offline governed writesNoNo
Git in mutation pathNoNo
Operational setupNone beyond installationService, database, keys, monitoring

Do not select team mode just because several agents run on the same workstation. Personal mode already coordinates concurrent local clients.

Start typing to search the manual.