What problem does it solve?
ClawFlow provides a lightweight runtime for jobs that must outlive a single prompt or detached run while preserving a single owner session, thread context, and a small persisted output bag so work can be waited on, resumed, inspected, and finished with clear ownership.
Core Features & Use Cases
- Flow identity and ownership: Maintain a single owner session and flowId for multi-step background jobs.
- Waiting and resumption: Pause flows while detached tasks or subagents complete, then resume with preserved state.
- Small persisted outputs and lifecycle: Store brief outputs, emit owner-facing updates, and support finish, fail, cancel, and blocked states.
- Use Case: Triage an inbox by creating a flow, run classification tasks in detached workers, set waiting state, then resume to route results and emit a single owner update.
Quick Start
Create a flow to manage a multi-step background job for a single owner, run tasks in the flow, set waiting or outputs, and resume or finish the flow as needed.