<?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: Mohit Kumar Kushwaha</title>
    <description>The latest articles on DEV Community by Mohit Kumar Kushwaha (@cloudsuffers).</description>
    <link>https://dev.to/cloudsuffers</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%2F3815258%2F77ff5b17-60ed-40c1-8855-1d0ea3890f93.png</url>
      <title>DEV Community: Mohit Kumar Kushwaha</title>
      <link>https://dev.to/cloudsuffers</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cloudsuffers"/>
    <language>en</language>
    <item>
      <title>HelloDev - Scrum powered by Notion</title>
      <dc:creator>Mohit Kumar Kushwaha</dc:creator>
      <pubDate>Wed, 25 Mar 2026 17:29:17 +0000</pubDate>
      <link>https://dev.to/cloudsuffers/hellodev-scrum-powered-by-notion-19pd</link>
      <guid>https://dev.to/cloudsuffers/hellodev-scrum-powered-by-notion-19pd</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/notion-2026-03-04"&gt;Notion MCP Challenge&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  HelloDev — The Sprint Tracker That Runs Itself
&lt;/h1&gt;

&lt;blockquote&gt;
&lt;p&gt;No standups. No manual updates. Just ship.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;HelloDev&lt;/strong&gt; is an agentic sprint tracking system built for the modern SDLC — one where developers &lt;em&gt;shouldn't&lt;/em&gt; have to touch a project management tool to keep it accurate.&lt;/p&gt;

&lt;p&gt;The core idea: a developer runs &lt;code&gt;hellodev start bug-#3 --dev Alice&lt;/code&gt;, writes code, commits, and runs &lt;code&gt;hellodev done bug-#3&lt;/code&gt;. That's it. Everything else — Notion updates, activity logs, time tracking, commit counts — happens automatically in the background.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Problem It Solves
&lt;/h3&gt;

&lt;p&gt;Engineering teams waste real hours each week on ritual updates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Moving Jira/Notion cards manually&lt;/li&gt;
&lt;li&gt;Writing standup messages nobody reads&lt;/li&gt;
&lt;li&gt;Copy-pasting commit summaries into ticket comments&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;HelloDev eliminates this entirely by treating the &lt;strong&gt;developer's actual workflow&lt;/strong&gt; (git commits, coding sessions, CLI commands) as the source of truth — and syncing it directly to Notion.&lt;/p&gt;

&lt;h3&gt;
  
  
  Architecture
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Developer Machine
│
├── hellodev CLI           → POST /start, /done, /status
├── Git post-commit hook   → POST /commit (auto, no dev action)
└── VSCode Copilot Chat    → MCP tools (list_tasks, start_task, etc.)
        │
        ▼
Express Server (localhost:3333)
        │
        ├── Session Manager    (in-memory, single active task)
        ├── Timer + Idle Det.  (5-min idle threshold)
        └── Notion Client      (@notionhq/client v2.2.15)
                │
                ▼
        Notion Workspace
        ├── Sprint Board       (task lifecycle: Todo → In Progress → Done)
        ├── Activity Logs      (per-session: time, commits, lines changed)
        └── Developers         (team registry)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Key design decisions:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MCP server uses &lt;strong&gt;stdio transport&lt;/strong&gt; — runs as a subprocess in VSCode, zero network config&lt;/li&gt;
&lt;li&gt;MCP tools proxy to Express via axios — clean separation of concerns&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;@notionhq/client&lt;/code&gt; &lt;strong&gt;pinned to v2.2.15&lt;/strong&gt; — v5.x has breaking API changes, stay pinned&lt;/li&gt;
&lt;li&gt;CommonJS throughout (no TypeScript) — faster iteration, simpler deployment&lt;/li&gt;
&lt;li&gt;Git hook is pure bash + curl — no Node dependency in the hook itself&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What It Tracks Automatically
&lt;/h3&gt;

&lt;p&gt;Every session captures:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Metric&lt;/th&gt;
&lt;th&gt;Source&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Session start / end time&lt;/td&gt;
&lt;td&gt;Timer module&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Total hours coded&lt;/td&gt;
&lt;td&gt;Idle-aware timer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Commit count&lt;/td&gt;
&lt;td&gt;Git hook → POST /commit&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Commit messages&lt;/td&gt;
&lt;td&gt;Git hook (pipe-separated)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Files changed&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;git diff --stat&lt;/code&gt; in hook&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Lines added / removed&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;git diff --numstat&lt;/code&gt; in hook&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;All of this lands in a linked &lt;strong&gt;Activity Log&lt;/strong&gt; entry in Notion, related back to the Sprint Board task.&lt;/p&gt;




&lt;h2&gt;
  
  
  Video Demo
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Show us the code
&lt;/h2&gt;

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

&lt;h2&gt;
  
  
  How I Used Notion MCP
&lt;/h2&gt;

&lt;p&gt;Notion MCP is the backbone of HelloDev's intelligence layer — specifically what makes it &lt;em&gt;agentic&lt;/em&gt; rather than just a logging tool.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Integration
&lt;/h3&gt;

&lt;p&gt;HelloDev uses two separate MCP surfaces:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HelloDev MCP Server (custom, stdio):&lt;/strong&gt;&lt;br&gt;
Runs as a subprocess in VSCode via &lt;code&gt;mcp.json&lt;/code&gt;. Exposes 5 tools to GitHub Copilot Chat:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;list_tasks&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Pulls pending Sprint Board tasks for a developer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;start_task&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Marks task In Progress in Notion + starts timer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;complete_task&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Marks Done, seals the Activity Log&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;get_status&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Returns live session: elapsed time + commits&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;get_sprint&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Full sprint board overview&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This means a developer can type in Copilot Chat: &lt;em&gt;"What tasks do I have this sprint?"&lt;/em&gt; and get a live Notion query — no context switching, no browser tab.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Direct Notion API via &lt;code&gt;@notionhq/client&lt;/code&gt; :&lt;/strong&gt;&lt;br&gt;
Under the hood, every MCP tool call hits the Express server, which calls Notion directly.&lt;/p&gt;

&lt;h3&gt;
  
  
  What Notion MCP Unlocks
&lt;/h3&gt;

&lt;p&gt;Without MCP, HelloDev would be a CLI tool that talks to Notion. Useful, but closed. With MCP:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Copilot Chat becomes a sprint interface&lt;/strong&gt; — ask questions, get Notion data, trigger actions — all from the editor&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The system is composable&lt;/strong&gt; — future AI agents can call &lt;code&gt;list_tasks&lt;/code&gt; or &lt;code&gt;get_sprint&lt;/code&gt; as part of larger automated workflows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero context switching&lt;/strong&gt; — the developer's entire sprint lives inside their coding environment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The real unlock is that Notion stops being a destination you visit and becomes a &lt;strong&gt;data layer&lt;/strong&gt; your tools read and write automatically.&lt;/p&gt;




&lt;h3&gt;
  
  
  What's Next — Auto Standup Report delivered to your inbox
&lt;/h3&gt;

&lt;p&gt;The next phase generates a daily Notion page at EOD — summarizing every developer's activity from the last 24 hours:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tasks completed&lt;/li&gt;
&lt;li&gt;Total hours coded&lt;/li&gt;
&lt;li&gt;Commits made&lt;/li&gt;
&lt;li&gt;Active blockers (tasks still In Progress)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No meeting. No Slack message. Just open Notion Monday morning.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Built with Node.js · Express · Notion API · MCP SDK · Git hooks&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  🚀 What's Further Ahead — VSCode Extension
&lt;/h3&gt;

&lt;p&gt;The natural evolution of HelloDev is a &lt;strong&gt;first-class VSCode Extension&lt;/strong&gt; — &lt;br&gt;
eliminating even the CLI and making sprint tracking truly invisible to the developer.&lt;/p&gt;

&lt;h4&gt;
  
  
  What the Extension Would Do
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Auto-detect the active git repo and developer identity&lt;/li&gt;
&lt;li&gt;Show a status bar item: &lt;code&gt;⏱ bug-#3 — 1h 24m — 3 commits&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Trigger &lt;code&gt;start&lt;/code&gt;/&lt;code&gt;done&lt;/code&gt; via the Command Palette (&lt;code&gt;Ctrl+Shift+P → HelloDev: Start Task&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Surface pending sprint tasks in a dedicated sidebar panel (TreeView)&lt;/li&gt;
&lt;li&gt;Replace the git hook with a native VSCode &lt;code&gt;workspace.onDidSaveTextDocument&lt;/code&gt; listener&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>devchallenge</category>
      <category>notionchallenge</category>
      <category>mcp</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
