mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-21 21:15:07 +00:00
546 B
546 B
Minimal state machine
States
- planned
- dispatching
- in_progress
- blocked
- reviewing
- done
Typical flow
planneddispatchingin_progressreviewingdone
Failure shortcuts
dispatching+ no worker trace within 10 minutes ->blocked (launch failure)in_progress+ ETA exceeded with no milestone ->blocked (stalled)
Notes
- Keep the state machine small.
- Avoid adding extra states unless repeated real-world failures demand them.
- State changes should be backed by evidence, not optimism.