npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

devpulse-cli-angad

v1.1.0

Published

AI-powered developer productivity tool

Readme

🚀 DevPulse CLI

npm version Node.js Gemini AI

DevPulse is an AI-powered command-line interface (CLI) tool designed to supercharge developer productivity. By leveraging Google's Gemini AI, DevPulse automates writing Git commits, performing code reviews, and generating Markdown changelogs—all directly from your terminal.


✨ Features

  • 🤖 Smart Commits: Analyzes your staged Git changes and generates a highly context-aware, interactive list of commit messages to choose from.
  • 🧐 Automated Code Review: Scans your latest commits and provides an instant, actionable code review highlighting good practices and potential bugs.
  • 📜 Changelog Generation: Reads your Git history and automatically compiles a clean, beautifully formatted CHANGELOG.md file.

📦 Installation

You can install DevPulse globally on your machine using npm:

npm install -g devpulse-cli-angad

---

## ⚙️ Configuration

DevPulse requires a Google Gemini API key to run. You can get one for free from the [Google AI Studio](https://aistudio.google.com/).

Set your API key as an environment variable in your terminal before running commands:

**Windows (PowerShell):**

```powershell
$env:GEMINI_API_KEY="your-api-key-here"

```

**Mac/Linux:**

```bash
export GEMINI_API_KEY="your-api-key-here"

```

---

## 💻 Usage

Once installed globally, you can run DevPulse from any Git repository on your machine using the `devpulse` command.

### 1. Write a Commit

Stage your files (`git add .`) and run:

```bash
devpulse commit

```

_The AI will read your diff, generate multiple professional commit messages, and let you select the best one via an interactive menu._

### 2. Review Code

After making a commit, run:

```bash
devpulse review

```

_The AI will review your most recent commit and print out feedback, architectural suggestions, and bug warnings._

### 3. Generate a Changelog

To generate a professional Markdown changelog from your recent history, run:

```bash
devpulse changelog

```

_This instantly creates or updates a `CHANGELOG.md` file in your root directory based on your last 10 commits._

---

## 🛠️ Tech Stack

- **Language:** TypeScript / Node.js
- **AI Integration:** `@google/genai` (Gemini 2.5 Flash)
- **CLI Framework:** `commander`
- **Interactive Prompts:** `inquirer`
- **Package Manager:** npm

---

## 🧠 Knowledge Gains & Development Journey

Building this tool was an incredible journey into bridging the gap between artificial intelligence and local developer environments. Key takeaways include:

- **CLI Architecture:** Mastered building global executable commands using Node.js, `commander`, and updating local system environments.
- **LLM Integration:** Learned how to effectively prompt and integrate Google's Gemini API directly into programmatic logic, rather than just web interfaces.
- **Process Execution:** Gained deep experience using Node's `child_process` (`execSync`) to seamlessly control Git operations entirely through code.
- **Registry Publishing:** Successfully navigated compiling TypeScript to JavaScript and publishing production-ready packages to the global npm registry (including bypassing 2FA security protocols).
- **Git Internals:** Mastered staging nuances, memory clearing (`git rm -r --cached`), and correctly configuring `.gitignore` safely in live projects.

```