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

gitnova

v1.0.7

Published

AI-powered Git and GitHub CLI tool

Readme

GitNova: AI-Powered Git & GitHub CLI

GitNova is a high-performance, interactive CLI tool designed to streamline your Git and GitHub workflows using the power of advanced AI models (Gemini, DeepSeek, Groq). It transforms complex Git operations into a conversational experience, providing intelligent automation, security auditing, and guided repository management.


✨ Features Overview

  • 🗣️ Natural Language Git: Command your repository using plain English. Type "sync my changes" or "create a new branch called feature-x" and let the AI handle the rest.
  • 🚀 AI Auto Mode: Use gitnova --auto to automatically stage, generate a commit message, and push your changes in one go, complete with security safeguards.
  • 📝 AI Commit Messages: Automatically analyze staged diffs and generate concise, professional commit messages.
  • 🛡️ Security & Bloat Guard:
    • Staging Audit: Proactive AI scanning of file payloads before staging to prevent accidental leaks of credentials or binary bloat.
    • Push Safeguard: Scans unpushed commits for sensitive data before they hit the remote.
    • Codebase Scan: /ignore ai_scan finds missing .gitignore rules in your entire project.
  • 🩹 AI Auto-Healing: When Git commands fail (e.g., merge conflicts, detached HEAD), GitNova explains the error and proposes actionable solutions.
  • 🔗 Seamless GitHub Integration: Automatically detects missing remotes and guides you through linking existing repos or creating new ones via the GitHub CLI (gh).
  • 🤖 Multi-Provider Flexibility: Support for Google Gemini, DeepSeek, and Groq to balance speed and reasoning depth.
  • 🧭 Repository Onboarding: /onboard provides an AI-generated architectural summary and feature overview of any repository.

🛠️ Tech Stack

  • Core: Node.js (ES Modules)

  • AI Engines: Google Gemini, DeepSeek, Groq

  • CLI Framework: Commander.js & Inquirer.js

  • Git Integration: Simple-Git & GitHub CLI (gh)

  • Styling: Boxen, Chalk, Ora (Spinners), Gradient-String

    Install Globally

    npm install -g gitnova

🚀 Installation Instructions

Prerequisites

  1. Node.js: Version 18 or higher.
  2. Windows OS: GitNova is currently optimized and validated for Windows.
  3. Git & GitHub CLI: Recommended for full functionality. GitNova will offer to install these for you on Windows if they are missing.

Step-by-Step Setup

  1. Clone the Repository:

    git clone https://github.com/nourddinak/Gitnova.git
    cd Gitnova
  2. Install Dependencies:

    npm install

📖 Usage Guide

Starting GitNova

Launch the interactive assistant:

gitnova
# OR
npm start

⚡ Auto Mode

For near-instant synchronization, use the --auto flag:

gitnova --auto
# OR with a custom message:
gitnova --auto "feat: finalize documentation"

Auto Mode provides AI-generated commit messages and security scanning by default.

Conversational Commands

Once initialized, you can type commands like:

  • status - View current repository state.
  • commit my work - Stages changes and generates an AI commit message.
  • sync with origin - Performs a safe pull followed by a push.
  • switch to main - Changes your current branch.
  • explain this error - If a command fails, ask for an AI explanation.

Slash Commands

Access specialized tools and configuration by typing / in the prompt:

  • /onboard: Get an AI-generated project overview and architectural summary.
  • /info: View detailed repository and GitHub status.
  • /settings: Configure Auto Mode behavior (Ask, Auto-Ignore, Notify).
  • /provider: Switch between Gemini, DeepSeek, and Groq.
  • /model: Switch between specific AI models.
  • /ignore: Access advanced AI-driven .gitignore management.
  • /key: Update your API key.
  • /clear: Clear the terminal screen.
  • /help: Display the full help menu.

📂 Project Structure

Gitnova/
├── bin/
│   └── gitnova.js       # CLI Entry point
├── src/
│   ├── index.js         # Main orchestrator & Onboarding
│   ├── chat/
│   │   └── session.js   # Interactive REPL & Auto Mode logic
│   └── utils/
│       ├── ai.js        # Multi-provider AI & Prompt engineering
│       ├── git.js       # Simple-Git integration
│       ├── github.js    # GitHub CLI (gh) integration
│       └── system.js    # Environment checks & Auto-installers
└── package.json         # Dependencies & project metadata

🤝 Contribution Guidelines

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a feature branch (git checkout -b feature/AmazingFeature).
  3. Commit your changes (git commit -m 'Add some AmazingFeature').
  4. Push to the branch (git push origin feature/AmazingFeature).
  5. Open a Pull Request.

📄 License

This project is licensed under the MIT License.


Developed with ❤️ by nourddinak