<?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: George R.</title>
    <description>The latest articles on DEV Community by George R. (@georouv).</description>
    <link>https://dev.to/georouv</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%2F3823509%2Fd2f957f3-a73f-45e8-a641-2a7ab3a2d157.jpeg</url>
      <title>DEV Community: George R.</title>
      <link>https://dev.to/georouv</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/georouv"/>
    <language>en</language>
    <item>
      <title>I built "git log" for any website — track changes with diffs and AI summaries</title>
      <dc:creator>George R.</dc:creator>
      <pubDate>Sat, 14 Mar 2026 07:07:44 +0000</pubDate>
      <link>https://dev.to/georouv/i-built-git-log-for-any-website-track-changes-with-diffs-and-ai-summaries-445g</link>
      <guid>https://dev.to/georouv/i-built-git-log-for-any-website-track-changes-with-diffs-and-ai-summaries-445g</guid>
      <description>&lt;p&gt;Websites change all the time — pricing pages, docs, terms of service. I wanted a simple CLI to tell me &lt;em&gt;what&lt;/em&gt; changed, like &lt;code&gt;git log&lt;/code&gt; but for any URL.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;crawldiff&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;crawldiff

&lt;span class="c"&gt;# Snapshot a site&lt;/span&gt;
crawldiff crawl https://stripe.com/pricing

&lt;span class="c"&gt;# Come back later — see what changed&lt;/span&gt;
crawldiff diff https://stripe.com/pricing &lt;span class="nt"&gt;--since&lt;/span&gt; 7d
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It uses Cloudflare's new &lt;a href="https://blog.cloudflare.com/crawl-entire-websites-with-a-single-api-call-using-browser-rendering/" rel="noopener noreferrer"&gt;&lt;code&gt;/crawl&lt;/code&gt; endpoint&lt;/a&gt; to snapshot pages, stores everything locally in SQLite, and produces git-style unified diffs — with optional AI summaries via Claude, GPT, or Cloudflare Workers AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Git-style diffs&lt;/strong&gt; — colored unified diffs in your terminal&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI summaries&lt;/strong&gt; — "Pricing increased from $25 to $30, new Enterprise tier added"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Watch mode&lt;/strong&gt; — &lt;code&gt;crawldiff watch https://competitor.com --every 1h&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multiple outputs&lt;/strong&gt; — terminal, JSON (pipe to jq/Slack), Markdown reports&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Incremental crawling&lt;/strong&gt; — only fetches changed pages via Cloudflare's &lt;code&gt;modifiedSince&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local storage&lt;/strong&gt; — everything in SQLite at &lt;code&gt;~/.crawldiff/&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The tech stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Python 3.12, typer, rich, httpx&lt;/li&gt;
&lt;li&gt;Cloudflare Browser Rendering /crawl API&lt;/li&gt;
&lt;li&gt;difflib for unified diffs&lt;/li&gt;
&lt;li&gt;SQLite for local snapshot storage&lt;/li&gt;
&lt;li&gt;96 tests, mypy strict, CI on GitHub Actions&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why not existing tools?
&lt;/h2&gt;

&lt;p&gt;Most website monitoring tools are SaaS dashboards built for marketing teams. crawldiff is for developers — it's a CLI, it diffs like git, it pipes to anything, and it stores everything locally.&lt;/p&gt;

&lt;p&gt;Only requirement is a free Cloudflare account.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/GeoRouv/crawldiff" rel="noopener noreferrer"&gt;github.com/GeoRouv/crawldiff&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;PyPI:&lt;/strong&gt; &lt;code&gt;pip install crawldiff&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Happy to answer any questions!&lt;/p&gt;

</description>
      <category>python</category>
      <category>opensource</category>
      <category>webdev</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
