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

stackbrief

v1.0.16

Published

Visual codebase intelligence for AI coding tools

Readme

stackbrief

Visual codebase intelligence for AI coding tools.

npm version License: MIT Node.js


stackbrief scans your codebase and opens a local dashboard showing your architecture, modules, dependencies, and conventions. It gives AI tools like Claude Code and Cursor persistent context about your project so they never lose it between sessions. Works with Ollama, Claude, and OpenAI. No config files. No cloud.


Quick start

npx stackbrief scan

That is it. The dashboard opens at localhost:3000.


What you get

  • Interactive code map showing your full codebase architecture as a tree diagram
  • Dependency version comparison against the npm registry — see what needs updating at a glance
  • Convention detection: naming style, async patterns, error handling, module system
  • Context health score — how well your codebase is understood by AI tools
  • AI chat about your codebase, works with Ollama (free, local), Claude, or OpenAI
  • MCP server so Claude Code and Cursor pull context automatically before every session
  • Zero config, fully local, no cloud, no accounts

Screenshots

Welcome screen

Welcome

Overview

Overview

Modules

Modules

Code Map

Code Map

Dependencies

Dependencies

Conventions

Conventions

AI Settings

Settings


AI Chat

Configure any provider from the dashboard UI. No environment variables needed.

Ollama — recommended, free, local, private
Install from ollama.ai, pull any model, stackbrief detects it automatically.

Claude
Paste your API key from console.anthropic.com into Settings.

OpenAI
Paste your API key from platform.openai.com into Settings.


MCP Integration

stackbrief runs an MCP server on port 3001. Add this to your Claude Code or Cursor MCP config:

{
  "mcpServers": {
    "stackbrief": {
      "url": "http://localhost:3001"
    }
  }
}

Claude Code will pull your codebase context automatically before every session. You can also add the generated CLAUDE.md to your repo root — stackbrief writes it on every scan.


How it works

  1. Scans your repo recursively, reads file structure and source files
  2. Detects framework, architecture pattern, modules, dependencies, and coding conventions
  3. Opens a local dashboard at localhost:3000
  4. Generates CLAUDE.md in your repo root with structured context
  5. Starts an MCP server at localhost:3001
  6. Your AI tools pull context automatically on each session start

Requirements

Node.js 18 or above.


Development

git clone https://github.com/ragavtech/stackbrief
cd stackbrief
npm install
npm run build
node dist/cli.js scan /path/to/your/project

License

MIT


Built by ragavtech