The jsonl messagebus
How do teammates communicate? Through file-based JSONL inboxes. Each teammate gets a file at .team/inbox/{name}.jsonl. Sending a message appends a JSON line. Reading drains the inbox (read and clear). Why JSONL? No database, no server, no dependencies. Append-only is naturally thread-safe for single-writer scenarios.
Messagebus: File-based Inter-agent communication
Each agent has an inbox file. Send appends. Read drains.
Quiz: Quiz
Loading practice…