workflows-orchestration
Installation
SKILL.md
Workflows Orchestration
Intent
Implement multi-step processes as explicit application workflows that coordinate capabilities via events, not via direct imports.
Workflow Model
- A workflow is a state machine: explicit states, transitions, and terminal states.
- Keep transitions deterministic and driven by events/commands.
Where Logic Lives
- Workflow coordination lives in the Application layer (stores/use cases).
- Domain invariants stay in Domain; do not encode rules in UI components.
Event-Driven Coordination
- Workflows subscribe to events to advance state.
- Publish events only after persistence (append-before-publish).