Sources:
• crew-reference• crew-stateWorkspace file coordination — the simple, audit-trail-friendly pattern The Ghost Squad uses to coordinate multi-agent work without exotic protocols.
Workspace file coordination — the simple, audit-trail-friendly pattern The Ghost Squad uses to coordinate multi-agent work without exotic protocols.
Agents communicate by reading and writing files in crew/:
crew/
├── inbox/ # New tasks (write here to assign)
├── outbox/ # Completed work (read here for results)
├── briefs/ # Intelligence output
├── state.json # Global crew state
└── logs/ # Activity logs1. inbox/ — Write tasks as JSON or Markdown files
2. outbox/ — Write completion reports with timestamps
3. state.json — Update after every significant action
4. Logs — Append, don't overwrite
crew/state.json tracks agent status, current tasks, and queues. Every agent updates their own entry.