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

lore-mcp

v0.1.5

Published

LORE — Architectural Memory for AI Coding

Readme


Demo


The Problem

Every new AI coding session starts fresh. No context. No history. No "why".

Your team decided to use PostgreSQL over MongoDB.
Your authentication uses JWT with 24h expiry.
4 of your API routes have no auth middleware.
Your bug-fix ratio is dangerously high.

The next AI session knows none of this.

The Solution

cd your-project
lore init

LORE reads your codebase and automatically extracts up to 24 architectural decisions including security gaps, risk patterns, and the WHY behind your choices.

Quick Start

npm install -g lore-mcp
cd your-project
lore init
lore status

Commands

| Command | Description | |---------|-------------| | lore init | Analyze project and extract all decisions | | lore status | View decisions by category with risk indicators | | lore decide "reason" | Record WHY behind a decision manually | | lore doctor | Diagnose LORE setup issues | | lore --version | Show version |

What LORE Detects

From dependencies:

  • Databases (PostgreSQL, MongoDB, MySQL, SQLite)
  • Auth (JWT, Passport, NextAuth)
  • Frameworks (Express, Fastify, Next.js, Hono)
  • Validation (Zod, Yup, Joi)
  • Caching (Redis, Memcached)
  • Security (bcrypt, helmet, cors, dotenv)

From source code:

  • API versioning patterns (/api/v1/)
  • Unprotected routes (security gaps)
  • Error handling coverage %
  • Architecture patterns (MVC, Service/Model)
  • Environment variables usage

From git history:

  • Project age and contributors
  • High churn files (risk indicators)
  • Bug-fix ratio (code quality signal)
  • Commit message quality score
  • Security-related commit patterns

Capture the WHY

lore decide "chose PostgreSQL over MongoDB because we need ACID transactions for payments"
lore decide "rejected Redis sessions — JWT scales better for our microservices"

MCP Integration (Claude Code / Cursor)

{
  "mcpServers": {
    "lore": {
      "command": "node",
      "args": ["/path/to/lore-mcp/dist/index.js"]
    }
  }
}

Built by

@TheEliotShift — Developer from Morocco 🇲🇦


If LORE saved you time → ⭐