Build Your First Workflow
This guide walks you through creating a simple two-step workflow that fetches an RSS feed and summarises the latest headlines using Claude. You will then schedule it to run every morning.

Step 1: Create a new workflow
- Click Workflows in the left sidebar.
- Click New workflow.
- Give it a name:
Daily News Summary. - Click Create.
The workflow builder opens. You see an empty canvas with a Start node already placed.
Step 2: Add an HTTP Request step
- Click the + button beneath the Start node (or drag from the sidebar panel).
- Select HTTP Request from the step type list.
- Configure the step:
- Method:
GET - URL:
https://feeds.bbci.co.uk/news/rss.xml - Headers: leave empty for a public feed
- Method:
- Click Save step.
This step fetches the BBC News RSS feed and passes the raw XML response to the next step as {{steps.http_request_1.output}}.
Step 3: Add a Prompt step
- Click the + button beneath the HTTP Request step.
- Select Prompt from the step type list.
- Configure the step:
- Model: Claude (or whichever model your admin has enabled)
- System message:
You summarise news headlines concisely. - User prompt:
Here is an RSS feed. Extract the 5 most important headlines and write a 2-sentence summary of each. Return the result as a numbered list.
Feed:
{{steps.http_request_1.output}}
- Click Save step.
The {{steps.step_name.output}} syntax passes data between steps. You can reference any earlier step's output in any subsequent step's configuration.
Step 4: Run the workflow manually
Click Run now (top right of the builder). The Runs panel opens on the right and shows live step-by-step progress via SSE. Within a few seconds you should see your news summary appear as the final output.
If something goes wrong, click the failed step in the run timeline to see the error details.
Step 5: Schedule daily runs
- Click the Scheduling tab at the top of the workflow builder.
- Toggle Enable schedule on.
- Set the Cron expression to
0 7 * * 1-5(weekdays at 7:00 AM). - Set your Timezone (for example,
Europe/Amsterdam). - Click Save schedule.
Your workflow will now run automatically every weekday morning. You can view results any time in the Runs tab.
What's next
- Browse all step types to see what else you can build
- Learn about scheduling options for more complex cron expressions
- Use a workflow template to skip the setup for common use cases
Was this helpful?