Configuration
| Option | Required | Description |
|---|---|---|
| Name | No | Label for the step in the workflow canvas. |
| Feed URL | Yes | Direct RSS or Atom feed URL. This field supports workflow variables through Insert Variable. |
| Item Limit | No | Maximum number of feed entries to return. Defaults to 10. Valid range is 1 to 100. |
| New items only | No | When enabled, repeated scheduled or deployed runs suppress feed items this workflow scope has already emitted. |
| When the step fails | No | Controls whether the workflow should Terminate Workflow or Continue if this step fails. |
Output
The step returns normalized feed metadata plus anitems array:
Example: summarize new feed articles
Create this workflow:- Add RSS Feed and set Feed URL to the direct feed URL.
- Set Item Limit to the number of entries you want per run.
- Leave New items only enabled for scheduled or repeated deployed runs.
- Add Iteration and set Iterator to
{{rss_step.output.items}}. - Inside the iteration body, add Website Scrape and set URL to
{{iteration.item.url}}. - Add an AI Prompt after the scrape step to summarize the article content.
- Aggregate or return the summaries from the workflow output.
Notes
- RSS and Atom feed URLs are supported. Website feed discovery is not part of this step.
- The step normalizes relative item URLs to absolute URLs when the feed URL can be used as a base.
- Dedupe is lightweight seen-item suppression for repeated runs. It is not a feed history or replay interface.
- Article scraping and summarization are separate steps so you can control crawl settings, prompts, and aggregation explicitly.

