Building Your First Automation
A step-by-step guide to connecting AI to your existing tools and creating your first working workflow — no code required.
What Automation Actually Means
AI automation is the combination of two things: an AI that can understand and generate text, and a workflow tool that connects that AI to the apps you already use. The result is software that handles a task end-to-end without human intervention.
A simple example: every time a new support ticket arrives in your inbox, an AI reads it, categorizes it (billing / technical / feature request), drafts a response from a template, and routes it to the right team member — all without anyone touching a keyboard.
That's a real automation. It requires no code. It can be built in an afternoon. And it can save 2-3 hours per week for a team handling moderate support volume.
This guide walks you through building your first one.
Choosing Your First Target
The best first automation shares three traits:
High frequency: A task that happens daily or weekly beats one that happens monthly. More runs means more savings and faster feedback.
Repetitive structure: The task should follow the same pattern every time. If every instance requires a unique judgment call, it's not a good automation candidate yet.
Low stakes: Your first automation should be one where errors are annoying but recoverable. Don't automate anything where a mistake causes irreversible harm until you've built confidence in the system.
Good first candidates: email categorization and routing, social media post drafting for human review, meeting note summarization, weekly report drafts, customer onboarding email sequences, lead scoring from form responses.
Poor first candidates: legal document review, financial transactions, any workflow where a wrong output causes customer harm.
The No-Code Stack
You don't need to write code to build powerful automations. The three tools you need:
Trigger tool: What starts the automation? Usually Zapier, Make (formerly Integromat), or n8n. These tools watch for events in your apps (new email, new form submission, new spreadsheet row) and kick off a workflow.
AI step: The intelligence layer. All three trigger tools have native integrations with OpenAI and Anthropic. You write a prompt, the trigger tool passes your data into it, and the AI returns a result.
Action tool: What happens with the AI's output? Send an email, create a task in Asana, update a CRM record, post to Slack. Again, handled by your trigger tool.
The combination looks like: Trigger → Prompt with Data → AI Output → Action.
// Pseudocode for email triage automation
TRIGGER: New email arrives in support@yourcompany.com
AI PROMPT:
"Categorize this support email into exactly one of:
[billing, technical, feature-request, other]
Return only the category, nothing else.
Email: {{email.body}}"
ROUTE:
- billing → Forward to billing@yourcompany.com
- technical → Create Jira ticket with priority=high
- feature-request → Add to Notion feature tracker
- other → Tag as needs-human-reviewBuilding It Step by Step
Using Make (free tier is sufficient to start):
Step 1: Create a Make account at make.com. Create a new scenario.
Step 2: Add your trigger module. For email: use the Gmail or Microsoft 365 module. Set it to trigger on new emails in a specific label or folder.
Step 3: Add an OpenAI or Anthropic module. Select "Create a completion." Write your prompt. Use Make's variable picker to insert the email body or subject into your prompt.
Step 4: Add a router module. This branches your workflow based on the AI's output. Create one branch per category.
Step 5: Add action modules to each branch. Route to the right person, create a task, send a Slack notification — whatever fits your workflow.
Step 6: Test with 3-5 real examples. Verify the AI categorizes correctly. Adjust your prompt if needed.
Step 7: Turn it on and watch it run for a week. Check the outputs. Tune as needed.
Total build time for this workflow: 3-4 hours, including testing.
What to Measure
Track three things from day one:
1. Volume processed: How many tasks ran through the automation per week.
2. Error rate: What percentage required human intervention or produced a wrong output.
3. Time saved: Estimate how long the task would have taken manually. Multiply by volume.
If you hit more than 10% error rate, stop and fix the prompt before continuing. If error rate is under 5%, the automation is working — now focus on reliability and scaling.
Once you have one working automation, the second is faster. The patterns are the same.