State Machine By Claude
# State Machine Notes ## Core Elements | Element | Description | |---|---| | **State** | A condition the system is in (e.g. `Draft`, `Published`) | | **Transition** | An arrow from one state to another, triggered by an event | | **Event** | What causes the transition (e.g. `publish`, `cancel`) | | **Guard** | A condition that must be tru