<?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: Leo Cardz</title>
    <description>The latest articles on DEV Community by Leo Cardz (@leocardz).</description>
    <link>https://dev.to/leocardz</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%2F3793638%2Fc0047687-731f-41b1-a42b-e9e0e48983cb.png</url>
      <title>DEV Community: Leo Cardz</title>
      <link>https://dev.to/leocardz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/leocardz"/>
    <language>en</language>
    <item>
      <title>I built a native macOS companion app for Claude Code in a weekend</title>
      <dc:creator>Leo Cardz</dc:creator>
      <pubDate>Thu, 26 Feb 2026 13:24:23 +0000</pubDate>
      <link>https://dev.to/leocardz/i-built-a-native-macos-companion-app-for-claude-code-in-a-weekend-2hcg</link>
      <guid>https://dev.to/leocardz/i-built-a-native-macos-companion-app-for-claude-code-in-a-weekend-2hcg</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;If you use Claude Code, all your sessions are stored locally as JSONL files. There's no built-in way to go back and browse them, search through old conversations, check what files were changed, or revisit commands you ran.&lt;/p&gt;

&lt;p&gt;I kept opening JSONL files manually, and it wasn't a great experience.&lt;/p&gt;

&lt;h2&gt;
  
  
  The solution
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;Poirot&lt;/strong&gt;. A native macOS app that reads your local Claude Code data and gives you a proper interface for everything.&lt;/p&gt;

&lt;p&gt;

  &lt;iframe src="https://www.youtube.com/embed/JLvNSRZrxdo"&gt;
  &lt;/iframe&gt;


&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Session browser&lt;/strong&gt;: All your sessions grouped by project, with timestamps, token counts, and model info&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rich conversation view&lt;/strong&gt;: Markdown rendering, syntax highlighting, collapsible tool blocks, code diffs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Extended thinking&lt;/strong&gt;: See Claude's reasoning process in collapsible blocks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fuzzy search (⌘K)&lt;/strong&gt;: Search across all sessions, commands, skills, and configs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Config dashboard&lt;/strong&gt;: Browse your slash commands, skills, MCP servers, models, sub-agents, plugins, and output styles&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One-click open&lt;/strong&gt;: Open any file in VS Code, Cursor, Xcode, or Zed. Copy or re-run any Bash command in your terminal&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;No login. No tracking. No analytics. No API key needed. No extra cost. Runs fully offline. Under 6 MB.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbaa97epvl9hg139uh5gi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbaa97epvl9hg139uh5gi.png" alt="Poirot code diff view showing a TranscriptParser refactor from completion handlers to async/await, with red/green inline diff highlighting"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiuwehrvspowjt16lba9h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiuwehrvspowjt16lba9h.png" alt="Poirot MCP Servers dashboard showing configured servers like Figma, GitHub, Notion, Playwright, and Perplexity with their connection details and available tools"&gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Swift 6 with strict concurrency&lt;/li&gt;
&lt;li&gt;SwiftUI with &lt;code&gt;@Observable&lt;/code&gt; (no &lt;code&gt;ObservableObject&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;@MainActor&lt;/code&gt; default isolation&lt;/li&gt;
&lt;li&gt;Protocol-driven DI via SwiftUI &lt;code&gt;EnvironmentValues&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;MarkdownUI + HighlightSwift for rendering&lt;/li&gt;
&lt;li&gt;Swift Testing for tests&lt;/li&gt;
&lt;li&gt;Custom JSONL parser and real-time file watching with GCD&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The story
&lt;/h2&gt;

&lt;p&gt;The whole thing was vibe-coded in a weekend using Claude Code itself. What started as "I wonder if I can build a companion app for Claude Code using Claude Code" turned into a real tool that I use daily.&lt;/p&gt;

&lt;p&gt;Named after Hercule Poirot, Agatha Christie's detective because every investigation needs the right tools.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/LeonardoCardoso/Poirot" rel="noopener noreferrer"&gt;https://github.com/LeonardoCardoso/Poirot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://poirot.fyi" rel="noopener noreferrer"&gt;https://poirot.fyi&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Open source (MIT). Feedback and contributions welcome.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>swift</category>
      <category>opensource</category>
      <category>vibecoding</category>
    </item>
  </channel>
</rss>
