<?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: Aashir Zayd</title>
    <description>The latest articles on Forem by Aashir Zayd (@aashirzayd).</description>
    <link>https://forem.com/aashirzayd</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%2F3814510%2Fb3ac7802-c8d2-4c78-98f6-90237a5d6703.png</url>
      <title>Forem: Aashir Zayd</title>
      <link>https://forem.com/aashirzayd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/aashirzayd"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Aashir Zayd</dc:creator>
      <pubDate>Wed, 11 Mar 2026 08:53:33 +0000</pubDate>
      <link>https://forem.com/aashirzayd/-4493</link>
      <guid>https://forem.com/aashirzayd/-4493</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/aashirzayd" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&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%2Fuser%2Fprofile_image%2F3814510%2Fb3ac7802-c8d2-4c78-98f6-90237a5d6703.png" alt="aashirzayd"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/aashirzayd/i-built-a-cli-that-writes-git-commit-messages-for-you-1fii" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;I built a CLI that writes Git commit messages for you&lt;/h2&gt;
      &lt;h3&gt;Aashir Zayd ・ Mar 9&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#cli&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#productivity&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#opensource&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>cli</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>javascript</category>
    </item>
    <item>
      <title>I built a CLI that writes Git commit messages for you</title>
      <dc:creator>Aashir Zayd</dc:creator>
      <pubDate>Mon, 09 Mar 2026 10:32:33 +0000</pubDate>
      <link>https://forem.com/aashirzayd/i-built-a-cli-that-writes-git-commit-messages-for-you-1fii</link>
      <guid>https://forem.com/aashirzayd/i-built-a-cli-that-writes-git-commit-messages-for-you-1fii</guid>
      <description>&lt;h2&gt;
  
  
  I Built a CLI That Helps Generate Git Commit Messages Automatically
&lt;/h2&gt;

&lt;p&gt;Writing commit messages is one of those small tasks that slows down development more than we expect.&lt;/p&gt;

&lt;p&gt;You finish implementing a feature, stage your files, and then pause for a moment thinking:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Should this be a &lt;code&gt;feat&lt;/code&gt; or &lt;code&gt;fix&lt;/code&gt;?&lt;/em&gt;&lt;br&gt;
&lt;em&gt;What scope should I use?&lt;/em&gt;&lt;br&gt;
&lt;em&gt;How should I phrase this commit?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;To make this process faster, I built a small tool called &lt;strong&gt;Smart Commit CLI&lt;/strong&gt;.&lt;/p&gt;


&lt;h2&gt;
  
  
  What is Smart Commit CLI?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Smart Commit CLI&lt;/strong&gt; is an interactive command-line tool that analyzes your staged files and helps generate clean, structured commit messages.&lt;/p&gt;

&lt;p&gt;Instead of manually thinking about commit formats, the CLI guides you through the process and suggests the appropriate commit type.&lt;/p&gt;

&lt;p&gt;The goal is simple: &lt;strong&gt;make Git commit messages faster and more consistent.&lt;/strong&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;p&gt;Smart Commit provides a few useful features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Commit type suggestions&lt;/strong&gt; based on staged files&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automatic scope detection&lt;/strong&gt; from folder structure&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Diff summary preview&lt;/strong&gt; before committing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Interactive CLI prompts&lt;/strong&gt; for structured commits&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Quick mode&lt;/strong&gt; for instant commits&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It follows the &lt;strong&gt;Conventional Commits&lt;/strong&gt; format, which keeps Git history clean and readable.&lt;/p&gt;

&lt;p&gt;Example commit:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;feat(auth): add login validation
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or with emoji:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;✨ feat(auth): add login validation
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Example Workflow
&lt;/h2&gt;

&lt;p&gt;Typical usage looks 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;git add &lt;span class="nb"&gt;.&lt;/span&gt;
smart-commit
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then the CLI guides you through the process:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Checking git status...

Staged files:
src/auth/login.js

Changes Summary:
Files: 1 | +20 additions | -3 deletions

Suggested commit type: feat

? Commit type: feat
? Scope: auth
? Commit message: add login validation
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Final commit:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;✨ feat(auth): add login validation
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;You can install it globally with npm:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; smart-commit-cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or run it instantly using &lt;code&gt;npx&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx smart-commit-cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  GitHub Repository
&lt;/h2&gt;

&lt;p&gt;If you’d like to try it or contribute, the project is open source:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/AashirZayd/smart-commit" rel="noopener noreferrer"&gt;https://github.com/AashirZayd/smart-commit&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I Built It
&lt;/h2&gt;

&lt;p&gt;This tool started as a small experiment to improve my own workflow.&lt;/p&gt;

&lt;p&gt;I often found myself spending unnecessary time writing commit messages or forgetting to follow conventional commit formatting.&lt;/p&gt;

&lt;p&gt;Smart Commit automates that process while still keeping developers in control of the final message.&lt;/p&gt;




&lt;h2&gt;
  
  
  Feedback Welcome
&lt;/h2&gt;

&lt;p&gt;If you’re a developer who values a clean Git history, I’d love to hear your thoughts.&lt;/p&gt;

&lt;p&gt;Suggestions, improvements, and contributions are always welcome.&lt;/p&gt;

&lt;p&gt;⭐ If you find the project useful, consider giving the repository a star.&lt;/p&gt;

</description>
      <category>cli</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
