<?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: Azad Mohamed</title>
    <description>The latest articles on DEV Community by Azad Mohamed (@azadhmhd).</description>
    <link>https://dev.to/azadhmhd</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4096202%2F4f5a2f1b-8f70-4741-9d1a-c84ad6ad2f14.jpg</url>
      <title>DEV Community: Azad Mohamed</title>
      <link>https://dev.to/azadhmhd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/azadhmhd"/>
    <language>en</language>
    <item>
      <title>I Kept Forgetting to Drink Water While Coding, So I Built Kairo</title>
      <dc:creator>Azad Mohamed</dc:creator>
      <pubDate>Wed, 26 Aug 2026 18:22:42 +0000</pubDate>
      <link>https://dev.to/azadhmhd/i-kept-forgetting-to-drink-water-while-coding-so-i-built-kairo-4dd2</link>
      <guid>https://dev.to/azadhmhd/i-kept-forgetting-to-drink-water-while-coding-so-i-built-kairo-4dd2</guid>
      <description>&lt;p&gt;I spend a lot of time in front of a computer.&lt;/p&gt;

&lt;p&gt;And like probably a lot of developers, when I'm deep into work, I completely forget about everything around me.&lt;/p&gt;

&lt;p&gt;Drink water? Forgot.&lt;/p&gt;

&lt;p&gt;Take a break? Forgot.&lt;/p&gt;

&lt;p&gt;Look away from the screen? Forgot.&lt;/p&gt;

&lt;p&gt;Move around for a few minutes? Maybe after another three hours. 😅&lt;/p&gt;

&lt;p&gt;Living in the UAE makes this even easier. It's hot outside for a good part of the year, so it's very easy to stay indoors, sit in front of a screen, turn on the AC, and just keep working.&lt;/p&gt;

&lt;p&gt;At some point I thought:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why don't I just build something to remind me?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Kairo&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Kairo?
&lt;/h2&gt;

&lt;p&gt;Kairo is a small desktop companion designed to help build healthier computer habits.&lt;/p&gt;

&lt;p&gt;The idea is simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;💧 Remind me to drink water&lt;/li&gt;
&lt;li&gt;👀 Remind me to rest my eyes&lt;/li&gt;
&lt;li&gt;🚶 Remind me to take breaks&lt;/li&gt;
&lt;li&gt;🧘 Encourage healthier working habits&lt;/li&gt;
&lt;li&gt;📊 Keep track of what I've actually been doing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something that felt less like a notification from an operating system and more like a small companion sitting alongside me while I work.&lt;/p&gt;

&lt;p&gt;That's where the animated character comes in.&lt;/p&gt;

&lt;h2&gt;
  
  
  I wanted it to be private
&lt;/h2&gt;

&lt;p&gt;One thing I didn't want was another productivity application that required an account and sent all my activity to some server.&lt;/p&gt;

&lt;p&gt;So I designed Kairo around an &lt;strong&gt;offline-first&lt;/strong&gt; approach.&lt;/p&gt;

&lt;p&gt;The core application works locally and stores its data on the machine.&lt;/p&gt;

&lt;p&gt;AI is also completely optional.&lt;/p&gt;

&lt;p&gt;If you want AI-powered coaching, Kairo can connect to providers such as &lt;strong&gt;Ollama&lt;/strong&gt; or &lt;strong&gt;LM Studio&lt;/strong&gt;, so you can run the AI locally instead of sending your data to a cloud service.&lt;/p&gt;

&lt;p&gt;The application should still work perfectly fine without AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;Honestly, this wasn't originally meant to become a big open-source project.&lt;/p&gt;

&lt;p&gt;I built it because &lt;strong&gt;I needed it&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I kept noticing the same pattern in my own work:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Start coding → get focused → lose track of time → forget water → forget breaks → realize hours have passed.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If Kairo can interrupt that cycle even a little, then it has already done what I wanted.&lt;/p&gt;

&lt;h2&gt;
  
  
  A little bit about the engineering
&lt;/h2&gt;

&lt;p&gt;Although the idea is simple, I wanted to use the project to experiment with building a proper desktop application.&lt;/p&gt;

&lt;p&gt;Kairo is built with &lt;strong&gt;Flutter&lt;/strong&gt; and is currently focused on macOS.&lt;/p&gt;

&lt;p&gt;Some of the things I'm working with include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Flutter desktop&lt;/li&gt;
&lt;li&gt;SQLite for local persistence&lt;/li&gt;
&lt;li&gt;Event-driven communication&lt;/li&gt;
&lt;li&gt;Modular packages&lt;/li&gt;
&lt;li&gt;Native desktop integration&lt;/li&gt;
&lt;li&gt;Offline-first architecture&lt;/li&gt;
&lt;li&gt;Optional AI providers&lt;/li&gt;
&lt;li&gt;Local AI through OpenAI-compatible endpoints&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One design decision I'm particularly happy with is keeping AI &lt;strong&gt;out of the critical reminder path&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The reminder system shouldn't stop working just because an AI provider is unavailable.&lt;/p&gt;

&lt;p&gt;AI should enhance the experience, not become a dependency for the basic functionality.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's still a work in progress
&lt;/h2&gt;

&lt;p&gt;There are plenty of things I want to improve.&lt;/p&gt;

&lt;p&gt;I'm still figuring out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Better reminder behaviour&lt;/li&gt;
&lt;li&gt;More useful habit insights&lt;/li&gt;
&lt;li&gt;Better AI coaching&lt;/li&gt;
&lt;li&gt;More customization&lt;/li&gt;
&lt;li&gt;Improving the desktop experience&lt;/li&gt;
&lt;li&gt;Supporting more platforms&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And this is where I'd really like some feedback.&lt;/p&gt;

&lt;p&gt;If you spend most of your day working at a computer:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What would actually help you build healthier working habits?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not another productivity dashboard.&lt;/p&gt;

&lt;p&gt;Not another app asking you to track 20 things.&lt;/p&gt;

&lt;p&gt;Just something that quietly helps you remember the basic things we tend to forget when we're focused.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try Kairo
&lt;/h2&gt;

&lt;p&gt;The project is open source:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/azadhmhd/kairo" rel="noopener noreferrer"&gt;https://github.com/azadhmhd/kairo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you find it useful, give it a try.&lt;/p&gt;

&lt;p&gt;And if you have ideas, suggestions, or even things you think I've approached badly, I'd love to hear them.&lt;/p&gt;

&lt;p&gt;I built Kairo for myself, but maybe it can become something useful for other developers too.&lt;/p&gt;

&lt;p&gt;Maybe we can build a healthier workspace together.&lt;/p&gt;

</description>
      <category>buildinpublic</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
