- Type a 5-digit cipher and submit
- Click a SUPPRESS button at exactly T=15s, T=35s, and T=60s (6-second window each)
- Toggle grid cells to match a target pattern
Independent State Threads
Each task maintains its own state embedding. Stratus tracks them in parallel without cross-contamination.
Timing Constraints
Models temporal windows across concurrent tasks — knows when a time-sensitive action must preempt a longer-running one.
Interference Avoidance
Detects when two concurrent operations would collide in shared state and schedules around it automatically.
What We’re Building
A research agent that runs three parallel tasks:- Search task — query 3 data sources simultaneously
- Monitor task — watch for real-time updates and capture them on a schedule
- Synthesis task — build a structured report as results arrive
The Agent
Tracking Independent State Threads
The secret to reliable concurrent coordination is describing each task’s state independently in the system message. Stratus builds a separate embedding context for each thread.Handling Priority Preemption
When a time-sensitive task needs to interrupt a lower-priority one:Interference Matrix
For complex multi-agent scenarios, make the interference rules explicit:Real-World Applications
Parallel Data Pipelines
Multiple ETL jobs sharing write targets — schedule around lock contention automatically.
Multi-Agent Research
Agents querying different sources simultaneously, synthesizing as partial results arrive.
Webhook Orchestration
Multiple async event handlers that must not double-process or race on shared state.
Test Suite Coordination
Parallel test runners with shared fixtures — isolate state, manage teardown ordering.
Next Steps
Temporal Sequencing
When task order matters — avoiding conflicts in sequential workflows.
Cascade Prediction
Actions that trigger downstream waves of effects.
Rollout API
Simulate multi-task plans before any task fires.

