<?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: Tema Snow</title>
    <description>The latest articles on DEV Community by Tema Snow (@snowtema).</description>
    <link>https://dev.to/snowtema</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%2F3834507%2F5d6ea221-e763-4448-90f5-d555c47b1bdd.jpeg</url>
      <title>DEV Community: Tema Snow</title>
      <link>https://dev.to/snowtema</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/snowtema"/>
    <language>en</language>
    <item>
      <title>How I Track 50+ Vibe Projects Without Leaving the Terminal</title>
      <dc:creator>Tema Snow</dc:creator>
      <pubDate>Fri, 20 Mar 2026 02:21:00 +0000</pubDate>
      <link>https://dev.to/snowtema/how-i-track-50-vibe-projects-without-leaving-the-terminal-2oak</link>
      <guid>https://dev.to/snowtema/how-i-track-50-vibe-projects-without-leaving-the-terminal-2oak</guid>
      <description>&lt;p&gt;I vibe-code 2-3 projects a day with Claude Code. After a couple of weeks I had 20+ folders and couldn't remember what any of them did, where I left off, or which ones were worth continuing.&lt;/p&gt;

&lt;p&gt;Notion? Too slow to open. I needed something that works at the speed of &lt;code&gt;ls&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;drift&lt;/strong&gt; — a terminal-based project tracker for people who code with AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  What drift does
&lt;/h2&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%2Fgpor85c42nd8r8hubffx.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%2Fgpor85c42nd8r8hubffx.png" alt="Drift TUI" width="800" height="473"&gt;&lt;/a&gt;&lt;br&gt;
PS. I hid most of my private project :)&lt;/p&gt;

&lt;p&gt;One command to see all your projects, their status, progress, and when you last touched them.&lt;/p&gt;
&lt;h2&gt;
  
  
  The TUI
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;drift&lt;/code&gt; without arguments opens a fullscreen dual-panel interface. Navigate with &lt;code&gt;j/k&lt;/code&gt;, press &lt;code&gt;Enter&lt;/code&gt; to see project details, &lt;code&gt;Tab&lt;/code&gt; to cycle through info/goals/notes.&lt;/p&gt;

&lt;p&gt;Everything is keyboard-driven. No mouse needed. No flicker.&lt;/p&gt;

&lt;p&gt;Key shortcuts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;1-5&lt;/code&gt; to set status (active → idea → paused → done → abandoned)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;g&lt;/code&gt; to add a goal, &lt;code&gt;n&lt;/code&gt; to add a note&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;t&lt;/code&gt; to toggle tree/flat view&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/&lt;/code&gt; to live-filter projects&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;c&lt;/code&gt; to launch Claude Code directly in the project&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  The protocol, not the tool
&lt;/h2&gt;

&lt;p&gt;Here's the thing that makes drift different: &lt;strong&gt;the file format is the product&lt;/strong&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;your-project/
  .drift/
    project.json    # everything about this project
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It's plain JSON. No database, no server, no sync service. Git-friendly. Anyone can build a drift-compatible tool.&lt;/p&gt;

&lt;p&gt;The CLI and TUI are just two consumers of this protocol. You could build a VS Code extension, a web dashboard, or a Raycast plugin that reads the same &lt;code&gt;.drift/project.json&lt;/code&gt; files.&lt;/p&gt;

&lt;h2&gt;
  
  
  Claude Code integration
&lt;/h2&gt;

&lt;p&gt;This is where it gets interesting. &lt;code&gt;drift init&lt;/code&gt; adds a &lt;code&gt;## drift&lt;/code&gt; section to your project's &lt;code&gt;CLAUDE.md&lt;/code&gt;. When Claude Code starts a session, it reads this and automatically maintains your goals and notes as it works.&lt;/p&gt;

&lt;p&gt;You code with AI → drift tracks what the AI did. Automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Homebrew&lt;/span&gt;
brew &lt;span class="nb"&gt;install &lt;/span&gt;snowtema/tap/drift

&lt;span class="c"&gt;# Go&lt;/span&gt;
go &lt;span class="nb"&gt;install &lt;/span&gt;github.com/snowtema/drift/cmd@latest

&lt;span class="c"&gt;# Or grab a binary&lt;/span&gt;
&lt;span class="c"&gt;# https://github.com/snowtema/drift/releases&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why Go?
&lt;/h2&gt;

&lt;p&gt;Single binary. 5MB. Zero runtime dependencies. Works on Mac, Linux, Windows. No Node.js, no Python, no Docker.&lt;/p&gt;

&lt;p&gt;I used &lt;a href="https://github.com/charmbracelet/bubbletea" rel="noopener noreferrer"&gt;bubbletea&lt;/a&gt; for the TUI — it's the best terminal UI framework I've ever used.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Dashboard view (project stats, burndown)&lt;/li&gt;
&lt;li&gt;Team sync (shared registry)&lt;/li&gt;
&lt;li&gt;More AI tool integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The repo is MIT licensed: &lt;a href="https://github.com/snowtema/drift" rel="noopener noreferrer"&gt;github.com/snowtema/drift&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you vibe-code and lose track of your projects, give it a try. Stars and feedback welcome&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cli</category>
      <category>productivity</category>
      <category>go</category>
    </item>
  </channel>
</rss>
