<?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: kohei wada</title>
    <description>The latest articles on DEV Community by kohei wada (@kohei_wada_d5c91642aa8f2f).</description>
    <link>https://dev.to/kohei_wada_d5c91642aa8f2f</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%2F3842490%2Fe6c74985-243e-4aa7-a203-9bd7c938c187.png</url>
      <title>DEV Community: kohei wada</title>
      <link>https://dev.to/kohei_wada_d5c91642aa8f2f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kohei_wada_d5c91642aa8f2f"/>
    <language>en</language>
    <item>
      <title>I made a terminal task manager, got featured by the creator of Textual, and Reddit banned me 🤣</title>
      <dc:creator>kohei wada</dc:creator>
      <pubDate>Wed, 25 Mar 2026 04:54:23 +0000</pubDate>
      <link>https://dev.to/kohei_wada_d5c91642aa8f2f/i-made-a-terminal-task-manager-got-featured-by-the-creator-of-textual-and-reddit-banned-me-cca</link>
      <guid>https://dev.to/kohei_wada_d5c91642aa8f2f/i-made-a-terminal-task-manager-got-featured-by-the-creator-of-textual-and-reddit-banned-me-cca</guid>
      <description>&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%2Fpg3hkjmy0hxhwrl38vv9.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%2Fpg3hkjmy0hxhwrl38vv9.png" alt="TUI" width="800" height="395"&gt;&lt;/a&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%2Fqo6ym8d550pw6d01ju52.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%2Fqo6ym8d550pw6d01ju52.png" alt="cli gantt" width="800" height="439"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have you ever spent weeks building an open-source project, finally launched it, and then had Reddit's spam filter silently delete your post because your account was too new?&lt;/p&gt;

&lt;p&gt;That was my experience launching &lt;strong&gt;taskdog&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But the Reddit drama isn't the point. The real story is why I built a terminal task manager from scratch.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: No task manager fit my workflow
&lt;/h2&gt;

&lt;p&gt;I was inspired by &lt;a href="https://taskwarrior.org/" rel="noopener noreferrer"&gt;Taskwarrior&lt;/a&gt; — powerful, keyboard-driven, terminal-native. But I wanted a proper TUI and a local API I could build on top of. Nothing out there quite fit, so I built my own.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Design Decisions
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Why no subtasks?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Most task managers let you nest tasks infinitely. I removed subtasks entirely. Dependencies + tags cover 99% of personal task organization, and keeping the structure flat makes the schedule optimizer dramatically simpler. I documented the full reasoning in &lt;a href="https://github.com/Kohei-Wada/taskdog/blob/main/docs/DESIGN_PHILOSOPHY.md" rel="noopener noreferrer"&gt;&lt;code&gt;DESIGN_PHILOSOPHY.md&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Clean Architecture for a personal tool?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The codebase is split into three packages: &lt;code&gt;taskdog-core&lt;/code&gt; (business logic), &lt;code&gt;taskdog-server&lt;/code&gt; (FastAPI REST API), &lt;code&gt;taskdog-ui&lt;/code&gt; (CLI/TUI). Overkill for a personal project? Maybe. But it forced me to keep business logic completely independent of the UI and transport layer — and it paid off when I added the API server without touching the core.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Full-screen TUI powered by &lt;a href="https://github.com/Textualize/textual" rel="noopener noreferrer"&gt;Textual&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;FastAPI + SQLite backend running locally&lt;/li&gt;
&lt;li&gt;9 scheduling optimization algorithms&lt;/li&gt;
&lt;li&gt;Time tracking with planned vs actual comparison&lt;/li&gt;
&lt;li&gt;Gantt chart view&lt;/li&gt;
&lt;li&gt;Task dependencies with circular detection&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it instantly (no install needed)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker run &lt;span class="nt"&gt;--rm&lt;/span&gt; &lt;span class="nt"&gt;-it&lt;/span&gt; ghcr.io/kohei-wada/taskdog:demo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Spins up the server and launches the TUI in one shot, with demo data preloaded.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Reception
&lt;/h2&gt;

&lt;p&gt;After shipping it, some nice things happened:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Featured on &lt;a href="https://terminaltrove.com/taskdog/" rel="noopener noreferrer"&gt;Terminal Trove&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Featured on &lt;a href="https://www.linuxlinks.com/taskdog-task-management-system/" rel="noopener noreferrer"&gt;LinuxLinks&lt;/a&gt; in the CLI/TUI/Productivity category&lt;/li&gt;
&lt;li&gt;Will McGugan — creator of Textual, the library powering the TUI — &lt;a href="https://x.com/willmcgugan/status/2027377375156080742?s=20" rel="noopener noreferrer"&gt;said&lt;/a&gt;: &lt;em&gt;"The author of this project has clearly got a good eye for design in the terminal"&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: Built with the help of Claude Code (credited as contributor in the repo). Architecture, algorithms, and all design decisions are my own.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/Kohei-Wada/taskdog" rel="noopener noreferrer"&gt;https://github.com/Kohei-Wada/taskdog&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>tui</category>
      <category>cli</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
