"AI agent" is one of those terms that means seven different things depending on who is selling. For a non-technical small business owner, the useful definition is this: an AI agent is a piece of automation that reads context, makes a decision, and takes an action. It does not need to be conversational. It does not need to live in a chat window. It just needs to do the small piece of judgment work you would otherwise do yourself.
This guide walks through building one. No code. No developer. One afternoon. The example is an inbound-lead triage agent because it is the most common one I deploy, but the same pattern works for follow-up, quoting, invoice review, and a dozen other use cases.
What the Agent Will Do
Every time a new lead form is submitted on your website, the agent will:
- Read the form contents.
- Classify the lead as Hot, Warm, or Cold based on rules you set.
- Pull the prospect's company info from a quick web lookup if available.
- For Hot leads, send an SMS to the owner and create a HubSpot deal in the Priority pipeline.
- For Warm leads, draft a personalized email response in your voice and queue it as a Gmail draft.
- For Cold leads, log the entry and send an auto-response acknowledging receipt.
That is a real agent. It reads context, makes a judgment, and takes a different action based on what it sees. There is no code involved.
The Tools You Need
- Make.com ($16/month Core plan): the orchestration layer that wires everything together.
- Anthropic Claude via API (a few dollars per month at low volume): the reasoning engine.
- A web form tool like Tally, Typeform, or your existing website form: the trigger.
- HubSpot, Pipedrive, or Airtable: the place where leads get logged.
- Gmail: where draft responses get queued.
- Twilio ($1/month plus a few cents per SMS): the alerting channel for Hot leads.
Total monthly cost for this agent at low volume: under $30. Total setup time the first time: 3 to 5 hours.
Step 1: Map the Decision Logic Before You Open Anything
The single biggest mistake non-technical builders make is opening Make.com first. Open a Notion page or a sheet of paper first. Write out exactly what the agent should decide.
For the lead triage agent:
- Hot: Company size in target range, role is decision-maker (owner, founder, VP+), specific problem mentioned in the form, requested a call.
- Warm: Company in adjacent industry, role is influencer or unclear, general inquiry, no urgency.
- Cold: Solo operator, unrelated industry, generic message, or obvious spam.
Get the rules in writing. They will become the prompt you give to Claude. If you cannot write them down, the agent cannot apply them. This is the single highest-leverage step in the whole build.
Step 2: Set Up Your Trigger
In Make.com, create a new scenario. Add a Tally or Typeform module as the trigger ("Watch Submissions" or equivalent). Connect your form. Run a test submission and verify Make.com sees the data.
If your existing website form does not support Make.com directly, you can use a webhook trigger and have the form POST to a unique URL Make.com gives you. Most form tools support this in their settings under "integrations" or "webhooks."
Step 3: Add the Claude Classification Step
Add a new module after the trigger. Search for "Anthropic Claude" and pick "Create a Prompt Completion" or "Send Messages." You will need an Anthropic API key, which you get from console.anthropic.com. Put a few dollars on the account.
The prompt you send to Claude is the most important part of the build. Here is the structure:
- Role: "You are a sales triage assistant for [your business name]. You classify inbound leads as Hot, Warm, or Cold."
- Rules: Paste your Hot/Warm/Cold rules from Step 1.
- Input: The form submission data, pulled from the previous module via Make.com's data mapping.
- Output format: "Return a JSON object with two fields: classification (Hot, Warm, or Cold) and reason (one sentence)."
Test this step. Submit a few sample leads through your form and watch what Claude returns. Adjust the rules until the classifications match what you would do yourself.
Step 4: Add the Router
In Make.com, add a Router module after the Claude step. The Router lets your scenario split into three paths based on the classification field Claude returned.
Path 1 (Hot), Path 2 (Warm), Path 3 (Cold). Set the filter on each path to check the classification value. Test each path with sample data.
Step 5: Build the Three Action Paths
Hot Path
Add a Twilio module: "Send an SMS." Configure it to send a message to your phone with the lead name, company, the reason Claude flagged them as Hot, and a link to view the form submission.
Add a HubSpot module: "Create a Deal." Map the lead data into the deal record. Set the pipeline to Priority and the deal stage to "Inbound Lead."
Warm Path
Add a second Claude step. The prompt this time: "Draft a personalized email response to the following inbound lead. Voice samples: [paste 5 to 10 of your real emails]. The email should acknowledge their specific question, offer one piece of value, and suggest a 15-minute call. Keep it under 100 words. Sign off as [your name]."
Add a Gmail module: "Create a Draft." Map the Claude output into the email body. Set the recipient to the lead's email address.
Cold Path
Add a Gmail module: "Send an Email." Use a pre-written auto-response template thanking them for reaching out and acknowledging you will be in touch within a week. Add an Airtable or HubSpot module to log the lead with classification "Cold" for future review.
Step 6: Test, Test, Test
Submit 10 to 15 fake form entries across the Hot, Warm, and Cold spectrum. Watch how the agent handles each one. Look for misclassifications and fix the rules. Look for failed steps and fix the connections. Look for awkward email drafts and improve the voice samples.
The first hour of testing surfaces 80 percent of the issues. The next hour catches the edge cases. By the end of the afternoon, the agent runs cleanly enough to deploy.
Step 7: Turn It On and Monitor for a Week
Activate the scenario. Watch the first 10 real leads come through. Compare the agent's classifications to what you would have done. Compare the drafted emails to what you would have written. Refine the prompts based on what you see.
After two weeks of real traffic, you will have either a tool you trust or a list of clear improvements to make. Either outcome is a win because you now have a working agent and you know how to extend it.
What Counts as an Agent Versus a Workflow
The technical purists will tell you what I described above is "just a workflow with AI in it," not a real agent. They are partly right. A real autonomous agent makes multi-step decisions, plans its own actions, and uses tools dynamically.
For 95 percent of small business use cases, the workflow-with-AI version is what you actually want. It is predictable. It is debuggable. It does not surprise you. Real autonomous agents are still rough enough that deploying one in a customer-facing role will cost you trust faster than it saves you time.
If you reach the point where you genuinely need true multi-agent reasoning, the right move is the OS Builder. That is the productized $5,000 build of a multi-agent operating system on top of Anthropic Claude and OpenAI GPT-4o, with persistent business context and proper routing. Most owners do not need it yet.
The Honest Limits
Two things this approach will not do.
It will not handle phone calls in real time. Voice agents are a separate category requiring different tools (Vapi, Voiceflow, Bland, etc.). The lead-triage pattern works for forms, email, SMS, and async channels.
It will not learn from feedback automatically. If you want the agent to improve over time without your involvement, that requires more infrastructure than a Make.com scenario can hold. The lightweight version is to set a weekly 10-minute review block to scan the logs and update the prompt manually. That keeps the agent calibrated without overcomplicating the build.
Why This Matters
The reason to build the first agent is not the time it saves on that specific workflow. It is the unlock of understanding how the pieces fit together. Once you have built one agent that classifies, decides, and acts, you can build the next one in two hours instead of five. The third one takes 45 minutes. By agent five, you are no longer building. You are arranging.
This is the lever that separates owners who use AI to save 2 hours a week from owners who use AI to save 12.
Want the specific agent for your business mapped out?
The $997 AI Efficiency Audit identifies the top 3 to 5 places in your business where an agent would pay back fastest, names the tools, and gives you the order to build. Or if you want it built for you, the $5,000 OS Builder is the productized multi-agent path.
Book your AI Efficiency Audit →