Workflow Library
Curated AI workflow presets, your locally-saved customisations, and an import bay for any JSON file or shared ?w=… URL. Everything runs in /workflow.
Curated presets
6 workflowsClassic content pipeline. A researcher lists sub-topics; a summariser turns them into two paragraphs; a closer distills it into a single tweet.
Paste a snippet. A reviewer flags issues; a refactorer rewrites with fixes applied. Useful for cleaning up small functions before committing.
Two-step support agent. Classifies an incoming email, then drafts a tone-matched reply.
Demonstrates the v0.2 step types: a `fetch` step hits any public HTTPS URL through a server proxy; a `llm` step summarises the response; an `assert` step verifies the summary contains an expected keyword. Fails the workflow if the assertion fails — like a CI test.
Demonstrates v0.4 parallel execution. Three reviewers (correctness · security · style) each receive the same snippet and run concurrently as a single batch — total latency ≈ max(step1, step2, step3) instead of their sum. A synthesiser step then sees all three reviews and produces a single verdict.
Demonstrates v0.3 conditional steps. Step 1 classifies an email into COMPLAINT / QUESTION / COMPLIMENT. Three downstream drafters each declare a `runIf` condition — only the matching one runs; the others skip. Edit the input to see the branch change.
Your saved workflows
stored in this browser onlyImport a workflow
Paste a workflow JSON (matching the schema in lib/workflow-presets.ts) or a share URL with a ?w=… parameter. The library validates and opens it in the builder.