<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Automation on</title><link>https://augmentedresilience.com/tags/automation/</link><description>Recent content in Automation on</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Mon, 20 Apr 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://augmentedresilience.com/tags/automation/index.xml" rel="self" type="application/rss+xml"/><item><title>If a Script Can Do It, Don't Ask the LLM</title><link>https://augmentedresilience.com/posts/augmented-resilience-posts/if-a-script-can-do-it-dont-ask-the-llm/</link><pubDate>Mon, 20 Apr 2026 00:00:00 +0000</pubDate><guid>https://augmentedresilience.com/posts/augmented-resilience-posts/if-a-script-can-do-it-dont-ask-the-llm/</guid><description>&lt;h1 id="if-a-script-can-do-it-dont-ask-the-llm">If a Script Can Do It, Don&amp;rsquo;t Ask the LLM&lt;/h1>
&lt;p>When your AI system is spending inference tokens to parse date fields, strip PDF formatting artifacts, or convert file syntax — that is not an AI problem. That is an architecture problem. Code can handle all of those tasks deterministically, faster, cheaper, and more accurately than any language model. If your token bill is high and your outputs are inconsistent, the problem is usually not the model. It is what you are handing the model.&lt;/p></description><content>&lt;h1 id="if-a-script-can-do-it-dont-ask-the-llm">If a Script Can Do It, Don&amp;rsquo;t Ask the LLM&lt;/h1>
&lt;p>When your AI system is spending inference tokens to parse date fields, strip PDF formatting artifacts, or convert file syntax — that is not an AI problem. That is an architecture problem. Code can handle all of those tasks deterministically, faster, cheaper, and more accurately than any language model. If your token bill is high and your outputs are inconsistent, the problem is usually not the model. It is what you are handing the model.&lt;/p>
&lt;p>PAI treats every token as a resource allocation decision. If a script can do it, a script does it. The model gets the part that actually requires reasoning.&lt;/p>
&lt;hr>
&lt;p>&lt;img src="https://augmentedresilience.com/images/ar-post-structural-tax.png" alt="Image Description">&lt;/p>
&lt;h2 id="the-structural-tax">The Structural Tax&lt;/h2>
&lt;p>Most AI workflows are built around convenience. You have a PDF — you upload it. You have a session log — you paste it in. You have a directory of files — you point the model at the folder. The model figures it out.&lt;/p>
&lt;p>That approach works well enough for one-off tasks. It breaks down at scale, in recurring workflows, and anywhere precision matters.&lt;/p>
&lt;p>Raw PDFs carry structural overhead that has nothing to do with the content you care about: page headers, footers, column artifacts, encoding noise, redundant whitespace, and metadata that made sense in the original layout but becomes garbage in a text stream. A language model consuming that document is spending a meaningful portion of its context window on formatting debris. That cost compounds across every document in every workflow.&lt;/p>
&lt;p>The same pattern shows up everywhere. Raw session transcripts contain tool call metadata, timestamps, and infrastructure details that are irrelevant to extracting what was learned. Full database contents are too large to fit in context, so the model guesses at relevance instead of reasoning over curated results. Obsidian-flavored Markdown with custom image syntax breaks rendering in any system that was not built for it.&lt;/p>
&lt;p>Every one of these is a structural problem. None of them require intelligence to solve. They require code.&lt;/p>
&lt;hr>
&lt;p>&lt;img src="https://augmentedresilience.com/images/ar-post-preparation-layer.png" alt="Image Description">&lt;/p>
&lt;h2 id="what-pai-does-instead">What PAI Does Instead&lt;/h2>
&lt;p>PAI operates on a two-phase model: scripts handle structure, the LLM handles reasoning. The handoff only happens after the mechanical work is done.&lt;/p>
&lt;p>A few examples of how this plays out in practice.&lt;/p>
&lt;p>&lt;strong>PDF to Markdown conversion.&lt;/strong> When I ingest Oracle HCM documentation — dense, multi-column PDFs that can run hundreds of pages — nothing goes to the LLM in PDF form. A Python script converts the document to clean Markdown first, stripping formatting artifacts and preserving the content hierarchy. The model sees structured text, not a scanned layout. The difference in token consumption is substantial, and the difference in output quality is larger still.&lt;/p>
&lt;p>&lt;strong>Session harvesting.&lt;/strong> Claude Code sessions produce raw JSON transcripts containing every tool call, every response, and a lot of infrastructure noise. &lt;code>SessionHarvester.ts&lt;/code> parses those transcripts before any analysis happens. It extracts structured learning signals — what worked, what failed, what decisions were made — and writes them to a clean format. The LLM receives a curated summary, not a raw dump.&lt;/p>
&lt;p>&lt;strong>Activity parsing.&lt;/strong> &lt;code>ActivityParser.ts&lt;/code> does the same for daily activity logs: reads session files, extracts structured change records, and produces a clean representation of what changed in the PAI system. No model inference required until there is something worth reasoning about.&lt;/p>
&lt;p>&lt;strong>Knowledge base search.&lt;/strong> The cybersecurity knowledge base holds over fifty books worth of content in a local PostgreSQL vector store. When a query comes in, &lt;code>CyberSecKB.ts&lt;/code> runs a similarity search and returns the most relevant passages. The LLM reasons over that curated result set — not the entire library. Retrieval is deterministic. Reasoning is probabilistic. They are separate steps by design.&lt;/p>
&lt;p>&lt;strong>Image pipeline.&lt;/strong> Obsidian uses &lt;code>![Image Description](/images/filename.png)&lt;/code> syntax for embedded images. Hugo uses standard Markdown. &lt;code>images.py&lt;/code> handles the conversion and copies files to the correct static directory at publish time. No LLM is involved at any point in that pipeline. It is a string transformation and a file copy — exactly the kind of task code should own.&lt;/p>
&lt;hr>
&lt;h2 id="the-boundary-is-the-design">The Boundary Is the Design&lt;/h2>
&lt;p>&lt;img src="https://augmentedresilience.com/images/ar-post-two-phase-architecture-oracle.png" alt="Image Description">&lt;/p>
&lt;p>The two-phase pattern is not a workaround. It is the architecture.&lt;/p>
&lt;p>Every AI workflow has a boundary between deterministic computation and probabilistic reasoning. The question is where you draw it. Drawing it too early means the model is doing structural work it is not suited for: burning tokens on format conversion, wasting context on irrelevant metadata, producing inconsistent output because the input was inconsistent. Drawing it correctly means the model receives exactly what it needs to do the work only it can do.&lt;/p>
&lt;p>This is a different problem than the one prompt engineering was designed to solve. Prompt engineering is about communicating intent clearly to a model. The code-first pattern is about not asking the model to earn the right to see your data by first organizing it. That work should already be done.&lt;/p>
&lt;p>The scripts in PAI are not wrappers around LLM calls. They are the preparation layer — the part of the system that exists specifically so the model does not have to deal with structure. Once that layer is in place, the model&amp;rsquo;s job gets narrower and cleaner. It reasons. It synthesizes. It makes judgment calls. It does not convert file formats.&lt;/p>
&lt;hr>
&lt;h2 id="the-result">The Result&lt;/h2>
&lt;p>When the pipeline is built correctly, token consumption goes down and output quality goes up — not because the model improved, but because the input did. The model is working with clean data in a consistent format, scoped to exactly what is relevant. The structural variables are removed before inference begins.&lt;/p>
&lt;p>That is the return on building the prep layer. Less waste. More signal. A model that can focus on the part of the problem that actually requires a model.&lt;/p></content></item><item><title>Building an AI Conference Directory That Populates Itself</title><link>https://augmentedresilience.com/posts/augmented-resilience-posts/building-an-ai-conference-directory-that-populates-itself/</link><pubDate>Sat, 14 Mar 2026 00:00:00 +0000</pubDate><guid>https://augmentedresilience.com/posts/augmented-resilience-posts/building-an-ai-conference-directory-that-populates-itself/</guid><description>&lt;h2 id="the-problem-ai-conferences-are-everywhere-and-nowhere">The Problem: AI Conferences Are Everywhere and Nowhere&lt;/h2>
&lt;p>If you&amp;rsquo;ve ever tried to find a comprehensive list of upcoming AI conferences, you know the pain. There&amp;rsquo;s no single source. AAAI has their page. NeurIPS has theirs. ICML posts deadlines on OpenReview. Half the emerging summits only exist on LinkedIn event pages or buried in Reddit threads.&lt;/p>
&lt;p>I wanted a simple, searchable directory of AI conferences — one site where I could see what&amp;rsquo;s coming up, filter by topic, and get the key details. But I didn&amp;rsquo;t want to manually curate it. I&amp;rsquo;ve seen too many &amp;ldquo;awesome lists&amp;rdquo; on GitHub that are lovingly maintained for three months and then abandoned.&lt;/p></description><content>&lt;h2 id="the-problem-ai-conferences-are-everywhere-and-nowhere">The Problem: AI Conferences Are Everywhere and Nowhere&lt;/h2>
&lt;p>If you&amp;rsquo;ve ever tried to find a comprehensive list of upcoming AI conferences, you know the pain. There&amp;rsquo;s no single source. AAAI has their page. NeurIPS has theirs. ICML posts deadlines on OpenReview. Half the emerging summits only exist on LinkedIn event pages or buried in Reddit threads.&lt;/p>
&lt;p>I wanted a simple, searchable directory of AI conferences — one site where I could see what&amp;rsquo;s coming up, filter by topic, and get the key details. But I didn&amp;rsquo;t want to manually curate it. I&amp;rsquo;ve seen too many &amp;ldquo;awesome lists&amp;rdquo; on GitHub that are lovingly maintained for three months and then abandoned.&lt;/p>
&lt;p>What I wanted was a system that populates itself.&lt;/p>
&lt;p>So I built one. And with Claude Code running through my PAI system, the whole pipeline — from search to database to website — came together over a few focused sessions.&lt;/p>
&lt;p>Here&amp;rsquo;s the full story.&lt;/p>
&lt;hr>
&lt;h2 id="the-architecture-three-layers-zero-manual-data-entry">The Architecture: Three Layers, Zero Manual Data Entry&lt;/h2>
&lt;p>The final system has three layers, each handling a distinct responsibility:&lt;/p>
&lt;pre tabindex="0">&lt;code>SearXNG (search engine)
→ conference_tracker.py (discovery)
→ Airtable (database)
→ fetch-events.mjs (build-time fetch)
→ React + Vite site on Netlify
&lt;/code>&lt;/pre>&lt;p>Each layer is independently useful, loosely coupled, and replaceable. Let&amp;rsquo;s walk through them.&lt;/p>
&lt;hr>
&lt;h2 id="layer-1-the-tracker--finding-conferences-automatically">Layer 1: The Tracker — Finding Conferences Automatically&lt;/h2>
&lt;p>The foundation is a Python script called &lt;code>conference_tracker.py&lt;/code>. Its job is simple: search the web for AI conferences and store what it finds.&lt;/p>
&lt;h3 id="search-searxng-instead-of-google">Search: SearXNG Instead of Google&lt;/h3>
&lt;p>Rather than hitting the Google API (with its quotas and billing), I use &lt;a href="https://github.com/searxng/searxng" target="_blank" rel="noopener noreferrer">SearXNG&lt;/a>
— an open-source, self-hosted meta-search engine. It aggregates results from Google, Bing, DuckDuckGo, and others without API keys or rate limits.&lt;/p>
&lt;p>The tracker runs a curated list of search queries defined in &lt;code>config.yaml&lt;/code>:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#f92672">search_queries&lt;/span>:
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;AI conference 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;artificial intelligence conference 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;machine learning conference 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;NeurIPS 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;ICML 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;AAAI 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;AI summit 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;deep learning conference 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;computer vision conference 2026 CVPR&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> - &lt;span style="color:#e6db74">&amp;#34;natural language processing conference 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Each query returns up to 10 results. The tracker extracts the title, URL, and snippet from each result, deduplicates against what&amp;rsquo;s already in the database, and stores new finds.&lt;/p>
&lt;h3 id="storage-airtable-as-the-source-of-truth">Storage: Airtable as the Source of Truth&lt;/h3>
&lt;p>Why Airtable? Because it&amp;rsquo;s a real database with an API, but it also has a spreadsheet-like UI for manual review. When you&amp;rsquo;re building a pipeline that discovers data automatically, you want a way to eyeball the results and clean up noise — and Airtable is perfect for that.&lt;/p>
&lt;p>The tracker writes five fields per record: &lt;code>title&lt;/code>, &lt;code>websiteUrl&lt;/code>, &lt;code>description&lt;/code>, &lt;code>Source Query&lt;/code>, and &lt;code>Date Found&lt;/code>. That&amp;rsquo;s it. Just the raw discovery data. The structured details come later.&lt;/p>
&lt;p>The deduplication is URL-based — normalized and lowercased. If we&amp;rsquo;ve already stored &lt;code>neurips.cc/2026&lt;/code>, we don&amp;rsquo;t store it again even if it appears in a different search query.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-python" data-lang="python">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">def&lt;/span> &lt;span style="color:#a6e22e">extract_conference_info&lt;/span>(result, source_query):
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">return&lt;/span> {
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#e6db74">&amp;#34;title&amp;#34;&lt;/span>: result[&lt;span style="color:#e6db74">&amp;#34;title&amp;#34;&lt;/span>][:&lt;span style="color:#ae81ff">200&lt;/span>],
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#e6db74">&amp;#34;websiteUrl&amp;#34;&lt;/span>: result[&lt;span style="color:#e6db74">&amp;#34;url&amp;#34;&lt;/span>],
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#e6db74">&amp;#34;description&amp;#34;&lt;/span>: result[&lt;span style="color:#e6db74">&amp;#34;snippet&amp;#34;&lt;/span>][:&lt;span style="color:#ae81ff">1000&lt;/span>],
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#e6db74">&amp;#34;Source Query&amp;#34;&lt;/span>: source_query,
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#e6db74">&amp;#34;Date Found&amp;#34;&lt;/span>: datetime&lt;span style="color:#f92672">.&lt;/span>now(timezone&lt;span style="color:#f92672">.&lt;/span>utc)&lt;span style="color:#f92672">.&lt;/span>strftime(&lt;span style="color:#e6db74">&amp;#34;%Y-%m-&lt;/span>&lt;span style="color:#e6db74">%d&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>),
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> }
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>After one run, we had 87 unique conference records. The real stuff — NeurIPS, ICML, CVPR, AAAI — alongside smaller but interesting events like the Quantum AI and NLP Conference, Deep Learning Indaba, and the Wharton Human-AI Research summit.&lt;/p>
&lt;hr>
&lt;h2 id="layer-2-the-website--react--vite-on-netlify">Layer 2: The Website — React + Vite on Netlify&lt;/h2>
&lt;p>The directory itself is a React app built with Vite and deployed on Netlify. It&amp;rsquo;s a single-page app with search, tag filtering, and individual event pages.&lt;/p>
&lt;p>The key architectural decision: &lt;strong>data is fetched at build time, not runtime.&lt;/strong> A prebuild script (&lt;code>fetch-events.mjs&lt;/code>) pulls conference data from the database and writes it to a &lt;code>data.ts&lt;/code> file that Vite bundles into the site. This means:&lt;/p>
&lt;ul>
&lt;li>No API keys exposed in the browser&lt;/li>
&lt;li>No CORS issues&lt;/li>
&lt;li>Instant page loads (data is already in the bundle)&lt;/li>
&lt;li>The site works even if Airtable is temporarily down&lt;/li>
&lt;/ul>
&lt;p>The prebuild hook in &lt;code>package.json&lt;/code> makes this automatic:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-json" data-lang="json">&lt;span style="display:flex;">&lt;span>{
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#f92672">&amp;#34;scripts&amp;#34;&lt;/span>: {
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#f92672">&amp;#34;fetch-events&amp;#34;&lt;/span>: &lt;span style="color:#e6db74">&amp;#34;bun scripts/fetch-events.mjs&amp;#34;&lt;/span>,
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#f92672">&amp;#34;prebuild&amp;#34;&lt;/span>: &lt;span style="color:#e6db74">&amp;#34;bun scripts/fetch-events.mjs&amp;#34;&lt;/span>,
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#f92672">&amp;#34;build&amp;#34;&lt;/span>: &lt;span style="color:#e6db74">&amp;#34;vite build&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> }
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>}
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Every time Netlify builds the site, it automatically fetches the latest data from Airtable. Fresh data on every deploy.&lt;/p>
&lt;hr>
&lt;h2 id="the-middleman-problem-cutting-google-sheets">The Middleman Problem: Cutting Google Sheets&lt;/h2>
&lt;p>Here&amp;rsquo;s where the story gets interesting.&lt;/p>
&lt;p>The original pipeline had an extra step: Airtable → Google Sheets → website. The &lt;code>fetch-events.mjs&lt;/code> script was pulling from a published Google Sheet CSV. Why? Because when I first prototyped the site, I started with a spreadsheet. It was quick and easy.&lt;/p>
&lt;p>But once the conference tracker was writing directly to Airtable, Google Sheets became a middleman with no purpose. Data had to be synced from Airtable to Sheets (manually or via Zapier), and that sync was another thing that could break.&lt;/p>
&lt;p>The fix was straightforward: teach &lt;code>fetch-events.mjs&lt;/code> to talk directly to the Airtable API.&lt;/p>
&lt;h3 id="airtables-rest-api">Airtable&amp;rsquo;s REST API&lt;/h3>
&lt;p>The Airtable API is clean. A single GET request returns records as JSON:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-javascript" data-lang="javascript">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">const&lt;/span> &lt;span style="color:#a6e22e">url&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#66d9ef">new&lt;/span> &lt;span style="color:#a6e22e">URL&lt;/span>(&lt;span style="color:#e6db74">`https://api.airtable.com/v0/&lt;/span>&lt;span style="color:#e6db74">${&lt;/span>&lt;span style="color:#a6e22e">baseId&lt;/span>&lt;span style="color:#e6db74">}&lt;/span>&lt;span style="color:#e6db74">/&lt;/span>&lt;span style="color:#e6db74">${&lt;/span>&lt;span style="color:#a6e22e">tableId&lt;/span>&lt;span style="color:#e6db74">}&lt;/span>&lt;span style="color:#e6db74">`&lt;/span>);
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">const&lt;/span> &lt;span style="color:#a6e22e">resp&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#66d9ef">await&lt;/span> &lt;span style="color:#a6e22e">fetch&lt;/span>(&lt;span style="color:#a6e22e">url&lt;/span>.&lt;span style="color:#a6e22e">toString&lt;/span>(), {
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#a6e22e">headers&lt;/span>&lt;span style="color:#f92672">:&lt;/span> { &lt;span style="color:#a6e22e">Authorization&lt;/span>&lt;span style="color:#f92672">:&lt;/span> &lt;span style="color:#e6db74">`Bearer &lt;/span>&lt;span style="color:#e6db74">${&lt;/span>&lt;span style="color:#a6e22e">pat&lt;/span>&lt;span style="color:#e6db74">}&lt;/span>&lt;span style="color:#e6db74">`&lt;/span> },
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>});
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">const&lt;/span> &lt;span style="color:#a6e22e">data&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#66d9ef">await&lt;/span> &lt;span style="color:#a6e22e">resp&lt;/span>.&lt;span style="color:#a6e22e">json&lt;/span>();
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">// data.records = [{ id, fields: { title, date, ... } }]
&lt;/span>&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>The one gotcha: Airtable paginates at 100 records. You need to follow the &lt;code>offset&lt;/code> token:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-javascript" data-lang="javascript">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">async&lt;/span> &lt;span style="color:#66d9ef">function&lt;/span> &lt;span style="color:#a6e22e">fetchFromAirtable&lt;/span>(&lt;span style="color:#a6e22e">pat&lt;/span>, &lt;span style="color:#a6e22e">baseId&lt;/span>, &lt;span style="color:#a6e22e">tableId&lt;/span>) {
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">const&lt;/span> &lt;span style="color:#a6e22e">allRecords&lt;/span> &lt;span style="color:#f92672">=&lt;/span> [];
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">let&lt;/span> &lt;span style="color:#a6e22e">offset&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#66d9ef">null&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">do&lt;/span> {
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">const&lt;/span> &lt;span style="color:#a6e22e">url&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#66d9ef">new&lt;/span> &lt;span style="color:#a6e22e">URL&lt;/span>(&lt;span style="color:#e6db74">`https://api.airtable.com/v0/&lt;/span>&lt;span style="color:#e6db74">${&lt;/span>&lt;span style="color:#a6e22e">baseId&lt;/span>&lt;span style="color:#e6db74">}&lt;/span>&lt;span style="color:#e6db74">/&lt;/span>&lt;span style="color:#e6db74">${&lt;/span>&lt;span style="color:#a6e22e">tableId&lt;/span>&lt;span style="color:#e6db74">}&lt;/span>&lt;span style="color:#e6db74">`&lt;/span>);
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">if&lt;/span> (&lt;span style="color:#a6e22e">offset&lt;/span>) &lt;span style="color:#a6e22e">url&lt;/span>.&lt;span style="color:#a6e22e">searchParams&lt;/span>.&lt;span style="color:#a6e22e">set&lt;/span>(&lt;span style="color:#e6db74">&amp;#39;offset&amp;#39;&lt;/span>, &lt;span style="color:#a6e22e">offset&lt;/span>);
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">const&lt;/span> &lt;span style="color:#a6e22e">resp&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#66d9ef">await&lt;/span> &lt;span style="color:#a6e22e">fetch&lt;/span>(&lt;span style="color:#a6e22e">url&lt;/span>.&lt;span style="color:#a6e22e">toString&lt;/span>(), {
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#a6e22e">headers&lt;/span>&lt;span style="color:#f92672">:&lt;/span> { &lt;span style="color:#a6e22e">Authorization&lt;/span>&lt;span style="color:#f92672">:&lt;/span> &lt;span style="color:#e6db74">`Bearer &lt;/span>&lt;span style="color:#e6db74">${&lt;/span>&lt;span style="color:#a6e22e">pat&lt;/span>&lt;span style="color:#e6db74">}&lt;/span>&lt;span style="color:#e6db74">`&lt;/span> },
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> });
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">const&lt;/span> &lt;span style="color:#a6e22e">data&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#66d9ef">await&lt;/span> &lt;span style="color:#a6e22e">resp&lt;/span>.&lt;span style="color:#a6e22e">json&lt;/span>();
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#a6e22e">allRecords&lt;/span>.&lt;span style="color:#a6e22e">push&lt;/span>(...&lt;span style="color:#a6e22e">data&lt;/span>.&lt;span style="color:#a6e22e">records&lt;/span>);
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#a6e22e">offset&lt;/span> &lt;span style="color:#f92672">=&lt;/span> &lt;span style="color:#a6e22e">data&lt;/span>.&lt;span style="color:#a6e22e">offset&lt;/span> &lt;span style="color:#f92672">||&lt;/span> &lt;span style="color:#66d9ef">null&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> } &lt;span style="color:#66d9ef">while&lt;/span> (&lt;span style="color:#a6e22e">offset&lt;/span>);
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">return&lt;/span> &lt;span style="color:#a6e22e">allRecords&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>}
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h3 id="graceful-fallback">Graceful Fallback&lt;/h3>
&lt;p>I kept the Google Sheets path as a fallback. The &lt;code>main()&lt;/code> function uses a priority chain:&lt;/p>
&lt;ol>
&lt;li>&lt;strong>Airtable&lt;/strong> — if &lt;code>AIRTABLE_PAT&lt;/code>, &lt;code>AIRTABLE_BASE_ID&lt;/code>, &lt;code>AIRTABLE_TABLE_ID&lt;/code> are set&lt;/li>
&lt;li>&lt;strong>Google Sheets&lt;/strong> — if &lt;code>GOOGLE_SHEET_CSV_URL&lt;/code> is set&lt;/li>
&lt;li>&lt;strong>Fallback events&lt;/strong> — hardcoded sample data so the build never fails&lt;/li>
&lt;/ol>
&lt;p>This means you can&amp;rsquo;t break the site by misconfiguring a data source. The build always succeeds.&lt;/p>
&lt;hr>
&lt;h2 id="layer-3-the-enrichment--ai-powered-data-extraction">Layer 3: The Enrichment — AI-Powered Data Extraction&lt;/h2>
&lt;p>This is where things got really interesting.&lt;/p>
&lt;p>After cutting Google Sheets, I had 87 conference records in Airtable. But they only had three useful fields: title, description, and URL. No dates. No locations. No tags. The site worked, but every event card was sparse — no way to filter by date or location, no tags to browse by topic.&lt;/p>
&lt;p>Filling in 87 records by hand? No thanks.&lt;/p>
&lt;h3 id="the-idea-visit-each-url-and-ask-ai-to-extract-the-data">The Idea: Visit Each URL and Ask AI to Extract the Data&lt;/h3>
&lt;p>The approach: for each conference record, fetch its web page, extract the text content, and use AI inference to pull out structured fields like date, location, organizer, and tags.&lt;/p>
&lt;p>I built an enrichment script — &lt;code>enrich_conferences.py&lt;/code> — that sits alongside the tracker in the same project.&lt;/p>
&lt;h3 id="step-1-fetch-and-clean-the-page">Step 1: Fetch and Clean the Page&lt;/h3>
&lt;p>Each conference URL gets fetched with &lt;code>requests&lt;/code>, then cleaned with BeautifulSoup. Navigation, footers, scripts, and styling get stripped, leaving just the text content:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-python" data-lang="python">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">def&lt;/span> &lt;span style="color:#a6e22e">fetch_page_text&lt;/span>(url, timeout&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">15&lt;/span>):
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> resp &lt;span style="color:#f92672">=&lt;/span> requests&lt;span style="color:#f92672">.&lt;/span>get(url, headers&lt;span style="color:#f92672">=&lt;/span>headers, timeout&lt;span style="color:#f92672">=&lt;/span>timeout)
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> soup &lt;span style="color:#f92672">=&lt;/span> BeautifulSoup(resp&lt;span style="color:#f92672">.&lt;/span>text, &lt;span style="color:#e6db74">&amp;#34;html.parser&amp;#34;&lt;/span>)
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">for&lt;/span> tag &lt;span style="color:#f92672">in&lt;/span> soup([&lt;span style="color:#e6db74">&amp;#34;script&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;style&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;nav&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;footer&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;header&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;aside&amp;#34;&lt;/span>]):
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> tag&lt;span style="color:#f92672">.&lt;/span>decompose()
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> text &lt;span style="color:#f92672">=&lt;/span> soup&lt;span style="color:#f92672">.&lt;/span>get_text(separator&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>&lt;span style="color:#ae81ff">\n&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>, strip&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#66d9ef">True&lt;/span>)
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> lines &lt;span style="color:#f92672">=&lt;/span> [line&lt;span style="color:#f92672">.&lt;/span>strip() &lt;span style="color:#66d9ef">for&lt;/span> line &lt;span style="color:#f92672">in&lt;/span> text&lt;span style="color:#f92672">.&lt;/span>splitlines() &lt;span style="color:#66d9ef">if&lt;/span> line&lt;span style="color:#f92672">.&lt;/span>strip()]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">return&lt;/span> &lt;span style="color:#e6db74">&amp;#34;&lt;/span>&lt;span style="color:#ae81ff">\n&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>&lt;span style="color:#f92672">.&lt;/span>join(lines)
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h3 id="step-2-ai-extraction-via-pai-inference">Step 2: AI Extraction via PAI Inference&lt;/h3>
&lt;p>The cleaned text gets sent to Claude (via PAI&amp;rsquo;s Inference tool) with a structured extraction prompt. The prompt is specific about what to extract and what format to use:&lt;/p>
&lt;pre tabindex="0">&lt;code>Given text from a conference web page, extract these fields as JSON:
{
&amp;#34;date&amp;#34;: &amp;#34;human-readable date like &amp;#39;May 5-6, 2026&amp;#39;&amp;#34;,
&amp;#34;endDate&amp;#34;: &amp;#34;ISO end date like &amp;#39;2026-05-06&amp;#39;&amp;#34;,
&amp;#34;location&amp;#34;: &amp;#34;City, State/Country&amp;#34;,
&amp;#34;venue&amp;#34;: &amp;#34;venue name&amp;#34;,
&amp;#34;price&amp;#34;: &amp;#34;ticket price or &amp;#39;Free&amp;#39;&amp;#34;,
&amp;#34;organizer&amp;#34;: &amp;#34;organizing body&amp;#34;,
&amp;#34;tags&amp;#34;: &amp;#34;comma-separated topic tags (max 4)&amp;#34;
}
&lt;/code>&lt;/pre>&lt;p>One critical addition: if the page is a &lt;strong>list of conferences&lt;/strong> (like &amp;ldquo;Top 10 AI Conferences of 2026&amp;rdquo;), the AI returns &lt;code>{&amp;quot;is_list_page&amp;quot;: true}&lt;/code> and the script skips it. This was essential — about 15% of our URLs were aggregator pages, not individual conference pages.&lt;/p>
&lt;h3 id="step-3-write-back-to-airtable">Step 3: Write Back to Airtable&lt;/h3>
&lt;p>Non-empty extracted fields get PATCHed back to Airtable. The script only writes fields that actually exist in the table schema — a lesson learned the hard way when &lt;code>venue&lt;/code> and &lt;code>imageUrl&lt;/code> threw 422 errors because those columns hadn&amp;rsquo;t been created yet.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-python" data-lang="python">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">def&lt;/span> &lt;span style="color:#a6e22e">build_patch_fields&lt;/span>(extracted, allowed_fields):
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">if&lt;/span> extracted&lt;span style="color:#f92672">.&lt;/span>get(&lt;span style="color:#e6db74">&amp;#34;is_list_page&amp;#34;&lt;/span>):
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">return&lt;/span> &lt;span style="color:#66d9ef">None&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> patch &lt;span style="color:#f92672">=&lt;/span> {}
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">for&lt;/span> key &lt;span style="color:#f92672">in&lt;/span> [&lt;span style="color:#e6db74">&amp;#34;date&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;endDate&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;location&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;venue&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;price&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;organizer&amp;#34;&lt;/span>, &lt;span style="color:#e6db74">&amp;#34;tags&amp;#34;&lt;/span>]:
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">if&lt;/span> key &lt;span style="color:#f92672">not&lt;/span> &lt;span style="color:#f92672">in&lt;/span> allowed_fields:
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">continue&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> val &lt;span style="color:#f92672">=&lt;/span> extracted&lt;span style="color:#f92672">.&lt;/span>get(key, &lt;span style="color:#e6db74">&amp;#34;&amp;#34;&lt;/span>)
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">if&lt;/span> isinstance(val, str) &lt;span style="color:#f92672">and&lt;/span> val&lt;span style="color:#f92672">.&lt;/span>strip():
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> patch[key] &lt;span style="color:#f92672">=&lt;/span> val&lt;span style="color:#f92672">.&lt;/span>strip()
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">return&lt;/span> patch &lt;span style="color:#66d9ef">if&lt;/span> patch &lt;span style="color:#66d9ef">else&lt;/span> &lt;span style="color:#66d9ef">None&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h3 id="the-results">The Results&lt;/h3>
&lt;p>Running the enrichment script across all 87 records:&lt;/p>
&lt;table>
&lt;thead>
&lt;tr>
&lt;th>Outcome&lt;/th>
&lt;th>Count&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>Records enriched&lt;/td>
&lt;td>48&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>List/aggregator pages (correctly skipped)&lt;/td>
&lt;td>12&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>No extractable fields (social media, OpenReview, etc.)&lt;/td>
&lt;td>11&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Errors (timeouts, HTTP 403s)&lt;/td>
&lt;td>16&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;p>After enrichment:&lt;/p>
&lt;table>
&lt;thead>
&lt;tr>
&lt;th>Field&lt;/th>
&lt;th>Records populated&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>Date&lt;/td>
&lt;td>42&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Location&lt;/td>
&lt;td>41&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Tags&lt;/td>
&lt;td>47&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Organizer&lt;/td>
&lt;td>27&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Price&lt;/td>
&lt;td>4&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;p>From zero structured data to a directory where most events have dates, locations, and topic tags — without opening a single conference website manually.&lt;/p>
&lt;p>Some highlights from the extraction:&lt;/p>
&lt;ul>
&lt;li>&lt;strong>NeurIPS 2026:&lt;/strong> December 6-12, Sydney, Australia — Deep Learning, Research, Algorithms, LLMs&lt;/li>
&lt;li>&lt;strong>CVPR 2026:&lt;/strong> June 3-7, Denver, CO — Computer Vision, Deep Learning, Research&lt;/li>
&lt;li>&lt;strong>ICML 2026:&lt;/strong> July 6-11, Seoul, South Korea — LLMs, Computer Vision, NLP, Robotics&lt;/li>
&lt;li>&lt;strong>AI Council 2026:&lt;/strong> May 12-14, San Francisco, CA — Generative AI, ML Ops, AI Safety&lt;/li>
&lt;li>&lt;strong>MIDL 2026:&lt;/strong> July 8-10, Taipei — Deep Learning, Healthcare AI, Computer Vision&lt;/li>
&lt;/ul>
&lt;hr>
&lt;h2 id="the-pipeline-today">The Pipeline Today&lt;/h2>
&lt;p>Here&amp;rsquo;s what the full system looks like now:&lt;/p>
&lt;pre tabindex="0">&lt;code>SearXNG (self-hosted search)
→ conference_tracker.py (Python — discovers conferences)
→ Airtable (source of truth — 87 records)
→ enrich_conferences.py (Python — AI-powered field extraction)
→ Airtable (now with dates, locations, tags)
→ fetch-events.mjs (Node — build-time data fetch)
→ data.ts (bundled into the site)
→ React + Vite app on Netlify
&lt;/code>&lt;/pre>&lt;p>The tracker discovers. The enricher structures. The fetcher delivers. The site displays. Each piece runs independently and can be re-run at any time.&lt;/p>
&lt;p>The enrichment script is idempotent — it only processes records where the &lt;code>date&lt;/code> field is empty, so running it again only touches new or previously-failed records.&lt;/p>
&lt;hr>
&lt;h2 id="what-id-do-differently-and-whats-next">What I&amp;rsquo;d Do Differently (And What&amp;rsquo;s Next)&lt;/h2>
&lt;h3 id="the-timeout-problem">The Timeout Problem&lt;/h3>
&lt;p>About 16 records hit the 25-second inference timeout. The fast tier (Haiku) is quick but occasionally chokes on pages with dense, complex content. A retry mechanism using the standard tier (Sonnet) for failed records would catch most of these.&lt;/p>
&lt;h3 id="missing-table-columns">Missing Table Columns&lt;/h3>
&lt;p>The &lt;code>venue&lt;/code> and &lt;code>imageUrl&lt;/code> fields don&amp;rsquo;t exist in the Airtable table yet. The enrichment script extracts venue names beautifully (The Venetian for Ai4, COEX Convention Center for ICML, Dongguk University for AAAI Summer), but the data gets dropped because the columns aren&amp;rsquo;t there. A quick table schema update in the Airtable UI fixes this.&lt;/p>
&lt;h3 id="scheduled-runs">Scheduled Runs&lt;/h3>
&lt;p>Right now, both the tracker and enricher are manual. The natural next step is scheduling — run the tracker daily to discover new conferences, the enricher on new records, and trigger a Netlify deploy afterward. The Netlify build hook is already configured; it just needs a cron job or GitHub Action to call it.&lt;/p>
&lt;h3 id="data-quality">Data Quality&lt;/h3>
&lt;p>Some records are noise — Reddit discussion threads, Amazon Science blog posts, Twitter/X profiles. A quality filter (either rule-based on URL patterns or AI-powered) would clean the dataset before enrichment runs.&lt;/p>
&lt;hr>
&lt;h2 id="lessons-learned">Lessons Learned&lt;/h2>
&lt;h3 id="1-eliminate-middlemen-early">1. Eliminate Middlemen Early&lt;/h3>
&lt;p>Google Sheets added zero value once Airtable was in the picture. But it lingered because it was the &amp;ldquo;original&amp;rdquo; approach. Every extra hop in a pipeline is a thing that can break, a thing that needs syncing, and a thing that slows you down. Cut it.&lt;/p>
&lt;h3 id="2-build-time-data-fetching-is-underrated">2. Build-Time Data Fetching Is Underrated&lt;/h3>
&lt;p>Pulling data at build time instead of runtime means no API keys in the browser, no loading spinners, and no CORS headaches. For data that changes daily (not per-second), this is the right architecture.&lt;/p>
&lt;h3 id="3-ai-extraction-beats-manual-curation">3. AI Extraction Beats Manual Curation&lt;/h3>
&lt;p>Using AI to extract structured data from unstructured web pages isn&amp;rsquo;t perfect — we got 48 out of 87 records enriched, not 87 out of 87. But it took 20 minutes of runtime versus what would have been hours of manual work. And the script is re-runnable. Improvement is incremental.&lt;/p>
&lt;h3 id="4-detect-your-datas-shape-before-writing">4. Detect Your Data&amp;rsquo;s Shape Before Writing&lt;/h3>
&lt;p>The Airtable 422 errors on &lt;code>venue&lt;/code> were entirely preventable. The enrichment script now probes the table schema at startup and only writes to fields that exist. Defensive coding at system boundaries saves debugging time.&lt;/p>
&lt;h3 id="5-list-page-detection-is-essential-for-web-scraping-pipelines">5. List Page Detection Is Essential for Web Scraping Pipelines&lt;/h3>
&lt;p>When you&amp;rsquo;re scraping URLs from search results, a significant percentage will be aggregator pages (&amp;ldquo;Top 10 Best AI Conferences&amp;rdquo;) rather than individual event pages. If you don&amp;rsquo;t detect and skip these, you&amp;rsquo;ll corrupt your dataset with merged data from multiple events. The &lt;code>is_list_page&lt;/code> flag in the AI extraction prompt was one of the highest-value additions to the whole pipeline.&lt;/p>
&lt;hr>
&lt;h2 id="the-bigger-picture">The Bigger Picture&lt;/h2>
&lt;p>This project is a miniature version of a pattern I keep coming back to: &lt;strong>systems that compound.&lt;/strong>&lt;/p>
&lt;p>The tracker runs once and discovers 87 conferences. The enricher runs once and structures 48 of them. The next time the tracker runs, it discovers only &lt;em>new&lt;/em> conferences (deduplication handles the rest). The next time the enricher runs, it only processes records it hasn&amp;rsquo;t touched yet.&lt;/p>
&lt;p>Every run makes the dataset better without redoing previous work. That&amp;rsquo;s the whole point of building infrastructure instead of doing things manually — you invest upfront so the system improves over time with minimal additional effort.&lt;/p>
&lt;p>Working with Claude through PAI made each layer come together faster than I expected. The tracker, the Airtable integration, the Google Sheets elimination, the enrichment script — each was a focused session where the AI handled the implementation details while I focused on architecture decisions.&lt;/p>
&lt;p>That&amp;rsquo;s the augmented part of Augmented Resilience. Not replacing the thinking — amplifying it.&lt;/p></content></item></channel></rss>