DEV Community

Luna
Luna

Posted on

Before You DM an n8n Expert, Write These 4 Lines

“I need an n8n expert” is a valid signal, but it is not yet a quotable scope.

It tells a developer which platform is involved. It does not say what must start, what must finish, which actions are dangerous to repeat, or what evidence will prove the automation worked.

That ambiguity creates two bad outcomes. A buyer receives vague hourly estimates, or a builder confidently prices the wrong system.

You do not need to publish a workflow export, credentials, or customer records to fix this. Four sanitized lines are enough to choose a first paid boundary.

Line 1: What triggers the automation?

Name the event, not just the application.

Weak:

It starts in the CRM.

Useful:

A new qualified lead webhook starts the process after a human changes the lead to Approved.

The trigger line should answer:

  • Which event starts the workflow?
  • Which source is trusted?
  • Can the same event arrive twice?
  • What should happen if the event never arrives?

This separates an ordinary happy path from the first reliability contract. A webhook can retry. A schedule can go silent. A manual status change can be repeated. Each needs a different acceptance case.

Line 2: What exact outcome must exist?

“Send a notification” is a task. “One booking record exists for the approved lead, with the correct owner and a traceable confirmation” is an outcome.

Write one observable terminal result:

The approved lead has exactly one booking record, the assigned owner receives one notification, and the run stores the booking identifier.

Avoid combining every future feature into this line. The first scope should have one primary business outcome. If several workflows support the same outcome, say that explicitly.

Line 3: Which actions cannot be repeated blindly?

List every external side effect:

  • create or update a record;
  • send an email, message, or document;
  • book or cancel an appointment;
  • change a status;
  • write a file;
  • trigger another workflow.

Then mark the ones that would cause harm if a retry ran them twice.

A green execution is not enough evidence. The workflow may have made the correct API call twice, updated a valid field from the wrong branch, or timed out after the external service accepted the request.

This line tells the builder where the replay gate belongs.

Line 4: What receipt proves completion?

Choose the minimum evidence that distinguishes four states:

  1. accepted;
  2. completed;
  3. failed before the side effect;
  4. ambiguous after the side effect may have occurred.

A useful receipt might contain a stable event key, the external record identifier, the final status, a timestamp, and the tested artifact version. It should not contain private customer data.

The receipt is what makes a failed run replayable. Without it, a timeout forces a guess: retry and risk a duplicate, or stop and risk missing the outcome.

Turn the four lines into a fixed first engagement

Once these four lines exist, the buyer can choose a boundary without revealing a production account.

One workflow: $299 pilot

Use this when one workflow owns the primary outcome.

The fixed pilot covers one workflow, one primary outcome, up to two external services, five fault cases, evidence, and a handoff runbook. The buyer connects credentials in their own environment.

Up to three connected workflows: $799 sprint

Use this when one business process crosses several workflows—for example intake, human review, and final delivery.

The fixed sprint covers up to three connected workflows for one process, atomic replay ownership, trusted review evidence, at least eleven workflow or topology cases, and a reproducible receipt. It is not open-ended consulting or an unlimited automation build.

If the request does not fit the purchased scope, it is refunded before work starts.

What to share—and what not to share

Enough for a quote:

  • the four lines above;
  • a sanitized node list or redacted export;
  • synthetic input and expected output;
  • the number of connected workflows and external services.

Do not share:

  • passwords or private login values;
  • private URLs;
  • customer lists or production records;
  • payment data;
  • private transcripts or documents.

Inspect the evidence before paying

Builderlog publishes a credential-free n8n reliability reference with workflow artifacts, anonymous fixtures, replay ownership, acceptance receipts, a recovery runbook, and buyer-runnable verification.

The current reference passes 41/41 structural checks and 11/11 workflow or topology cases. Those results prove the public packet and reference expectations—not a buyer-specific production outcome.

Use the four-line scope chooser to compare the free reference, $19 kit, $49 written teardown, $299 one-workflow pilot, and $799 fixed sprint.

The useful first message is not “Can you automate this?”

It is:

Trigger: ...

Outcome: ...

Irreversible actions: ...

Completion receipt: ...

That is short enough to send publicly after sanitization and specific enough to quote without guessing.

Top comments (0)