buildwithdew
AI Workflows·9 min read·July 21, 2026

Ship an AI lead qualification workflow with Perplexity, Claude, and Make in a weekend

TL;DR

You can ship a practical AI lead qualification workflow in a single weekend by designing a clear 3‑stage pipeline, then implementing it in Make with tools you already use. Perplexity handles live company research, Claude or GPT models apply a transparent scoring matrix, and Make writes scores and next actions straight into your CRM. The result is faster, more consistent lead triage without rebuilding your stack.

three interlocking dew‑bands pulsing data between them — triangular loop — focused kinetic — cover for: Ship an AI lead qualification workflow with Perplexity, Claude, and Make in a weekend

Key takeaways

  • Design a 3‑stage pipeline: enrich, score, route, before opening Make.
  • Use Perplexity in Stage 1 to auto‑research each lead’s company and context.
  • Encode ICP rules in a 400–600 word Claude/GPT prompt for scoring.
  • Write AI score, band, and reasoning back into CRM for clear next actions.
  • Test 10–15 leads and add a monthly feedback loop from closed‑won data.

AI lead qualification workflow Make setups can be shipped in a weekend by chaining Perplexity for research, Claude or GPT‑4/GPT‑5 for scoring, and Make for routing into your CRM with clear next actions.1610

What is an AI lead qualification workflow in Make and why does a 3‑stage pipeline work?

An AI lead qualification workflow in Make is a 3‑stage pipeline that enriches, scores, and routes inbound leads automatically into your CRM.111

AI lead qualification uses software and models to decide which prospects are worth a salesperson’s time and how fast to engage them, combining enrichment, predictive scoring, behavioural intent, and conversational logic.9 A practical workflow for 2025–2026 teams is a three‑step pipeline: capture and enrich lead data, score and prioritise against your ICP and behaviour, and route qualified leads into your CRM with clear next actions.110

In Make, that usually translates to:

  • A form or CRM trigger (Typeform, Tally, HubSpot, monday sales CRM).
  • A research stage using Perplexity or similar web‑search AI.
  • A scoring stage using Claude or OpenAI’s GPT models.
  • A routing stage writing into your CRM, Google Sheets, or both.46

If you keep each stage explicit and testable, you can ship this without rebuilding your stack or confusing your sales team.

How do you design the 3‑stage AI lead qualification pipeline before touching Make?

You design the pipeline by explicitly defining data intake, research fields, scoring rubric, thresholds, and routing actions before you open Make.611

Start on paper or in a doc rather than in Make:

  1. Stage 1 – Capture & enrich
    Decide what your form or intake already captures (name, email, company, website, role, budget) and what you want AI to enrich: industry, headcount, tech stack, recent funding, and relevant news.15
    Perplexity (or a similar web‑search AI) can research the company website and public sources to append firmographics and context to each lead record automatically.56

  2. Stage 2 – Score & prioritise
    Build a simple ICP‑based scoring matrix. Assign points for firmographic fit (industry, size, region), role seniority, and behaviour (pages visited, form completeness, email engagement).610
    Modern teams weight behavioural signals higher because behavioural data is roughly 3× more predictive than firmographics for qualification quality.2

  3. Stage 3 – Route & action
    Define score bands and outcomes before any automation: e.g. ≥80 = sales‑ready with immediate routing to a rep, 50–79 = marketing‑qualified with nurture, <50 = long‑term nurture or disqualified.101
    Document exactly what happens in CRM for each band: owner, SLA, sequence, and whether a meeting link is automatically sent.

You want one page that any sales leader can read and challenge. Avoid opaque “clever scores” no one can explain; clarity is more important than sophistication.5

Sample 0–100 scoring matrix for service businesses

Here’s a realistic starting matrix for a B2B service firm.

DimensionPoints rangeExample rule
Industry fit0–25Core verticals 25, adjacent 10, out‑of‑scope 0
Company size0–15Target 10–200 staff 15, 5–10 or 200–500 staff 8
Role / seniority0–20Founder/VP 20, manager 10, non‑decision maker 0
Behavioural intent0–25Pricing page + form 25, blog only 5
Budget / timeline0–10Budget declared + <60‑day timeline 10, unknown 4
Disqualifiers−20Student, competitor, clear misfit

Leads scoring 80+ are “sales‑ready” and should go straight to a rep; 50–79 enter a structured nurture motion.10

How should you write and test the AI scoring prompt for Claude or GPT?

You write a 400–600‑word prompt encoding your ICP, disqualifiers, scoring rubric, and output format, then test it against at least ten real past enquiries.6

Most of the heavy lifting happens in your system prompt for Claude or GPT:

  • Describe your product/service and ideal customer profile in concrete terms.
  • Specify firmographic ranges, geographies, and explicit disqualifiers.
  • Embed your scoring matrix (dimensions, point ranges, bands).
  • Ask for a structured JSON response with: numeric score, band label, reasoning, and recommended next action for sales.6

According to specialist guidance, “a well‑written qualification prompt is usually 400–600 words” and should be tested on “ten real past enquiries before going live” to catch false positives and negatives.6 Use historical leads you know were good, mediocre, and bad, and see whether the AI’s scores align.

During testing:

  • Compare scores against closed‑won vs closed‑lost outcomes, not just gut feel.9
  • Adjust behavioural weighting if high‑intent leads score too low.
  • Keep the rubric comprehensible; sales should be able to explain why a lead scored 82.

Treat this scoring logic as a living asset. Without a feedback loop from actual deal outcomes, AI scoring will decay over time.29

How do you use Perplexity in Stage 1 to enrich leads before scoring?

You use Perplexity as a research step that turns raw form fields into a richer profile: industry, size, tech stack, and recent signals appended to each lead record.56

In the Stage 1 Make scenario:

  • Trigger: New form submission or new lead in CRM (e.g. monday sales CRM, HubSpot).410
  • Lookup: Take the company name and website from the lead and send them to Perplexity via an HTTP or custom app module.
  • Research: Ask Perplexity to summarise key facts: industry, approximate headcount, relevant products, whether they sell online, and any recent events (funding, launch, hiring).56
  • Write‑back: Append the researched fields into your lead record (e.g. Google Sheets enrichment columns or CRM custom fields).6

A 2026 Make + Perplexity workflow example uses Google Sheets as a lead database with two tabs: Raw Leads and Qualified Leads. The scenario searches for unprocessed rows, sends company data to Perplexity, passes the research to GPT‑4 with your criteria, then moves only “Qualified” and “Needs Review” companies into the clean sheet.6

The same pattern works with live inbound form data. The important point is that Stage 1 gives your scoring model a richer, more recent context than the form alone.111

How do you build the full AI lead qualification workflow in Make in a weekend?

You build three Make scenarios (or one with three segments): intake + research, scoring, and routing, each testable end‑to‑end.47

A realistic weekend plan:

Day 1 morning – Intake & data hygiene

  • Connect your form (Typeform, Tally, Webflow, etc.) or CRM “new lead” trigger to Make.4
  • Standardise fields: company name, email, website, role, source. Data hygiene and freshness are critical; stale or messy data will degrade AI scoring.210
  • Add basic validation (email deliverability, phone format) using existing Make modules or third‑party APIs.35

Day 1 afternoon – Perplexity research scenario

  • Add a Perplexity module (HTTP or app) to call web‑search AI with company details.6
  • Map the response into enrichment fields: industry, size band, online/offline, notable signals.56
  • Save the enriched lead into a staging sheet or CRM record.

Day 2 morning – Claude / GPT scoring scenario

  • Connect Claude or OpenAI via Make’s AI modules.46
  • Paste your tested 400–600‑word scoring prompt and pass in:
    • Original form fields
    • Perplexity research summary
    • Any behavioural data (pages viewed, UTM, email opens) if available.
  • Ask for: numeric score (0–100), band label, reasoning, and suggested next action.
  • Log everything to a Google Sheet “Qualified Leads” tab so you can eyeball results.67

Day 2 afternoon – Routing into CRM and next actions

  • Add a router step in Make based on the score and band.110
  • For sales‑ready (≥80):
    • Create/Update lead in CRM with status = “Sales Ready”.
    • Assign owner, add tasks, and optionally trigger a Slack alert.45
  • For marketing‑qualified (50–79):
    • Tag “MQL – AI” in CRM and enrol in a nurture sequence.10
  • For nurture / disqualified (<50):
    • Tag appropriately and keep them out of high‑touch flows.

Make is built for exactly this orchestration: from a form or CRM trigger, call AI for research and scoring, then push structured outcomes into Sheets or CRM with tags or status fields such as Hot/Warm/Cold.48

What CRM fields and actions should you configure for this workflow?

You configure explicit fields for score, band, and AI notes, then attach automation rules to each band for follow‑up.10

In monday sales CRM or similar systems, your AI lead qualification workflow should write to:

  • AI Score (0–100) – numeric field.
  • AI Band – dropdown (Sales‑Ready, MQL, Nurture, Disqualified).
  • AI Notes – short reasoning (visible to reps).10
  • Source – to track which funnel entry produced the lead.

Routing rules:

  • Sales‑Ready: Auto‑assign to an SDR/AE queue, create a task, and trigger a meeting link or personalised intro email.1011
  • MQL: Route into marketing automation with content tuned to their segment.
  • Nurture: Add to low‑frequency campaigns, avoid immediate sales contact.

Common practice is to define thresholds like ≥80 = sales‑ready, 50–79 = marketing‑qualified, <50 = nurture and treat those as explicit CRM states.101

How do you test and ship this AI lead qualification workflow safely?

You run structured dry‑runs with 10–15 hypothetical leads, validate routing for each band, and check mobile form completion rates before declaring it live.8

Before production:

  • Form UX: Test your intake form on desktop and mobile. Typical best practice is to track completion rate and aim for above 70%; if people abandon, you probably ask too many questions.8
  • Scenario sanity checks: Run 10–15 hypothetical leads through the full flow, including edge cases and obvious misfits.8
  • Routing validation: Confirm tags, owners, emails, and booking links for at least five profiles across all paths (Sales‑Ready, MQL, Nurture, Disqualified).8
  • Sync cadence: Run CRM sync every 15 minutes rather than daily to keep data fresh for AI scoring.2

Once live, add a monthly feedback loop: pull closed‑won, stalled, and rescued deals, compare their AI scores, and adjust the rubric and thresholds based on real revenue outcomes.92 That’s the difference between a one‑off experiment and a dependable system.

How does this Make‑based stack compare to “rebuild your funnel” AI platforms?

A focused Perplexity + Claude/GPT + Make setup gives you most of the value of dedicated AI lead platforms without replacing your CRM.

ApproachProsCons
Make + Perplexity + Claude/GPTUses existing forms & CRM; flexible; fast to ship in a weekendRequires thoughtful prompt & scenario design
All‑in‑one AI lead platformsPrebuilt UX, analytics, chat widgetsOften force new forms/CRM; heavier rollout
Manual scoring in CRMSimple, no new toolsSlow, subjective, hard to scale

For teams aiming at fast, credible sales wins this quarter without a stack rebuild, the Make‑based workflow is the pragmatic choice: it adds intelligence where you already work and leaves your CRM as the system of record.110

Frequently asked questions

What is an AI lead qualification workflow in Make?+

An AI lead qualification workflow in Make is a 3‑stage pipeline that enriches, scores, and routes inbound leads automatically into your CRM. Stage 1 uses tools like Perplexity to research each lead’s company and context. Stage 2 applies a scoring matrix via Claude or GPT models. Stage 3 writes scores, tags, and next actions back into your CRM so sales sees clear priorities immediately.[1][6][10]

How do I design a simple AI lead qualification workflow with Make?+

Use a three‑stage design: capture and enrich, score and prioritise, then route into CRM. In Make, connect your form or CRM trigger, call Perplexity for company research, then pass enriched data to Claude or GPT with a 400–600‑word prompt that encodes your ICP and scoring rubric. Finally, route based on thresholds like ≥80 for sales‑ready, 50–79 for marketing‑qualified, and <50 for nurture.[1][6][10]

What should my AI scoring rubric include for lead qualification?+

Start with a doc or spreadsheet defining your ideal customer, disqualifiers, and a 0–100 scoring matrix with clear bands and actions. Weight behavioural signals—pages viewed, form completion, email engagement—more heavily because behaviour is roughly 3× more predictive than firmographics. Then translate that matrix into the AI prompt you use with Claude or GPT inside your Make scenario so the model outputs score, band, and reasoning.[2][6]

How can Perplexity improve my lead qualification workflow?+

Perplexity acts as a research agent in Stage 1. When a new lead arrives, Make sends the company name and website to Perplexity, which returns industry, size band, tech stack hints, and recent signals like funding or launches. You append this enrichment to the lead record, then pass it to your scoring model. This gives Claude or GPT a richer context than the form alone without manual research.[5][6]

How do I test and validate an AI lead qualification workflow built in Make?+

Before going live, test at least 10–15 leads end‑to‑end across all bands. Check that Sales‑Ready, MQL, and Nurture routing behaves as expected in your CRM and that completion rates stay above roughly 70% on your intake form. Use closed‑won and lost deals to see whether AI scores align with outcomes, then adjust thresholds and prompt wording. Finally, set a monthly review loop so the system keeps learning.[2][8][9]

Sources

  1. How to Automate AI Lead Qualification: A 2026 Guidepipeline.zoominfo.com
  2. How to Automate Lead Qualification with AI (No Manual Scoring)fwdelta.com
  3. Build AI Lead Qualification Workflows with n8n - TechBasicstechbasics.online
  4. This AI Agent Scores Every Lead Automatically — So You Know Who to Call Firstyoutube.com
  5. AI Lead Qualification: How to Score, Research, and Route Inbound ...metacto.com
  6. How to Build an AI Lead Qualification Agent for Your Service Businessquantumflowautomation.ai
  7. Build an AI Lead Qualifier That Works 24/7youtube.com
  8. Build the Lead Qualifier | AI Course L027youtube.com
  9. Lead Qualification with AI: A Step-by-Step Guide for B2B Saleshoomanlabs.com
  10. How to use AI for lead generation: 7 strategies ...monday.com
#ai-workflows#lead-qualification#make-com#sales-automation

Keep reading

a single dew-stream branching into many smaller glowing threads then recombining into one reservoir — branching network — calm deliberate — cover for: Build a weekly AI content ops workflow with Notion AI and Make
AI Workflows·9 min read

Build a weekly AI content ops workflow with Notion AI and Make

This piece shows how to turn a chaotic multi-tool content routine into a weekly AI content ops workflow anchored in Notion. One source video feeds a structured pipeline: briefs, drafts, repurposed assets, scheduling, and measurement. Make orchestrates the automation, Notion AI handles briefs and drafting, and Buffer manages distribution. The focus is pragmatic: minimal tooling, clear states, and feedback loops grounded in 2026 creator and content ops trends.

Jul 18, 2026
three interlocking dew‑forms channeling into a single downward stream — triangular convergence — grounded efficient — cover for: Design a 3-agent AI research stack with Perplexity, Claude Projects, and Notion
AI Workflows·8 min read

Design a 3-agent AI research stack with Perplexity, Claude Projects, and Notion

Solo consultants can build a practical 3-agent ai research workflow stack: Perplexity for open‑web research, Claude Projects for structured analysis, and Notion AI for briefs and deliverables. n8n then automates handoffs once the manual process is stable. This setup replaces most VA‑level research and documentation work for around $90/month, turning client questions into billable reports without hiring junior analysts.

Jul 16, 2026
two interlocking dew-streams flowing into a shared luminous basin — gentle convergence — calm precise — cover for: Ship a Gmail‑to‑Notion AI email triage workflow with Claude and Make
AI Workflows·10 min read

Ship a Gmail‑to‑Notion AI email triage workflow with Claude and Make

This piece walks through a grounded, 2026-ready AI email triage workflow: Gmail ingestion, Claude for classification and summaries, Make or n8n for rules, and Notion as the triage queue and audit log. The focus is on multi-step, human-in-the-loop orchestration rather than autonomous agents, with clear prompts, decision rules, and cost considerations for professionals and solopreneurs.

Jul 15, 2026