<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Anish Jhaveri</title>
    <description>The latest articles on DEV Community by Anish Jhaveri (@ajhaveri).</description>
    <link>https://dev.to/ajhaveri</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3401670%2F7106f8e4-9461-4238-9e27-fccc629f1d5f.png</url>
      <title>DEV Community: Anish Jhaveri</title>
      <link>https://dev.to/ajhaveri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ajhaveri"/>
    <language>en</language>
    <item>
      <title>I Built a Lead Qualification System in 7 Days Using n8n + AI</title>
      <dc:creator>Anish Jhaveri</dc:creator>
      <pubDate>Tue, 06 Jan 2026 03:55:10 +0000</pubDate>
      <link>https://dev.to/ajhaveri/i-built-a-lead-qualification-system-in-7-days-using-n8n-ai-1bk9</link>
      <guid>https://dev.to/ajhaveri/i-built-a-lead-qualification-system-in-7-days-using-n8n-ai-1bk9</guid>
      <description>&lt;p&gt;I just shipped an automated lead qualification system for a B2B SaaS client. The whole build took 7 days from kickoff to production deployment.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;The sales team was manually reviewing 50+ demo requests per week. About half were unqualified (students, competitors, tire-kickers). They needed automation that could:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Enrich leads with company data&lt;/li&gt;
&lt;li&gt;Score based on ICP fit
&lt;/li&gt;
&lt;li&gt;Route qualified leads to sales, others to nurture campaigns&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;n8n&lt;/strong&gt; for workflow orchestration&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clearbit&lt;/strong&gt; for company enrichment&lt;/li&gt;
&lt;li&gt;Custom scoring logic (revenue, employee count, tech stack)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HubSpot&lt;/strong&gt; for CRM integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;70% of leads auto-qualified (no human touch needed)&lt;/li&gt;
&lt;li&gt;Sales team saves 15 hours/week&lt;/li&gt;
&lt;li&gt;2x faster response time to hot leads&lt;/li&gt;
&lt;li&gt;$0 in ongoing costs (self-hosted n8n)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Architecture Decisions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Enrich Before You Score
&lt;/h3&gt;

&lt;p&gt;Don't try to score leads with just email and name. Enrich first with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Company size&lt;/li&gt;
&lt;li&gt;Revenue estimates
&lt;/li&gt;
&lt;li&gt;Tech stack&lt;/li&gt;
&lt;li&gt;Funding status&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. Simple Rules Win
&lt;/h3&gt;

&lt;p&gt;Started with complex ML scoring. Scrapped it. Went with simple if/then rules:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Company size &amp;gt; 50 employees? +10 points&lt;/li&gt;
&lt;li&gt;Uses Salesforce? +5 points&lt;/li&gt;
&lt;li&gt;Has funding? +5 points&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Always Have a Human Review Loop
&lt;/h3&gt;

&lt;p&gt;Edge cases will break your automation. Build in a "needs review" queue for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scores between 40-60 (gray area)&lt;/li&gt;
&lt;li&gt;Missing enrichment data&lt;/li&gt;
&lt;li&gt;VIP domains (investors, partners)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Full Technical Breakdown
&lt;/h2&gt;

&lt;p&gt;I wrote a detailed walkthrough with code snippets and n8n workflow screenshots here:&lt;br&gt;
👉 &lt;a href="https://slakedesign.com/log-lead-qualification.html" rel="noopener noreferrer"&gt;Lead Qualification System Breakdown&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Questions?
&lt;/h2&gt;

&lt;p&gt;Happy to answer questions about the build, n8n workflows, or automation architecture in general!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>automation</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Zapier vs. Custom Code: When to Fire Your 'Glue' Tool</title>
      <dc:creator>Anish Jhaveri</dc:creator>
      <pubDate>Mon, 05 Jan 2026 22:31:14 +0000</pubDate>
      <link>https://dev.to/ajhaveri/zapier-vs-custom-code-when-to-fire-your-glue-tool-54mb</link>
      <guid>https://dev.to/ajhaveri/zapier-vs-custom-code-when-to-fire-your-glue-tool-54mb</guid>
      <description>&lt;p&gt;I run an automation agency. Half my job is ripping out tangled Zapier messes and replacing them with clean code.&lt;br&gt;
The other half? Telling founders "No, you don't need a custom build yet, just use Zapier."&lt;/p&gt;
&lt;h2&gt;
  
  
  The "When to Switch" Rule
&lt;/h2&gt;

&lt;p&gt;If your &lt;strong&gt;monthly Zapier bill &amp;gt; $200&lt;/strong&gt; OR your &lt;strong&gt;"glue" breaks &amp;gt; 1x/week&lt;/strong&gt;, it's time to switch.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Stack (2026)
&lt;/h2&gt;

&lt;p&gt;We use &lt;strong&gt;n8n + TypeScript&lt;/strong&gt; for most enterprise automation.&lt;br&gt;
Why?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Debugging is easier.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Error handling is actual code&lt;/strong&gt;, not drag-and-drop guesses.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No "Task" limits.&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;
  
  
  Code Snippet: Phone Normalization
&lt;/h2&gt;

&lt;p&gt;Here is why code wins for data cleaning:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Example: Why code is better for cleaning phone numbers&lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;normalizePhone&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;raw&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;cleaned&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;raw&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;replace&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="se"&gt;\D&lt;/span&gt;&lt;span class="sr"&gt;/g&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;''&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cleaned&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="s2"&gt;`+1&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;cleaned&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cleaned&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="mi"&gt;11&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nx"&gt;cleaned&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;startsWith&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;1&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="s2"&gt;`+&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;cleaned&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c1"&gt;// Explicit failure&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Don't over-engineer early. But know when you've outgrown the no-code cradle.&lt;/p&gt;




&lt;p&gt;*Read the full technical breakdown and more examples on my engineering log: &lt;a href="https://slakedesign.com/log-zapier-vs-code.html" rel="noopener noreferrer"&gt;Zapier vs. Code: When to Fire Your "Glue" Tool&lt;/a&gt;&lt;/p&gt;

</description>
      <category>automation</category>
      <category>javascript</category>
      <category>webhooks</category>
      <category>saas</category>
    </item>
  </channel>
</rss>
