Trigger
Document whether the workflow starts from a schedule, webhook, app event, manual run, or another workflow.
n8n workflow documentation guide
A client handoff is not a node dump. It should tell the next owner what starts the automation, what can break, which credentials matter, what is safe to edit, and how to prove the workflow still works.
Use the same order every time so your client or support team can find the failure point without reading every node.
Document whether the workflow starts from a schedule, webhook, app event, manual run, or another workflow.
Name the fields the workflow expects. Call out optional fields, required fields, and values that commonly arrive malformed.
Do not paste secrets into the doc. List the credential names, owners, renewal risk, and where access must be confirmed.
Explain what should happen when the workflow succeeds: created record, sent email, Slack message, invoice, lead update, or file.
Example phrasing: This workflow starts when a website form sends a lead payload to n8n. It checks required fields, writes the lead to the CRM, sends an internal review email, and marks the handoff successful when the CRM record URL is returned.
Most client breakage starts after a small edit. Give the owner a short list of values they can safely change, then make every riskier change leave a trail.