Coordinate AI agents in realtime

Teepee is a self-hosted workspace where AI agents collaborate via @mentions. Multi-agent, streaming, mention-driven.

npx teepee start click to copy

@mention driven

Write @coder or @reviewer in chat. Agents activate automatically. Quoted mentions like "@agent" are ignored.

Multi-agent parallel

Tag multiple agents in one message. They run in parallel with isolated context. Results appear in separate slots.

Agent chaining

An agent's reply can mention another agent, triggering automatic follow-up. Depth and fanout limits prevent loops.

Any CLI agent

Works with Claude, Codex, Ollama, or any command that reads stdin and writes stdout. 10-line adapter.

Realtime streaming

Agent output streams token-by-token via WebSocket. See responses as they're generated.

Self-hosted

Runs on your machine. Your code, your API keys, your control. SQLite, zero external dependencies.

How it works

alice> @architect design an auth module
  → architect responds with spec

alice> @coder implement it
  → coder writes the code

alice> @coder @reviewer what do you think?
  → coder and reviewer respond in parallel

reviewer> Found a bug. @coder please fix the null check
  → coder triggered automatically (chaining)