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

auto-git-ready

v1.1.0

Published

Professional AI-powered Git workflow automator

Readme

GitReady AI GitReady AI is a production-grade CLI utility designed to automate the most tedious parts of a developer's workflow: writing professional commit messages, generating project documentation, and auditing repository security—all powered by Google Gemini AI. alt text

alt text 🛠 Installation You can install GitReady AI globally via npm: code Bash $ npm install -g @payal-jat/gitready-ai ⚙️ Configuration Before running the tool, you need a Google Gemini API Key. Get your free key from Google AI Studio. Create a .env file in your project root or set a global environment variable: code Env GEMINI_API_KEY=your_api_key_here 🚀 Usage GitReady AI provides a suite of commands to handle your development cycle.

  1. Smart Commits & Documentation Analyze your staged changes, generate a professional commit message, and update your README automatically. code Bash $ git add . $ gitready commit How it works: AI Analysis: Reads your git diff to understand the logic of your changes. Commit Suggestion: Suggests a Conventional Commit (e.g., feat: add user auth). README Sync: Architectures a full README (if missing) or appends a summary of changes.
  2. Repository Security Audit Scan your repository for leaked secrets and get a "Repo Health Score." code Bash $ gitready audit What it checks: Secret Leaks: Scans for AWS Keys, GitHub Tokens, and Private Keys. Missing Docs: Checks if README.md or .gitignore are missing. Health Score: Gives you a score out of 100 based on best practices. 🧰 Technical Architecture This tool is built with a Modular Command Pattern, ensuring scalability and performance: AI Engine: Google Gemini 1.5 Flash. Git Interface: simple-git for seamless repository interaction. Security Engine: Custom Regex-based deep scanner. UX: Interactive prompts via inquirer and styled terminal output with chalk. 📝 Example Output Command: gitready commit code Text 🤖 AI Analyzing changes... ✨ AI Suggestion: "feat: implement modular command architecture for CLI" ? Would you like to update README.md with these changes? Yes ✅ README.md updated and staged. ? Ready to commit all changes? Yes 🚀 Success: Everything committed successfully! 👨‍💻 Author Developed by Payal Jat Feel free to contribute or reach out for suggestions!