Automation Workflow Prompts

End-to-End Process Automation Blueprint

Design a complete automation blueprint for a manual business process, including trigger logic, tool selection, exception handling, and rollback plans.

FreeClaudeChatGPT
Best for

Operations leads, RevOps/marketing ops professionals, and technical founders designing a reliable automation rather than a fragile one-off script.

Suitable LLM groups
ReasoningFrontier
Download Prompt.md
Prompt
Act as an automation consultant designing a production-grade workflow. Here is the manual process I want to automate:
{{manual_process_description}}

Build a blueprint covering:

1. Trigger definition — specify exactly what event should start the automation (e.g. new form submission, scheduled time, webhook), and any conditions that should prevent it from triggering unnecessarily.
2. Step-by-step flow — break the process into discrete automated steps, noting which tool or system performs each (e.g. Zapier, Make, a script, an API call).
3. Data mapping — identify what data moves between each step and any transformation needed (e.g. reformatting a date, matching a record by ID).
4. Exception handling — for each step, define what should happen if it fails (retry, alert a human, log and skip, halt the entire workflow).
5. Rollback plan — describe how to safely undo or correct the automation's actions if an error is discovered after the fact.
6. Monitoring — recommend 2-3 specific things to log or alert on to catch problems early.

Present this as a structured technical blueprint.

How to use

  1. Describe your actual manual process in {{manual_process_description}}, including every current manual step and the tools involved.
  2. Use the trigger definition section to configure the actual automation tool's trigger settings precisely, avoiding overly broad triggers.
  3. Implement the exception handling logic before going live — this is the most commonly skipped step in real automations and the most common source of production issues.
  4. Set up the recommended monitoring/alerts on day one, not after the first failure.

Example input

Act as an automation consultant... Manual process: When a new customer signs a contract in our e-signature tool, someone manually creates a record in our CRM, sends a welcome email, creates a folder in our shared drive, and notifies the account manager on Slack.

Example output

1. Trigger definition: trigger on the 'document completed' webhook event from the e-signature tool, filtered to only contracts tagged as 'New Customer Agreement' to avoid firing on unrelated document types.
2. Step-by-step flow: (a) Webhook receives signed document event, (b) automation tool (e.g. Make) extracts customer name and email from the document metadata, (c) creates a new CRM record via API, (d) triggers a templated welcome email via email tool, (e) creates a folder in the shared drive using a naming convention script, (f) posts a Slack message to the account manager's channel.
3. Data mapping: customer name and email must be extracted from the e-signature tool's metadata fields and mapped to the CRM's 'Contact Name' and 'Email' fields; date signed should be reformatted from the e-signature tool's timestamp format to the CRM's expected date format.
4. Exception handling: if the CRM record creation fails (e.g. duplicate entry), log the error and alert the ops team via Slack rather than silently retrying, since duplicate customer records are a common source of downstream errors; if the welcome email fails to send, retry once after 5 minutes, then alert a human if it fails again.
5. Rollback plan: if a CRM record was created in error, provide a clear reversal step (delete or archive record) and ensure the welcome email and Slack notification are not automatically re-sent after a rollback, to avoid confusing the customer or account manager.
6. Monitoring: log every trigger event with timestamp and customer name, alert if more than 2 failures occur within a day, and track the end-to-end completion time to catch slowdowns.

Customization tips

  • Specify your actual tools (e.g. 'we use Make, HubSpot, and Slack') so the blueprint recommends realistic integration steps rather than generic placeholders.
  • If the process handles sensitive data (financial, health, PII), mention this so the exception handling and rollback sections account for compliance requirements.
  • Ask for a version of this blueprint formatted as a checklist for your engineering or ops team to implement directly.

Tags

#automation#workflow design#process optimization#operations

FAQ

What is this prompt for?
It produces a complete, production-minded automation blueprint for a manual business process, including failure handling and rollback plans that are often overlooked in quick automations.
Do I need to know specific automation tools already?
No, though mentioning tools you already use (or are considering) will make the recommendations more directly actionable.
What's a limitation of this prompt?
This produces a design blueprint, not working automation code or a configured workflow; you'll still need to build and test the actual automation in your chosen tool.
How is this different from just asking 'how do I automate X'?
A simple request like that usually returns only the happy-path steps. This prompt explicitly forces exception handling, rollback planning, and monitoring, which are what separate a reliable production automation from a fragile one-off script.
Free

Approval Request Routing Automation

Design multi-step approval routing with thresholds, evidence, reminders, delegation, expiry, escalation, and a complete audit trail.

ClaudeChatGPT
#approval workflow#routing automation#business process
Free

Automation Failure Monitoring & Recovery

Create an observability and incident-recovery design for business automations, including logs, alerts, retry policy, ownership, replay, and post-incident review.

ClaudeChatGPT
#automation monitoring#incident response#workflow reliability
Free

Content Approval & Publishing Pipeline

Design a draft-to-publication workflow with source tracking, editorial approvals, scheduled publishing, rollback, and audit history.

ClaudeChatGPT
#content workflow#approval automation#publishing pipeline

Related Skills

Automation FlowsFree

Automation Blueprint Writer

Turns a plain-language description of a repetitive task into a step-by-step automation blueprint, complete with trigger, actions, tools, and edge-case handling.

ClaudeChatGPTCursor
#automation#zapier#make
Automation FlowsFree

Workflow Automation Blueprint

Turns a messy manual process description into a step-by-step automation blueprint with trigger, actions, tools, and edge cases mapped out.

ClaudeChatGPTCursor
#automation#zapier#make
Automation FlowsFree

Approval Workflow Automation Designer

Design approval automations with routing, thresholds, evidence, reminders, exceptions, escalation, audit trails, and manual fallback.

ClaudeChatGPT
#approval automation#workflow design#business process automation

Related Articles

Article · AI Agents

How to Use AI Agents: Beginner Guide with Examples

A plain-language beginner guide to what AI agents are, how they differ from chatbots, and practical examples for work, research, and support.

Jul 6, 20268 min read
Read How to Use AI Agents: Beginner Guide with Examples
Article · AI Agents

AI Agents vs Chatbots vs Automations: What's the Difference?

A clear comparison of chatbots, automations, and AI agents, with examples and a guide to choosing the right one for your task.

Jul 6, 20269 min read
Read AI Agents vs Chatbots vs Automations: What's the Difference?
Article · API & Integration Building

How to Use AI for API Integration Planning

Learn how to use AI to plan API integrations, map endpoints, handle authentication, validate data, design webhooks, and prepare safe implementation steps.

Jul 5, 20268 min read
Read How to Use AI for API Integration Planning