Setup and understand the full flow
Clarify the roles of Cusdis, n8n, and Cloudflare Tunnel before touching the workflow details. Once those boundaries are visible, the later node-level setup becomes much easier to reason about.
When building your first automation, the real confusion does not come from having many tools. It comes from not knowing what each tool is responsible for. Cusdis emits the comment event, n8n executes the workflow, and Cloudflare Tunnel exposes a public route when you self-host the workflow engine.
This chapter is about building the end-to-end map first. You need to understand where the signal travels, when the AI becomes part of the flow, and where the final approval request happens before the node-level work becomes manageable. Without that map, more detailed settings usually create more confusion, not less.
The chapter also explains the difference between n8n Cloud and self-hosted setups. For beginners, n8n Cloud is usually the faster starting point. Self-hosting offers more control, but that control comes with responsibility for public access, updates, security patches, and operations.
| Tool | Primary role | What breaks without it |
|---|---|---|
| Cusdis | Emits the comment event and provides the source data | The automation never receives the source event |
| n8n | Receives the event and runs branching plus follow-up actions | Classification, delay, and approval steps never connect |
| Cloudflare Tunnel | Exposes a self-hosted n8n instance through a reachable HTTPS route | External webhooks cannot reach a local or private instance |
- Why Cusdis is a strong first automation target
- A realistic decision rule for n8n Cloud vs self-hosted
- Why you need a public URL before incoming webhooks can work
End-to-end system flow and workflow image
DiagramShows the full path from Cusdis event to n8n, AI classification, and the final approval request.
Self-hosted public URL checklist
ChecklistA short checklist for exposing a self-hosted n8n instance through an HTTPS URL that can receive webhooks.


