What is Shared State?
When tasks in a Mission need to share information, shared state lets one task save data that another task can read later.
How It Works
Task A finishes and saves a result (like a list of API endpoints). Task B starts, reads that result, and uses it to guide its work.
Viewing Shared State
In the Mission dashboard, the State tab shows:
- All data shared between tasks
- Which task wrote each value
- When it was last updated
Common Uses
- Pass API schemas from a design task to an implementation task
- Share a list of files between tasks working on different parts
- Track subtask completion status across agents