Nothing survives Cancel anymore. Workflows can run heavy things — test suites, builds, AI agents doing real work. Until now, cancelling a run (or quitting the app) stopped the workflow but could leave those processes running behind your back; one runaway test sweep ate 25 GB and forced a force-quit that didn't even reclaim it. Fixed properly: every process a step starts now belongs to the run — Cancel kills the whole tree, for every step type and every AI provider (Claude, Codex, Rovo Dev, Gemini). Cancel also now works on scheduled runs, not just ones you started by hand. And if the app ever dies mid-run, it cleans up anything left behind the next time it starts, and tells you it did.
The agentic path. This release also ships the first full set of agentic building blocks:
- Loops that know when to stop.
until conditions ("repeat until the reviewer approves"), automatic stuck-loop detection, a Wait step for pacing ("check CI every 5 minutes"), and commands whose exit codes are data — so "run the tests until green" is now four nodes.
- Route to a workflow. An AI step that picks which of your workflows should handle the work — it can only choose from the list you scope, and hands anything unmatched to a person.
- Invent a workflow. An agent that drafts a new workflow to handle a task, validates it, files it separately from your own workflows (badged, always identifiable), runs it, and shows you exactly what it made and why. Keep the good ones with one click of review; agent-made workflows never enter your own list without you.
- See the agent's thinking. Every AI step now stores what it was asked, what it did, and why it decided — readable in the run view, with your secrets scrubbed before anything touches disk.
- Starter templates. Four ready-made workflows in the empty state that teach the patterns.
Also: the model picker gains Claude Fable 5 and Sonnet 5, plus the current Codex models (GPT-5.6 Sol/Terra/Luna); the Map's workflow cards match the editor's design; and the website now explains loop engineering at /docs/building-agentic-loops.