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

@elysiumoss/grepo

v0.4.0

Published

AI-powered GitHub repository management CLI — generate READMEs, topics, descriptions, and more using Gemini

Readme

grepo

Overview

grepo automates the heavy lifting of repository maintenance. By integrating with LLM providers like Google Gemini, it intelligently analyzes your codebase to generate professional READMEs, suggest relevant repository topics, and craft repository descriptions.

flowchart TD
    User["User Command"] --> CLI["grepo CLI"]
    CLI --> GH["GitHub API / Gitingest"]
    GH -->|Repo Context| CLI
    CLI --> LLM["LLM (Gemini)"]
    LLM -->|Analysis/Doc Content| Generator["Documentation Generator"]
    Generator --> Output["Output (README/Mermaid)"]

Installation

Ensure you have Bun installed, then install grepo globally:

bun add -g @elysiumoss/grepo

Usage

Generate a new README.md for a repository:

grepo readme https://github.com/owner/repo --format md --push

Automatically update repository topics based on code analysis:

grepo topics https://github.com/owner/repo --apply --merge

CLI Reference

| Command | Description | | :--- | :--- | | readme | Generate and optionally push a README documentation file | | topics | Analyze code and suggest/apply repository topics | | describe | Generate a repository description and detect homepage URLs | | summary | Provide a comprehensive summary of the repository | | tech | List technologies, frameworks, and tools used | | improve | Suggest 5 specific, actionable improvements |

Options:

  • --format md|mdx: Output format (default: md)
  • --push: Push the generated file directly to the GitHub repository
  • --apply: Apply changes (topics/description) directly to the GitHub API
  • --dry-run: Preview changes without writing or pushing
  • --model <id>: Manually specify the LLM model to use

Configuration

grepo requires authentication for repository access and AI analysis. Configure these via environment variables or a .env file:

  • GEMINI_API_KEY: Required for AI code analysis.
  • GH_TOKEN or GITHUB_TOKEN: Required for pushing files, updating topics, or repository descriptions.

Example .env file:

GEMINI_API_KEY=AIzaSy...
GH_TOKEN=ghp_...

Development

  1. Clone the repo:
    git clone https://github.com/ElysiumOSS/grepo
    cd grepo
    bun install
  2. Build the project:
    bun run build
  3. Run tests:
    bun run test

See .github/CONTRIBUTING.md and .github/DEVELOPMENT.md for detailed guidelines.

License

This project is licensed under the MIT License.