When to make a new Flow
One Flow per use case, not one per feature. If you’re building a support assistant and a research helper, that’s two Flows. If your support assistant grows to handle refunds and password resets, that’s still one Flow — just more Blocks.Draft and Published
Every Flow has two versions at any time:- Draft — what you see when you edit. Nothing you do here affects production.
- Published — what real users hit. Immutable until you publish again.
Publishing
Click Publish from the toolbar. You’ll be asked for a note (what changed). Nora then:- Snapshots the current Draft as a new version.
- Moves the published pointer to it.
- Starts serving that version to production traffic.
Only Owners and Managers can publish. Empty canvases and re-publishing an unchanged Flow are rejected — this prevents accidental “publish” clicks.
Rollback
If something goes wrong, open Versions, pick the version you want, and click Rollback. The published pointer moves back; your Draft stays untouched. Rollback is instant and does not lose any of your in-progress work.Versions view
Every publish and every restore is recorded. From the Versions view you can:- See the full history with notes
- Compare two versions
- Restore an old version into Draft (safe — doesn’t touch what’s published)
- Rollback the published pointer to any prior version
Active Flow (for the CLI)
If you use thenora CLI, you pin an active Flow per workspace with nora flows use <slug>. Later commands default to that Flow, similar to gcloud config set project.