The term "AI agent" has been inflated to the point of near-meaninglessness by marketing. A chatbot with a personality is not an AI agent. A GPT wrapper that summarises text is not an AI agent. An AI agent, in the practical B2B context, is a system that uses a language model to make decisions at one or more steps in an automated workflow, producing outputs that vary based on context rather than following fixed rules.
That is still powerful. Here is how to build one.
What you need to get started
You need three things: an API key from an AI model provider (Anthropic for Claude, OpenAI for GPT-4o, or both), a workflow automation tool (Make or n8n), and a clear definition of the task you want the agent to perform. That is it. No developers, no custom infrastructure, no months of setup. The first agents Koldconvert builds for clients are usually live within a week.
Use case 1: The inbound lead qualifier
The trigger: a new form submission arrives in your CRM. The agent: reads the company name, role, message and any enriched firmographic data. Sends this to Claude or GPT-4o with a prompt that includes your ICP criteria: "Based on the following information, rate this lead from 1 to 10 for ICP fit and provide a one-sentence rationale." Writes the score and rationale back to the CRM record. Routes the lead to the appropriate rep or sequence based on the score. Total automation: from form submit to CRM routing in under 60 seconds. Human involvement: zero, until a rep receives a pre-qualified, pre-scored lead.
This agent replaces 15 to 30 minutes of manual qualification work per inbound lead. For a team receiving 50 inbound leads per week, that is 12 to 25 hours of admin replaced by automation.
Use case 2: The reply classifier
Cold email at scale generates hundreds of replies across dozens of inboxes. Sorting them manually is time-consuming and error-prone. The agent: receives every reply via webhook from your sending platform (Instantly, Smartlead). Sends the reply text to Claude with a classification prompt: "Categorise this cold email reply as: Interested, Not Now, Wrong Person, Unsubscribe, or Other. Return only the category." Routes the reply to the right workflow: Interested replies go to a rep's task queue immediately, Not Now replies get tagged and added to a 90-day re-engagement sequence, Unsubscribes get processed immediately across all lists. Human involvement: reps only see the Interested replies.
Use case 3: The research agent
Before a sales call, someone needs to research the prospect's company. The agent: triggered by a new meeting booked in the calendar. Pulls company name and contact details from the CRM. Searches for recent news (via Perplexity API or a scraping tool), LinkedIn activity, job postings and funding data. Sends all of this to Claude with a prompt: "Summarise this company in 5 bullet points relevant to a B2B sales discovery call. Identify any recent events that would be relevant to discuss." Sends the brief to the rep's Slack 30 minutes before the meeting. The rep gets a customised briefing for every call without doing any research.
How to build it in Make
In Make, each use case above follows the same pattern: a Trigger module (webhook, calendar event, form submission), one or more Data modules (CRM lookup, enrichment API), an AI module (OpenAI or Anthropic node with your prompt), and Action modules (CRM update, Slack message, task creation). Make's visual canvas makes the flow visible and editable. Start with the inbound lead qualifier. It is the simplest and the most immediately valuable.
Your first AI agent does not need to be sophisticated. It needs to handle one repetitive, time-consuming task reliably. Start small, prove the value, then add complexity.
Frequently asked questions
What is an AI agent?
A system that uses an AI model to make decisions at one or more steps in an automated workflow, producing outputs that vary based on context. Different from fixed-rule automation where outcomes are predetermined.
What is the difference between AI automation and an AI agent?
Automation follows fixed rules: if A then B. An AI agent uses a language model to decide what B should be based on the content of A. The outcome varies based on context.
Do I need to code to build an AI agent?
Not for most use cases. Make and n8n have visual builders with pre-built AI nodes connecting to Claude and GPT-4o. You need prompt engineering skills and workflow logic, not programming.