<?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>Forem: Mohit Kumar Kushwaha</title>
    <description>The latest articles on Forem by Mohit Kumar Kushwaha (@cloudsuffers).</description>
    <link>https://forem.com/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>Forem: Mohit Kumar Kushwaha</title>
      <link>https://forem.com/cloudsuffers</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/cloudsuffers"/>
    <language>en</language>
    <item>
      <title>pmcli: local cli for managing those forgetful passwords</title>
      <dc:creator>Mohit Kumar Kushwaha</dc:creator>
      <pubDate>Sat, 25 Apr 2026 20:45:51 +0000</pubDate>
      <link>https://forem.com/cloudsuffers/pmcli-local-cli-for-managing-those-forgetful-passwords-5gfl</link>
      <guid>https://forem.com/cloudsuffers/pmcli-local-cli-for-managing-those-forgetful-passwords-5gfl</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%2Fbvxd93qkrmdsltmrsicu.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%2Fbvxd93qkrmdsltmrsicu.png" alt=" " width="800" height="834"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  a Local CLI Password Manager in Python
&lt;/h1&gt;

&lt;p&gt;I have been working on a small local password manager called PMCLI.&lt;/p&gt;

&lt;p&gt;The goal is simple: store credentials locally, encrypt the saved passwords, and retrieve them from the terminal without printing secrets directly to the screen.&lt;/p&gt;

&lt;p&gt;GitHub repo:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://github.com/KimtVak8143/pmcli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is not meant to replace a production password manager like 1Password or Bitwarden. It is a learning project for building a secure-ish CLI tool with clean Python structure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;Typer for the CLI&lt;/li&gt;
&lt;li&gt;cryptography for encryption&lt;/li&gt;
&lt;li&gt;Fernet for symmetric encryption&lt;/li&gt;
&lt;li&gt;PBKDF2 for deriving an encryption key from a phrase&lt;/li&gt;
&lt;li&gt;pyperclip for copying passwords to the clipboard&lt;/li&gt;
&lt;li&gt;JSON file storage&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The vault is stored locally at:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;~/.pmcli/vault.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Basic Usage
&lt;/h2&gt;

&lt;p&gt;After setup, the tool can be used like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pmcli add github.com
pmcli list
pmcli get github.com
pmcli reveal github.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The &lt;code&gt;get&lt;/code&gt; command shows only the username.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;reveal&lt;/code&gt; command does not print the password. It copies the password to the clipboard.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Structure
&lt;/h2&gt;

&lt;p&gt;I split the app into small modules:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pmcli/
├── main.py
├── crypto.py
├── storage.py
├── commands/
│   ├── add.py
│   ├── get.py
│   ├── reveal.py
│   ├── list_cmd.py
│   └── config.py
└── README.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The separation is intentional:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;main.py&lt;/code&gt; only registers commands&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;commands/&lt;/code&gt; contains CLI behavior&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;crypto.py&lt;/code&gt; handles encryption and decryption&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;storage.py&lt;/code&gt; handles reading and writing the vault&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This made the code easier to reason about as the project grew.&lt;/p&gt;

&lt;h2&gt;
  
  
  Encryption Design
&lt;/h2&gt;

&lt;p&gt;One important design change was separating the master password from the encryption phrase.&lt;/p&gt;

&lt;p&gt;At first, the master password was used directly for encryption and decryption. That worked, but it had a problem:&lt;/p&gt;

&lt;p&gt;if the master password changed, all existing passwords became unreadable.&lt;/p&gt;

&lt;p&gt;So I changed the design:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PMCLI_MASTER_PASSWORD=used to unlock reveal
PMCLI_ENCRYPTION_PHRASE=used to encrypt and decrypt stored passwords
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The master password is now used only as an access check before revealing a password.&lt;/p&gt;

&lt;p&gt;The encryption phrase is the stable secret used for encryption.&lt;/p&gt;

&lt;p&gt;That means the master password can be changed without breaking the vault, as long as the encryption phrase stays the same.&lt;/p&gt;

&lt;h2&gt;
  
  
  Adding a Credential
&lt;/h2&gt;

&lt;p&gt;The add command:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;asks for a username&lt;/li&gt;
&lt;li&gt;asks for the password&lt;/li&gt;
&lt;li&gt;validates empty input&lt;/li&gt;
&lt;li&gt;prevents accidental overwrite&lt;/li&gt;
&lt;li&gt;encrypts the password&lt;/li&gt;
&lt;li&gt;saves it in the vault&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The saved JSON looks roughly like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"github.com"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"username"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"user@example.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"password"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"gAAAAAB..."&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The password value is encrypted before it is written to disk.&lt;/p&gt;

&lt;h2&gt;
  
  
  Revealing a Password
&lt;/h2&gt;

&lt;p&gt;The reveal command:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;checks if the site exists&lt;/li&gt;
&lt;li&gt;asks for the master password&lt;/li&gt;
&lt;li&gt;validates it against the configured master password&lt;/li&gt;
&lt;li&gt;decrypts using the encryption phrase&lt;/li&gt;
&lt;li&gt;copies the password to the clipboard&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It intentionally does not print the password.&lt;/p&gt;

&lt;p&gt;That small behavior matters. Terminal history, screen sharing, and logs are all easy ways to accidentally leak secrets.&lt;/p&gt;

&lt;h2&gt;
  
  
  Configuration
&lt;/h2&gt;

&lt;p&gt;The local config lives in &lt;code&gt;.env&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PMCLI_MASTER_PASSWORD=your-reveal-password
PMCLI_ENCRYPTION_PHRASE=your-stable-encryption-phrase
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The real &lt;code&gt;.env&lt;/code&gt; file is ignored by git.&lt;/p&gt;

&lt;p&gt;Only &lt;code&gt;.env.example&lt;/code&gt; is committed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Things I Learned
&lt;/h2&gt;

&lt;p&gt;Some useful lessons from this project:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Keep CLI routing separate from business logic&lt;/li&gt;
&lt;li&gt;Do not print secrets if copying to clipboard is enough&lt;/li&gt;
&lt;li&gt;Never commit local secret config&lt;/li&gt;
&lt;li&gt;Think carefully before tying encryption to a changeable password&lt;/li&gt;
&lt;li&gt;Small command files are easier to test and modify&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;This was a fun project because it sits at the intersection of CLI design, encryption, local storage, and security tradeoffs.&lt;/p&gt;

&lt;p&gt;Even a small password manager forces you to think carefully about defaults:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What should be printed?&lt;/li&gt;
&lt;li&gt;What should be stored?&lt;/li&gt;
&lt;li&gt;What should be ignored by git?&lt;/li&gt;
&lt;li&gt;What happens when a user changes a secret?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The code is small, but the design decisions are real.&lt;/p&gt;

&lt;p&gt;That is what made this project worth building.&lt;/p&gt;

&lt;p&gt;You can find the code here:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://github.com/KimtVak8143/pmcli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>vibecoding</category>
      <category>cli</category>
      <category>passwordmanager</category>
      <category>python</category>
    </item>
    <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://forem.com/cloudsuffers/hellodev-scrum-powered-by-notion-19pd</link>
      <guid>https://forem.com/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>
