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

jambavan

v2.0.2

Published

Local-first MCP memory and code intelligence that helps coding agents recall repo context, decisions, failures, and review impact.

Readme

Jambavan is a local-first Model Context Protocol server. It gives coding agents persistent, repository-aware context: an AST-backed symbol index, durable project decisions, a ledger of dead ends already tried, and branch review context.

No LLM calls. No telemetry. No code upload. Source-mutating and shell tools are off unless you turn them on.

60-second quick start

claude mcp add jambavan -- npx -y jambavan

Restart or reload the MCP host after registration. Then call the active MCP server in this order:

jambavan_doctor {}

If it reports source: cwd-fallback, bind the repository and awaken in one call:

jambavan_awaken { "root": "/absolute/path/to/repository" }

Otherwise awaken without a root:

jambavan_awaken {}

After either awaken call, index, watch, and request useful context:

jambavan_index {}
jambavan_watch { "action": "start" }
jambavan_context { "query": "buildReviewPack" }

The root-bearing jambavan_awaken call already performs the awaken step, so do not call it twice. A tool-input root can later be re-pointed to another repository inside the original fallback directory; roots fixed by JAMBAVAN_ROOT, MCP roots/list, or a project cwd cannot be re-pointed.

jambavan_doctor above inspects the active MCP process, including its resolved root, tool count, loaded index, and watcher. npx jambavan doctor is a separate, short-lived shell process: it is useful for launch-environment and parser checks, but it cannot report the active MCP server's in-memory index or watcher.

Supported hosts and languages

Jambavan uses stdio MCP, so the same npx -y jambavan command works with any compatible host. Documented setup paths are:

| Host | Registration | |---|---| | Claude Code | claude mcp add jambavan -- npx -y jambavan | | Codex CLI | codex mcp add jambavan -- npx -y jambavan | | Cursor | ~/.cursor/mcp.json or project .cursor/mcp.json | | Continue | ~/.continue/config.yaml (Agent mode) | | Other stdio MCP clients | command npx, args -y, jambavan |

The index supports TypeScript, TSX, JavaScript, JSX, Python, Go, Rust, and Java. Supported extensions are .ts, .tsx, .mts, .cts, .js, .jsx, .mjs, .py, .go, .rs, and .java.

Measured, not claimed

This historical aggregate was produced with Jambavan v2.0.0 against react/react at commit 9ceb1e7: 4,615 files, 20,595 symbols, Node 24 on macOS arm64.

| | Result | |---|---| | Context tokens vs reading every matching file | 9,207 instead of 261,816 — 96% less | | Cold index | 8.5 s (552 files/s) | | Unchanged re-index | 1.2 s (7.2x faster) | | Context retrieval | 1.2–3.6 ms per query | | Tool schema your host pays for every request | 20 tools, 3,423 tokens (down from 38 tools / 5,680 in 1.x) |

Re-run the same pinned methodology from a clean temporary directory:

WORKDIR="$(mktemp -d)"
git clone --branch v2.0.0 --depth 1 https://github.com/beingmartinbmc/jambavan.git "$WORKDIR/jambavan"
git init "$WORKDIR/react"
git -C "$WORKDIR/react" remote add origin https://github.com/react/react.git
git -C "$WORKDIR/react" fetch --depth 1 origin 9ceb1e7
git -C "$WORKDIR/react" checkout --detach FETCH_HEAD
cd "$WORKDIR/jambavan"
npm ci
npm run build
JAMBAVAN_ROOT="$WORKDIR/react" node dist/benchmark.js

This re-runs the code and inputs; it does not recreate the original machine or timing conditions, so exact timings can differ. The historical aggregate says five auto-derived queries, but only four per-query rows survive in the React proof card. Those four rows do not sum to the aggregate, and the missing raw row is not reconstructed. The surviving rows still show the non-uniform result: one saved 99%, another only 42% because its matches lived in tiny fixture files. This is a retrieval benchmark; it measures token cost and latency, not task correctness.

Why it exists

Without an index or saved memory, rediscovering a project costs work proportional to the area searched: O(n) files opened, every session, forever. Jambavan persists that work. Index refresh still discovers and hashes candidate files in O(n files), but reparses only files whose content changed.

In the Ramayana, before Hanuman's leap to Lanka, Jambavan reminds him of the strength he already possesses. This project borrows that metaphor narrowly: it restores access to knowledge that was already indexed or stored. It does not make a model smarter.

The remaining Sanskrit names are descriptive: mool kaaran means root cause, praman means evidence, yukti means strategy, vibhaajan means decomposition, Vibhishana Niti means disciplined counsel or rules, rin mochan means debt release, and sankshipta means concise or compressed.

Install

The installers attempt to register Jambavan only for hosts they can detect. Claude Code and Codex use their CLIs; Cursor requires an existing ~/.cursor directory and valid JSON if the config already exists. Continue requires an existing ~/.continue directory; the installer creates config.yaml only when it is absent and otherwise prints an entry for you to merge. A detected host can still reject registration, so review the installer result.

On macOS, Linux, WSL, or Git Bash:

curl -fsSL https://raw.githubusercontent.com/beingmartinbmc/jambavan/main/install.sh | bash

On Windows, in PowerShell 5.1+:

irm https://raw.githubusercontent.com/beingmartinbmc/jambavan/main/install.ps1 | iex

Needs Node >=20.19.0 <27. The scripts are designed to skip undetected hosts and preserve unrelated MCP entries, but registration remains conditional on each host and existing config being usable. As with any internet shell script, read it before piping it into a shell.

Manual registration

Same MCP command everywhere: npx -y jambavan.

| Host | Setup | |---|---| | Claude Code | claude mcp add jambavan -- npx -y jambavan | | Codex CLI | codex mcp add jambavan -- npx -y jambavan | | Cursor | add to .cursor/mcp.json | | Continue | add to ~/.continue/config.yaml | | Any MCP client | command: npx -y jambavan |

Cursor (~/.cursor/mcp.json global, or .cursor/mcp.json per project)

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

Continue (~/.continue/config.yaml)

name: Local config
version: 1.0.0
schema: v1
mcpServers:
  - name: Jambavan
    command: npx
    args:
      - -y
      - jambavan

Restart or reload the host after any config change, then follow the 60-second quick start, beginning with the MCP jambavan_doctor. Continue exposes MCP tools only in Agent mode.

Check installed and published versions:

npx jambavan --version
npm view jambavan version

To uninstall, run claude mcp remove jambavan or codex mcp remove jambavan; for Cursor and Continue, delete the jambavan entry. Repository indexes under <repo>/.jambavan/ and memory/failure documents under ~/.jambavan/memory/ are left intact.

The tools

Jambavan advertises 20 tools by default. JAMBAVAN_ALLOW_WRITE=1 adds write_file, patch_file, and jambavan_compress_prompt for 23; JAMBAVAN_ALLOW_BASH=1 adds bash for 21; enabling both advertises up to 24. Every advertised tool costs your host model tokens on every request whether or not it is called, so the default surface stays small.

| Group | Tools | What the agent gets | |---|---|---| | Sight | jambavan_index, jambavan_context, jambavan_watch, jambavan_doctor | AST-backed symbol index, token-budgeted context with bounded extracted call neighbors, optional heuristic test references and recent diff, live watching, and root health. | | Bridge | jambavan_graph, jambavan_impact | Code-graph report, query, and shortest path in one tool, plus changed-symbol inbound impact and heuristic test-file associations. | | Memory | jambavan_memory_store, jambavan_memory_read, jambavan_memory_forget, jambavan_memory_mine_session, jambavan_memory_status | Rootless local Markdown memory, logical collections, and explicit read-only MemPalace federation. | | Failure memory | jambavan_failure_store, jambavan_failure_search | Structured failure records plus an exact-command repeat guard in the opt-in bash tool. | | Review | jambavan_review_pack | Bounded branch review context: touched symbols, extracted caller candidates, heuristic test references, rin debt, and past failures. | | Debt | jambavan_debt_ledger | Harvests every deliberate-shortcut // rin: marker and flags the ones with no upgrade trigger. | | Compression | jambavan_compress_prompt | Deterministic prose shortening with protected spans for code, URLs, paths, versions, and env vars. Write-gated. | | Awakening | jambavan_awaken | Session protocol: what exists, when to use it, and this project's recent memories. | | Hands | read_file, search, list_files; opt-in write_file, patch_file, bash | Guarded project-root file, search, and shell tools. Mutating and shell tools are disabled unless enabled. |

Prompts

The discipline protocols are static text with no repository access, so they ship as MCP prompts rather than tools — they cost nothing per request and appear as slash commands in hosts that support them.

| Prompt | Use it | |---|---| | root_cause | Before debugging. Enforces observe → compare → hypothesize → fix; escalates at 3+ failed attempts. | | verify_gate | Before claiming tests pass, a build succeeds, or a bug is fixed. Demands fresh evidence. | | strategy_plan | Before multi-step work. Scales the plan to task size. | | decompose_task | When sub-units are genuinely independent. | | dev_rules | Vibhishana Niti: YAGNI first, stdlib before dependencies, shortest working diff. |

Recommended workflow

  1. Restart or reload the host after registration or config changes.
  2. jambavan_doctor {} to inspect the active MCP root, gates, storage, index, and watcher.
  3. If the source is cwd-fallback, call jambavan_awaken { "root": "/absolute/path/to/repository" }; otherwise call jambavan_awaken {}.
  4. jambavan_index {} then jambavan_watch { "action": "start" }.
  5. jambavan_context { "query": "<identifier or focused question>" } before touching unfamiliar code.
  6. root_cause / verify_gate / strategy_plan when debugging, claiming completion, or planning.
  7. Run the smallest relevant check.
  8. jambavan_memory_store { "title": "...", "body": "...", "collection": "decisions" } to persist durable context.
  9. jambavan_failure_store to record dead ends with root cause and do-not-retry advice.
  10. jambavan_session_handoff {} to hand off; pass text to import one back.

What the output looks like

jambavan_context returns focused spans instead of whole files. This is an illustrative output shape, not captured output from the current repository:

# Jambavan Context: "review pack"
Symbols: 12 included, 18 dropped (budget: 8000 tokens)

## src/tools/review-pack.ts: buildReviewPack
kind: function · score: 0.92
Uses git diff to list touched files, maps symbols from the index, adds callers via graph,
heuristic test references via test-map, and risk flags for rin debt / missing tests / failures.

jambavan_review_pack { "base": "main" } turns a branch into reviewer-oriented context. This example is illustrative:

# Jambavan Review Pack
Base: main
Touched files: src/mcp/server.ts, src/mcp/tool-aliases.ts

src/mcp/server.ts
- touched symbols: startServer, handleToolCall
- callers: dist/index.js -> startServer
- heuristic test references: test/tool-aliases.test.ts
- risk flags: write-gated tool alias; verify disabled-tool listing

jambavan_failure_search { "query": "timeout" } surfaces a prior dead end before another retry. This example is illustrative:

FailureRecord: flaky auth test timeout
Root cause: unawaited promise in token refresh mock.
Do not retry: increasing the test timeout; it hid the race.
Next check: run the focused auth test with fake timers enabled.

Privacy and safety

Code indexes and caches stay in the active repository's .jambavan/; memory and failure documents live in ~/.jambavan/memory by default. Both generated-state roots get a nested .gitignore with *. These operational writes still happen when source mutation is disabled.

Source-mutating and shell tools are not advertised unless you opt in:

| Tool(s) | Enable with | |---|---| | write_file, patch_file, jambavan_compress_prompt | JAMBAVAN_ALLOW_WRITE=1 | | bash | JAMBAVAN_ALLOW_BASH=1 |

Direct path arguments to file, search, and list tools, plus the bash working directory, are confined to JAMBAVAN_ROOT or the detected project root. The same guard refuses known secret-file basenames, extensions, and immediate parent directories unless JAMBAVAN_ALLOW_SECRETS=1. This is a direct-path guard, not content scanning, and it does not stop an enabled shell command from reading files.

bash uses a minimal no-color environment and blocks a few obvious footguns such as rm -rf /, git reset --hard, git clean -fx, and blind curl | sh. It redacts and stores failed-command records locally; once the same unresolved command fails unchanged again, a do-not-retry record can block another exact retry unless retry_known_failure=true. These checks are not a security boundary. Treat the tool like a local shell and sandbox the workspace if you need isolation.

MemPalace is never contacted during ordinary recall, context enrichment, or awakening — only when a memory read explicitly sets provider. See memory docs.

Configuration

| Env var | Default | Description | |---|---|---| | JAMBAVAN_ROOT | auto-detect | Project root to index and serve | | JAMBAVAN_SCOPE | Git-derived | Validated clone-independent scope override | | JAMBAVAN_MEMORY_HOME | ~/.jambavan/memory | Override for the root-independent OKF archive | | JAMBAVAN_MEMPALACE_COMMAND | mempalace-mcp | Executable for explicit read-only MemPalace calls | | JAMBAVAN_TOKEN_BUDGET | 8000 | Max approximate cl100k_base tokens in jambavan_context | | JAMBAVAN_DEV_MODE | full | Default dev_rules level (lite, full, ultra) | | JAMBAVAN_ALLOW_WRITE | off | Registers write_file, patch_file, jambavan_compress_prompt | | JAMBAVAN_ALLOW_BASH | off | Registers bash | | JAMBAVAN_ALLOW_OUTSIDE_ROOT | off | Disables direct-path project-root containment | | JAMBAVAN_ALLOW_SECRETS | off | Allows direct paths matching the secret-file guard | | JAMBAVAN_BASH_INHERIT_ENV | off | Passes full host env to bash | | JAMBAVAN_MAX_OUTPUT_CHARS | 100000 | Global cap on tool output | | JAMBAVAN_MAX_READ_BYTES | 5242880 | Max file size read_file loads |

Upgrading from 1.x

2.0 renamed the Sanskrit tool names to English and merged near-duplicate tools, cutting the advertised surface from 38 tools to 20 and the tools/list schema your host pays for on every request from 5,680 tokens to 3,423. Every old name still works — retired names are resolved internally, they are just no longer advertised, and tool-check fails the build if any of them stops dispatching.

| Was | Now | |---|---| | jambavan_mool_kaaran, root_cause | root_cause prompt | | jambavan_praman, verify_gate | verify_gate prompt | | jambavan_yukti, strategy_plan | strategy_plan prompt | | jambavan_vibhaajan, decompose_task | decompose_task prompt | | jambavan_vibhishana_niti, dev_rules | dev_rules prompt | | jambavan_rin_mochan | jambavan_debt_ledger | | jambavan_sankshipta | jambavan_compress_prompt | | jambavan_graph_report, _query, _path | jambavan_graph | | jambavan_diagnostics | jambavan_doctor | | jambavan_memory_get, _search, _recall | jambavan_memory_read | | jambavan_memory_invalidate, _delete | jambavan_memory_forget | | jambavan_session_export, _import | jambavan_session_handoff |

Claude Code plugin

This repo is also a Claude Code plugin marketplace:

/plugin marketplace add beingmartinbmc/jambavan
/plugin install jambavan@jambavan

Documentation

Contributing

Read CONTRIBUTING.md before proposing a change. Use the issue forms for bugs and focused feature requests, and report vulnerabilities privately through SECURITY.md.

npm run docs-check && npm run lint && npm test && npm run coverage