<?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: Manish</title>
    <description>The latest articles on DEV Community by Manish (@manishmodak).</description>
    <link>https://dev.to/manishmodak</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%2F3648104%2F8f014e45-a20c-4d94-9e1b-8034a96f45cf.jpeg</url>
      <title>DEV Community: Manish</title>
      <link>https://dev.to/manishmodak</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/manishmodak"/>
    <language>en</language>
    <item>
      <title>I Built a Haunted Digital Pet That Feeds on Git Commits (with Kiro)</title>
      <dc:creator>Manish</dc:creator>
      <pubDate>Fri, 05 Dec 2025 14:39:24 +0000</pubDate>
      <link>https://dev.to/manishmodak/i-built-a-haunted-digital-pet-that-feeds-on-git-commits-with-kiro-596c</link>
      <guid>https://dev.to/manishmodak/i-built-a-haunted-digital-pet-that-feeds-on-git-commits-with-kiro-596c</guid>
      <description>&lt;h2&gt;
  
  
  The Resurrection of the Tamagotchi 🥚💀
&lt;/h2&gt;

&lt;p&gt;Remember digital pets? They were needy, pixelated, and died if you forgot them in your backpack.&lt;/p&gt;

&lt;p&gt;For the &lt;strong&gt;Kiroween Hackathon&lt;/strong&gt;, I decided to resurrect this concept—but for developers. Meet &lt;strong&gt;Necro-Pet&lt;/strong&gt;: a desktop companion that feeds on your &lt;code&gt;git commit&lt;/code&gt; history. If you code, it grows. If you stop, it turns into a ghost.&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%2Fhhr33v8cwqsc45nh83ef.gif" 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%2Fhhr33v8cwqsc45nh83ef.gif" alt="Beast Stage" width="600" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How I Built It (Solo)
&lt;/h3&gt;

&lt;p&gt;Building a desktop app with React, Electron, and real-time system watchers is a lot for one person in a weekend. Here is how I used &lt;strong&gt;Kiro&lt;/strong&gt; (an AI coding agent) to simulate a 3-person team.&lt;/p&gt;




&lt;h3&gt;
  
  
  1. The Architect: Spec-Driven Development 🏗️
&lt;/h3&gt;

&lt;p&gt;Most AI code turns into spaghetti after 500 lines. To fix this, I used &lt;strong&gt;Specs&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I wrote a markdown file defining the "Game Logic" separately from the code:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Persistence:&lt;/strong&gt; Linear health decay over 48 hours (so I don't die if I sleep).&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Feeding:&lt;/strong&gt; &lt;code&gt;git commit&lt;/code&gt; = +20 Health.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Evolution:&lt;/strong&gt; Level-based system (Egg -&amp;gt; Larva -&amp;gt; Beast).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Kiro read this spec and generated the &lt;strong&gt;Zustand&lt;/strong&gt; store with perfect type safety. It was like having a senior engineer review my architecture before I wrote a line of code.&lt;/p&gt;




&lt;h3&gt;
  
  
  2. The "Crypt Keeper" Hook 🪝
&lt;/h3&gt;

&lt;p&gt;I didn't want to manually input commits. I used a Kiro &lt;strong&gt;Agent Hook&lt;/strong&gt; to watch my file system. When I commit code, Kiro analyzes the diff and writes a "medieval fantasy" log entry into the app.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;em&gt;Me:&lt;/em&gt; &lt;code&gt;git commit -m "fix: resolve authentication bug"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;em&gt;Kiro Hook:&lt;/em&gt; "The necromancer hath repaired the fractures in the void..."&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  3. The Bridge: Real Weather via MCP ⛈️
&lt;/h3&gt;

&lt;p&gt;This is my favorite feature. The pet lives in &lt;em&gt;your&lt;/em&gt; world.&lt;/p&gt;

&lt;p&gt;Using the &lt;strong&gt;Open-Meteo MCP (Model Context Protocol)&lt;/strong&gt;, the app checks your local weather.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Raining outside?&lt;/strong&gt; It rains in the crypt.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Night time?&lt;/strong&gt; The app goes dark and spooky.&lt;/li&gt;
&lt;/ul&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%2Fkxh5dw06hncdgwsabx13.gif" 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%2Fkxh5dw06hncdgwsabx13.gif" alt="Rain-day" width="600" height="650"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Dev Hack:&lt;/strong&gt; I didn't read the Open-Meteo docs. I just turned on the MCP and asked Kiro to "wire it up." Kiro inspected the live API response and wrote the TypeScript interfaces for me. ⚡️&lt;/p&gt;




&lt;h2&gt;
  
  
  🎨 The Vibe: "Windows 95 Haunted House"
&lt;/h2&gt;

&lt;p&gt;I wanted it to look like software found on a cursed floppy disk from 1996.&lt;/p&gt;

&lt;p&gt;I used &lt;strong&gt;Vibe Coding&lt;/strong&gt; to generate the Tailwind config. I simply prompted: &lt;em&gt;"Make it look like a haunted GameBoy screen. Dark greens, scanlines, and blood red accents."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The result? A UI that feels cohesive and creepy, without me manually picking hex codes.&lt;/p&gt;




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

&lt;p&gt;If you struggle with maintaining your coding streak, maybe you just need a monster to keep you company.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub Repo:&lt;/strong&gt; &lt;a href="https://github.com/ManishModak/necro-pet" rel="noopener noreferrer"&gt;Necro-Pet on GitHub&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Video Demo:&lt;/strong&gt; &lt;a href="https://youtu.be/VSRB3CIGBws" rel="noopener noreferrer"&gt;Watch on YouTube&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy Haunting! 🦇&lt;/p&gt;

</description>
      <category>kiro</category>
      <category>webdev</category>
      <category>electron</category>
      <category>hackathon</category>
    </item>
  </channel>
</rss>
