Skip to content

Build and debug a workflow

Compose transformations safely and find the first step that diverges from expectations.

Build from an invariant

Define something that must be true after each layer. A Base64 decoder should produce plausible bytes; a decompressor should produce a recognizable file signature or text; a parser should produce structured fields.

Add one step at a time

  1. Add the first operation and verify its output.
  2. Add the next operation only when the representation matches its expected input.
  3. Keep Auto Bake on for small data; switch to manual execution for expensive chains.
  4. Save a known-good checkpoint before exploring branches.

Find a failing step

Set a breakpoint before the suspicious operation and step through the chain. Temporarily disable later steps. Common causes include the wrong alphabet, character encoding, compression format, key representation, initialization vector, byte order, or line delimiter.

Navigation

Type to search…

↑↓ navigate↵ selectEsc close