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

reposentry

v1.0.3

Published

AI-powered codebase intelligence platform (docs + architecture + security + CI + tests + performance)

Readme

RepoSentry

AI-powered codebase intelligence (docs, diagrams, security, CI/CD)

Analyze any project and generate production-ready docs, architecture diagrams, security audits, CI/CD suggestions, tests, and a health grade — powered by GitHub Copilot CLI.

DEV.to challenge postnpmGitHub

License: MIT Node.js TypeScript


What It Does

Point RepoSentry at any codebase and it generates a full intelligence report:

| Engine | What you get | |--------|-------------| | Documentation | README, API docs, Setup guide, Contributing guide, Changelog, FAQ | | Architecture | Mermaid diagrams, dependency graphs, component maps | | Security | Vulnerability scan, threat model | | CI/CD | Pipeline + infra suggestions | | Testing | API test collection, HTTP templates, Postman export | | Performance | Anti-pattern detection | | Collaboration | PR templates, issue templates, CODEOWNERS, onboarding (git repos only) | | Health Report | Weighted score, letter grade, trend tracking |


Quick Start

# Install from npm
npm i -g reposentry

# Instant demo (no analysis needed)
# This repo includes a pre-generated .reposentry/ output so you can preview immediately.
git clone https://github.com/MaheshDoiphode/reposentry.git
cd reposentry
reposentry serve
# open http://localhost:3000

# (or) install from source
# git clone https://github.com/MaheshDoiphode/reposentry.git
# cd reposentry
# npm install && npm run build && npm link

# Faster runs: target specific engines (recommended for first try)
cd path/to/any-repo
reposentry analyze --docs --architecture --health --depth quick --force
reposentry serve
# open http://localhost:3000

Requires: Node.js ≥ 18 • GitHub Copilot CLI (requires active Copilot subscription)

First time? Run copilot once to authenticate via /login, or set GH_TOKEN with a PAT that has "Copilot Requests" permission.


Commands

reposentry                  # Interactive mode — pick what to do
reposentry analyze          # Full analysis → .reposentry/
reposentry fix              # Auto-fix detected issues (missing LICENSE, CI, etc.)
reposentry compare          # Compare scores across analysis runs
reposentry serve            # Preview reports at localhost:3000
reposentry badge            # Generate shields.io health badge
reposentry init             # Interactive setup wizard

Key Flags

reposentry analyze --docs --security  # Run specific engines only
reposentry analyze --all              # Override config, run everything
reposentry analyze --depth deep       # Thorough analysis
reposentry analyze --format json      # Machine-readable output
reposentry analyze --model <model>    # Pick Copilot model
reposentry analyze --force            # Overwrite existing output
reposentry analyze --ignore "dist/**" # Skip patterns

Screenshots

RepoSentry includes a preview UI (reposentry serve) so you can browse every generated report.

Full analysis run

Copilot-powered fixes

Health report

Architecture (report + diagram)

Threat model diagram

Production guide


Configuration

Optional — works out of the box. Create reposentry.config.js or add to package.json:

// reposentry.config.js
export default {
  output: '.reposentry',
  depth: 'standard',
  engines: { docs: true, security: true, ci: true },
  ignore: ['node_modules', 'dist'],
};

Score History & Comparison

Every reposentry analyze saves scores to a persistent history. Run reposentry compare to see how your project has improved over time — per-category breakdown with trend arrows.

Preview reports in the browser with reposentry serve, including an interactive score comparison view.


Requirements

  • Node.js ≥ 18
  • GitHub Copilot CLI — requires an active Copilot subscription
    • Install: npm i -g @github/copilot or winget install GitHub.Copilot or brew install copilot-cli
    • Auth: run copilot and use /login, or set GH_TOKEN/GITHUB_TOKEN env var
  • Works on git repos and non-git projects (collaboration analysis requires git)

Development

npm install        # Install dependencies
npm run build      # Build
npm run dev        # Watch mode
npm test           # Run tests (vitest)

License

MIT © RepoSentry Contributors