<?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: Matthew Phelan</title>
    <description>The latest articles on DEV Community by Matthew Phelan (@matthew_phelan_464db50fab).</description>
    <link>https://dev.to/matthew_phelan_464db50fab</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%2F3814767%2F3705f80a-6ee1-4132-89a4-e7142d37a130.png</url>
      <title>DEV Community: Matthew Phelan</title>
      <link>https://dev.to/matthew_phelan_464db50fab</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matthew_phelan_464db50fab"/>
    <language>en</language>
    <item>
      <title>I gave myself 48 hours to validate an AI code review tool. Here's how I built it.</title>
      <dc:creator>Matthew Phelan</dc:creator>
      <pubDate>Mon, 09 Mar 2026 12:36:46 +0000</pubDate>
      <link>https://dev.to/matthew_phelan_464db50fab/i-gave-myself-48-hours-to-validate-an-ai-code-review-tool-heres-how-i-built-it-38lp</link>
      <guid>https://dev.to/matthew_phelan_464db50fab/i-gave-myself-48-hours-to-validate-an-ai-code-review-tool-heres-how-i-built-it-38lp</guid>
      <description>&lt;p&gt;I wanted to test a simple idea: what if every pull request you opened got an instant AI code review?&lt;/p&gt;

&lt;p&gt;Not a replacement for human reviewers — just a first pass that catches the obvious stuff before your teammates even look at it.&lt;/p&gt;

&lt;p&gt;So I gave myself 48 hours to build it, ship it, and see if anyone actually finds it useful.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;CodeReview.ai is a GitHub App. You install it on a repo, and every time a PR is opened, it:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Receives a webhook from GitHub&lt;/li&gt;
&lt;li&gt;Pulls the diff via the GitHub API&lt;/li&gt;
&lt;li&gt;Sends it to GPT-3.5-turbo with a code review prompt&lt;/li&gt;
&lt;li&gt;Posts the review as a PR comment within seconds&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. No dashboard, no config files, no pricing tiers. Install and go.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript&lt;/strong&gt; end to end&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vercel serverless functions&lt;/strong&gt; for the webhook handler&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Octokit&lt;/strong&gt; for GitHub API calls&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI API&lt;/strong&gt; (GPT-3.5-turbo) for the review&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PostHog&lt;/strong&gt; for tracking installs and usage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Static HTML + Tailwind&lt;/strong&gt; for the landing page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The whole thing is two API routes: one for the GitHub webhook, one for waitlist signups.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'm measuring
&lt;/h2&gt;

&lt;p&gt;I set four metrics to decide if this is worth continuing:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;More than 15 installs in 48 hours&lt;/li&gt;
&lt;li&gt;At least 5 repos that receive 2+ reviews&lt;/li&gt;
&lt;li&gt;Waitlist signup rate above 10% of installs&lt;/li&gt;
&lt;li&gt;Sentiment not negative across feedback channels&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If I hit 3 of 4, I keep building. If not, I scrap it and move on.&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest limitations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Diffs are truncated to 8,000 characters. Large PRs won't get full coverage.&lt;/li&gt;
&lt;li&gt;GPT-3.5-turbo is fast and cheap but not as sharp as GPT-4. Review depth has a ceiling.&lt;/li&gt;
&lt;li&gt;50 reviews per day per installation. I'm a solo dev and my OpenAI bill needs to stay sane.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;If you want to kick the tires:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Landing page: &lt;a href="https://codereview-ai-v2.vercel.app" rel="noopener noreferrer"&gt;https://codereview-ai-v2.vercel.app&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Install: &lt;a href="https://github.com/apps/codereview-ai-alpha/installations/new" rel="noopener noreferrer"&gt;https://github.com/apps/codereview-ai-alpha/installations/new&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you install it and it's annoying rather than helpful, I genuinely want to hear that. The whole point of the sprint is to find out.&lt;/p&gt;

</description>
      <category>github</category>
      <category>ai</category>
      <category>devtools</category>
      <category>typescript</category>
    </item>
  </channel>
</rss>
