A workflow is the saved form of a pipeline you build on the canvas. It stores everything Knouds needs to reproduce and run your pipeline: the nodes, the wires between them, the settings on each node, and the position of your viewport. Once saved, a workflow can be run interactively on the canvas, shared as a playground link, or called programmatically through a REST API.Documentation Index
Fetch the complete documentation index at: https://docs.knouds.ai/llms.txt
Use this file to discover all available pages before exploring further.
Workflow structure
Every workflow is stored as a JSON document with the following top-level fields:| Field | Description |
|---|---|
slug | URL-safe identifier used in API paths and file storage. Immutable after creation. |
name | Human-readable display name. You can rename this at any time without affecting the slug. |
nodes | Array of node definitions — type, position, and all field values. |
edges | Array of connections between node handles. |
viewport | Saved pan position and zoom level (x, y, zoom). |
description | Optional free-text description of what the workflow does. |
tags | Optional array of labels for organizing workflows. |
The workflow slug
If you leave the name blank when creating a workflow, it defaults to “Untitled workflow” and receives a slug likeuntitled-workflow-2. You can rename the display name at any time, but the slug stays fixed.
Saving and loading workflows
Knouds auto-saves your workflow as you work. You can also save manually from the toolbar. Workflows are loaded from the editor URL:https://knouds.ai/app/editor/{slug}.
Organizing with folders
You can move workflows into folders from the home page. Folders support nesting — you can create folders inside folders to build a hierarchy. The home page shows only root-level workflows and folders; navigate into a folder to see its contents.Templates
Knouds provides pre-built workflow templates you can copy to start from a working pipeline instead of a blank canvas.Some templates use models that require a higher-tier plan. Templates gated to a higher tier display a lock badge. Clicking the badge shows which plan you need to access that template.
Running a workflow
You have two ways to run a workflow:Run on the canvas
Press the Run button in the canvas toolbar to execute the full workflow interactively. You can also right-click individual nodes to run a single node in isolation.