<?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: Jon Lyle</title>
    <description>The latest articles on DEV Community by Jon Lyle (@jon_lyle_9d5349fcad5daf1c).</description>
    <link>https://dev.to/jon_lyle_9d5349fcad5daf1c</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%2F3951032%2Fb3c5171c-e28d-4507-97b4-448f85f9b052.png</url>
      <title>DEV Community: Jon Lyle</title>
      <link>https://dev.to/jon_lyle_9d5349fcad5daf1c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jon_lyle_9d5349fcad5daf1c"/>
    <language>en</language>
    <item>
      <title>I built a hands-free AI mechanic. Here's what I learned about voice diagnostics at scale.</title>
      <dc:creator>Jon Lyle</dc:creator>
      <pubDate>Wed, 27 May 2026 04:43:50 +0000</pubDate>
      <link>https://dev.to/jon_lyle_9d5349fcad5daf1c/i-built-a-hands-free-ai-mechanic-heres-what-i-learned-about-voice-diagnostics-at-scale-12mc</link>
      <guid>https://dev.to/jon_lyle_9d5349fcad5daf1c/i-built-a-hands-free-ai-mechanic-heres-what-i-learned-about-voice-diagnostics-at-scale-12mc</guid>
      <description>&lt;p&gt;I'm Jon — third-generation mechanic out of Detroit. Last week, I shipped something that's been keeping me up at night: &lt;strong&gt;Pocket Mechanic&lt;/strong&gt; — a hands-free AI diagnostic system that actually listens.&lt;/p&gt;

&lt;p&gt;Not "upload a file and wait." Not "click buttons and read code definitions." &lt;strong&gt;Talk to it. It talks back. It understands.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem I Was Trying to Solve
&lt;/h2&gt;

&lt;p&gt;You're under a car. Hands covered in grease. You pull a code. You need diagnostics NOW. But your hands are dirty, your phone's in your pocket, and you're not about to stop what you're doing to type.&lt;/p&gt;

&lt;p&gt;So you either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Memorize the code and Google it later (lose context)&lt;/li&gt;
&lt;li&gt;Yell at your buddy to look it up (interrupts their work)&lt;/li&gt;
&lt;li&gt;Stop working, clean your hands, use your phone (wastes 5-10 minutes per code)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's the gap. That's what I built for.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Pocket Mechanic Works
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Full-duplex voice conversation.&lt;/strong&gt; You talk, it listens in real-time. No "wait for the beep" nonsense. No lag. It's like talking to another tech in the bay.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Upload your datalog once (FORScan, HP Tuners, Autel, OBD2 CSV)&lt;/li&gt;
&lt;li&gt;Start talking: "What's causing the misfire?"&lt;/li&gt;
&lt;li&gt;It analyzes the data in context of what you're saying&lt;/li&gt;
&lt;li&gt;Gives you root causes, ranked by severity&lt;/li&gt;
&lt;li&gt;Remembers your previous diagnostics (knows your customer's truck history)&lt;/li&gt;
&lt;li&gt;Knows localization (salt-belt fleet truck vs. highway commuter)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Tech Stack (For the Curious)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Voice input:&lt;/strong&gt; Real-time transcription, no latency&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LLM backbone:&lt;/strong&gt; Automotive-specific training (not generic ChatGPT)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data analysis:&lt;/strong&gt; CAN bus visualization, freeze frame parsing, pattern recognition&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Conversational memory:&lt;/strong&gt; Persists context across sessions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Output:&lt;/strong&gt; Text, voice, or shareable diagnostic reports&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Current Status
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Free through Memorial Day week.&lt;/strong&gt; Full Pro access. No credit card. No auto-charge. Just talk, get answers, subscribe when you're ready.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Post-beta pricing:&lt;/strong&gt; $49/mo basic, $99/mo pro, $199/mo team&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;URL:&lt;/strong&gt; &lt;a href="https://www.grease-ai.com" rel="noopener noreferrer"&gt;https://www.grease-ai.com&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned Building This
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Mechanics don't want to learn new tools.&lt;/strong&gt; They want tools that fit into their existing workflow. Hands-free is the only way.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Voice is the interface.&lt;/strong&gt; Not buttons, not forms, not "contact sales." Just talk.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data context matters more than code definitions.&lt;/strong&gt; Every tech can Google a P0300. What they need is "here's what YOUR data is telling me."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The blue-collar SaaS market is wide open.&lt;/strong&gt; And it's hungry for tools built by people who actually use them.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is Grease AI's flagship feature. If you turn wrenches for a living, this was built for you.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
