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

@senoldogann/context-manager

v0.1.14

Published

LLM Context Manager MCP Server & CLI wrapper using npx

Readme

@senoldogann/context-manager

🧠 The Neural Backbone for Autonomous AI Agents

This is the Node.js wrapper for the Cognitive Codebase Matrix (CCM). It allows you to run the CCM CLI and MCP server without manually installing Rust or building from source.

🚀 Quick Start

[!IMPORTANT] Prerequisite: This tool relies on local AI models. You must have Ollama installed and running. CCM will automatically pull the required embedding model (nomic-embed-text) if missing, but the Ollama engine itself is required.

🔒 Privacy by Default

CCM uses a Local-First architecture by default. This means:

  • Your code is never sent to 3rd party servers (OpenAI, Anthropic, etc.).
  • All vector operations (Embedding) happen on your local machine.
  • You can safely use it for internal or confidential projects.

The easiest way to get started. This will automatically add CCM to your Claude or Antigravity configuration:

npx @senoldogann/context-manager install

2. Index your Project

Run the indexer in your project root:

npx @senoldogann/context-manager index --path .

⚒️ Manual Configuration (Alternative)

If you prefer to configure your AI editor manually without the install command, add this to your mcp_config.json:

{
  "mcpServers": {
    "context-manager": {
      "command": "npx",
      "args": ["-y", "@senoldogann/context-manager", "mcp"],
      "env": {
        "RUST_LOG": "info"
      }
    }
  }
}

💡 Pro-Tip: Enforcing CCM Usage

To ensure your AI agent (Claude, Cursor, etc.) always uses CCM for deep analysis, add this to your Custom Instructions or System Prompt:

"You are an expert architect. For any question about the codebase, DO NOT guess. Use the context-manager tools to explore the Graph and Vector store. Always prioritize search_code to find entry points and read_graph to navigate dependencies before proposing any code changes."


🇹🇷 Türkçe Özet

Bu paket, Cognitive Codebase Matrix (CCM) için Node.js wrapper'ıdır. Rust kurulumuna gerek kalmadan CCM araçlarını kullanmanızı sağlar.

Hızlı Kurulum:

npx @senoldogann/context-manager install
npx @senoldogann/context-manager index --path .

📦 What this package does

This package is a lightweight wrapper that:

  1. Detects your OS and CPU architecture.
  2. Downloads the pre-built Rust binaries from GitHub Releases if not already present.
  3. Automatically manages your global index and persistence in ~/.ccm.

For more details, visit the Main Repository.

🆕 v0.1.8 Updates

  • Multi-Language Support: Full indexing for .md, .json, .yaml, .toml and more.
  • Zero-Config: Improved project root detection.
  • Resilient Downloads: Fixed binary download issues with atomic file creation.

Built with ❤️ in Rust.