<?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: Bhagvat Meena</title>
    <description>The latest articles on DEV Community by Bhagvat Meena (@bhagvat_meena_9f123a2f2d5).</description>
    <link>https://dev.to/bhagvat_meena_9f123a2f2d5</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4014704%2Fbbdddaf1-1368-42ef-b35e-1c05204854f0.jpg</url>
      <title>DEV Community: Bhagvat Meena</title>
      <link>https://dev.to/bhagvat_meena_9f123a2f2d5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bhagvat_meena_9f123a2f2d5"/>
    <language>en</language>
    <item>
      <title>I built a static AI tools directory with 1,638 auto-generated pages — here's the full technical breakdown</title>
      <dc:creator>Bhagvat Meena</dc:creator>
      <pubDate>Sat, 04 Jul 2026 08:13:14 +0000</pubDate>
      <link>https://dev.to/bhagvat_meena_9f123a2f2d5/i-built-a-static-ai-tools-directory-with-1638-auto-generated-pages-heres-the-full-technical-25m2</link>
      <guid>https://dev.to/bhagvat_meena_9f123a2f2d5/i-built-a-static-ai-tools-directory-with-1638-auto-generated-pages-heres-the-full-technical-25m2</guid>
      <description>&lt;p&gt;I've been building AsmiAI (asmiai.xyz) for the past 6 months — a fully static AI tools directory with 236 reviewed tools, 1,638 side-by-side comparison pages, and a free AI chat advisor. Zero database, zero framework, free hosting.&lt;/p&gt;

&lt;p&gt;Here's exactly how it works technically.&lt;/p&gt;

&lt;h2&gt;
  
  
  The build system
&lt;/h2&gt;

&lt;p&gt;Everything is generated from JSON data files at build time using Node.js and Python. One &lt;code&gt;./build-asmiai.sh&lt;/code&gt; command generates 2,373 pages in under 2 minutes and deploys to Cloudflare Pages.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Each tool is a JSON file in data/tools/&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;
  &lt;span class="s2"&gt;"name"&lt;/span&gt;: &lt;span class="s2"&gt;"ChatGPT"&lt;/span&gt;,
  &lt;span class="s2"&gt;"slug"&lt;/span&gt;: &lt;span class="s2"&gt;"chatgpt"&lt;/span&gt;,
  &lt;span class="s2"&gt;"category"&lt;/span&gt;: &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"ai-chatbots"&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;,
  &lt;span class="s2"&gt;"pricing"&lt;/span&gt;: &lt;span class="s2"&gt;"Free / &lt;/span&gt;&lt;span class="nv"&gt;$20&lt;/span&gt;&lt;span class="s2"&gt;/mo"&lt;/span&gt;,
  &lt;span class="s2"&gt;"free_plan"&lt;/span&gt;: &lt;span class="nb"&gt;true&lt;/span&gt;,
  &lt;span class="s2"&gt;"rating"&lt;/span&gt;: 4.9
&lt;span class="o"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Auto-generated comparison pages
&lt;/h2&gt;

&lt;p&gt;The most interesting part — 1,638 comparison pages like &lt;code&gt;/compare/chatgpt-vs-claude/&lt;/code&gt; are generated automatically from the tool data. Every tool is compared against every other tool in the same category.&lt;/p&gt;

&lt;p&gt;The generator computes all valid pairs, skips reverse duplicates, and generates enriched HTML with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pricing comparison table&lt;/li&gt;
&lt;li&gt;Feature breakdown&lt;/li&gt;
&lt;li&gt;Who should choose which&lt;/li&gt;
&lt;li&gt;Quick verdict&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  AI chat advisor
&lt;/h2&gt;

&lt;p&gt;A floating chat widget on every page powered by Groq (Llama 3.1). The system prompt is grounded in all 236 tools — the AI can only recommend tools that actually exist in the directory.&lt;/p&gt;

&lt;p&gt;The tricky part: Groq free tier is 6,000 TPM. With 236 tools in the system prompt (~2,500 tokens), I only have room for 2-3 requests per minute. Solution: compact the tool context format from verbose pipe-delimited to just &lt;code&gt;Name (category, free/paid) slug&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  LLM SEO
&lt;/h2&gt;

&lt;p&gt;Built for AI discoverability from the start:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;llms.txt&lt;/code&gt; — machine-readable site summary&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;llms-full.txt&lt;/code&gt; — complete tool inventory&lt;/li&gt;
&lt;li&gt;Public JSON API at &lt;code&gt;/api/tools.json&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;robots.txt&lt;/code&gt; allows&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>opensource</category>
      <category>seo</category>
    </item>
  </channel>
</rss>
