Status feed — RSS
Watch a vendor's status page RSS for new incidents (onlyNew remembers what it has seen across runs). Needs internet; swap the URL for any feed you care about.
What’s inside
3 nodes — every type links to its full reference page.
| Step | Node | Type |
|---|---|---|
| Poll tick | Inject | input.inject |
| Read feed | RSS Read | input.rss-read |
| Feed items | Console | utility.console |
Import it
- Studio → Import — paste the JSON below (or the URL
/docs/templates/status-feed-rss.json). - Or ask the AI Copilot with the JSON pasted after the phrase:
import this workflow json into a new workflow named "Status feed — RSS" - Any credentials the nodes need are
${credential.…}references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 3 node types)
{
"schemaVersion": "flowdrome.workflow.v1",
"id": "",
"name": "Status feed — RSS",
"version": "0",
"status": "draft",
"nodes": [
{
"id": "seed",
"type": "input.inject",
"label": "Poll tick",
"category": "trigger",
"config": {
"contentType": "application/json",
"payload": {}
},
"position": {
"x": 0,
"y": 0
}
},
{
"id": "rss",
"type": "input.rss-read",
"label": "Read feed",
"category": "io",
"config": {
"url": "https://hnrss.org/frontpage?count=3",
"onlyNew": false,
"limit": 3,
"timeoutMs": 15000
},
"position": {
"x": 530,
"y": 0
}
},
{
"id": "out",
"type": "utility.console",
"label": "Feed items",
"category": "utility",
"config": {
"message": "latest items: {{ $json }}"
},
"position": {
"x": 1060,
"y": 0
}
}
],
"edges": [
{
"id": "e0",
"sourceNodeId": "seed",
"sourcePort": "output",
"targetNodeId": "rss",
"targetPort": "input"
},
{
"id": "e1",
"sourceNodeId": "rss",
"sourcePort": "output",
"targetNodeId": "out",
"targetPort": "input"
}
],
"triggers": [
{
"id": "t0",
"nodeId": "seed"
}
],
"meta": {
"snippets": [],
"source": "template-gallery",
"description": "Watch a vendor's status page RSS for new incidents (onlyNew remembers what it has seen across runs). Needs internet; swap the URL for any feed you care about."
}
} Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: status-feed-rss.json.