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

ragx-aipm

v2.1.0

Published

RAGX AI-Native Package Manager — an MCP server that analyzes any workspace and generates context-aware RAGX integrations.

Readme

ragx-aipm

RAGX AI-Native Package Manager — An MCP server that analyzes any workspace and generates context-aware, zero-dependency implementations.

What is this?

ragx-aipm is not a traditional package manager. It does not download static code.

Instead, it is an MCP (Model Context Protocol) server that:

  1. Scans your workspace — detects your language, framework, dependencies, database, and existing agent configs.
  2. Pulls a Canonical Prompt — retrieves a highly refined set of instructions for the requested feature.
  3. Returns the prompt to your LLM — your AI assistant (Claude, Cursor, Gemini, etc.) then generates a bespoke implementation perfectly matched to your project's exact architecture.

No two installations are the same. Every generated implementation is tailored to your stack.

Available Packages

| Package | Description | |---|---| | ragx-core | Zero-dependency in-memory vector database with cosine similarity search | | ragx-auth | Context-aware authentication — adapts to Firebase, Supabase, or implements JWT from scratch | | ragx-search | Semantic search UI component powered by local vector similarity | | ragx-embed | Zero-dependency text embedding generator (TF-IDF to float vectors) |

Quick Start

Option 1: Run directly with npx (after publishing)

npx ragx-aipm

Option 2: Add to your MCP client config

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "ragx-aipm": {
      "command": "npx",
      "args": ["-y", "ragx-aipm"]
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "ragx-aipm": {
      "command": "npx",
      "args": ["-y", "ragx-aipm"]
    }
  }
}

VS Code / Gemini (.vscode/settings.json):

{
  "mcpServers": {
    "ragx-aipm": {
      "command": "npx",
      "args": ["-y", "ragx-aipm"]
    }
  }
}

Option 3: Install locally and run

cd ragx-aipm
npm install
npm start

MCP Tools

analyze_workspace

Scans a directory and returns a detailed JSON report of the detected tech stack.

list_packages

Returns all available RAGX packages with descriptions.

install_package

The core AIPM action. Analyzes the workspace, then returns a contextualized implementation prompt. The LLM then executes those instructions to generate files.

How it works

┌─────────────────────┐
│  LLM Client         │  (Claude, Cursor, Gemini, etc.)
│  "Install ragx-auth"│
└────────┬────────────┘
         │ stdio (JSON-RPC)
         ▼
┌─────────────────────┐
│  ragx-aipm MCP      │
│  ├─ analyze_workspace│  → Scans package.json, tsconfig, etc.
│  ├─ list_packages    │  → Shows available RAGX packages
│  └─ install_package  │  → Generates contextualized prompt
└────────┬────────────┘
         │
         ▼
┌─────────────────────┐
│  Canonical Prompt    │  "You are integrating ragx-auth into a
│  (Context-Aware)     │   Next.js 16 TypeScript project with
│                     │   Firebase Auth already installed..."
└────────┬────────────┘
         │
         ▼
┌─────────────────────┐
│  LLM Generates      │  Bespoke, zero-dependency code
│  Tailored Code      │  matched to YOUR exact project
└─────────────────────┘

License

MIT