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

sigmap

v7.18.0

Published

97% token reduction for AI coding. Extracts function & class signatures with TF-IDF ranking to feed only the right files to Claude, Cursor, Copilot, Aider, Windsurf, local LLMs & MCP. Zero dependencies, runs offline via npx.

Downloads

6,784

Readme

⚡ SigMap

SigMap finds the right files before your AI answers.

npm version npm downloads CI Zero deps License: MIT GitHub Stars Star History Chart Discover on ShyPD


Try it now

No install required. Run instantly on any machine:

npx sigmap
npx sigmap ask "Where is auth handled?"

Zero config. Zero dependencies. Under 10 seconds.


What is SigMap?

SigMap extracts function and class signatures from your codebase and feeds the right files — not the whole repo — to your AI.

Model-agnostic. Works with:

  • Cloud LLMs: Claude, GPT-4, Copilot, Gemini
  • Open-source agents: OpenCode, Aider, OpenHands, Cline
  • Local LLMs: Ollama, llama.cpp, vLLM (no API keys, full privacy)
  • Any editor: VS Code, Cursor, Windsurf, Neovim, JetBrains
  • Any model: Use what you want, no vendor lock-in

Why SigMap?

  • 75.6% hit@5 — right file found in top 5 results (vs 13.6% baseline)
  • 97.0% token reduction — average across 21 real repos
  • 52.2% task success rate — up from 10% without context
  • 1.72 prompts per task — down from 2.84 (39.4% fewer retries)
  • 31 languages supported — TypeScript, Python, Go, Rust, Java, R, and 25 others
  • No vendor lock-in — works with any AI assistant or local LLM
  • No API costs — use local models (Ollama, llama.cpp, vLLM) with zero token fees
  • Full privacy — keep your code and context on your machine
  • Zero npm dependenciesnpx sigmap on any machine

Replace this with SigMap

| Without SigMap | With SigMap | |---|---| | ❌ Guessing which files are relevant | ✅ Right file in context — 76% of the time | | ❌ Sending the full repo to your AI | ✅ Minimal context — only what matters | | ❌ Embeddings / vector DB required | ✅ Grounded answers, no infra needed |


How it works

Ask → Rank → Context → Validate → Judge → Learn
  1. Asksigmap ask "Where is auth handled?" — ranked file list
  2. Rank — TF-IDF scores every file against your query
  3. Context — writes compact signatures to your AI's context file
  4. Validatesigmap validate — confirms right files are in scope
  5. Judgesigmap judge — scores answer groundedness against context
  6. Learnsigmap weights — boosts files that keep solving your tasks

Benchmark

Benchmark : sigmap-v7.0-main (21 repositories, including R language)
Date      : 2026-06-14

Hit@5          : 75.6%   (baseline 13.6%  — 5.6× lift)
Token reduction: 97.0%   (across 21 repos)
Prompt reduction : 39.4% (2.84 → 1.72 prompts per task)
Task success   : 52.2%   (baseline 10%)
Repos tested   : 21 (JavaScript, Python, Go, Rust, Java, R, C++, C#, Dart, Swift, Ruby, PHP, Scala, Kotlin, and more)

Measured on 90 coding tasks across 18 real public repos. No LLM API — fully reproducible.

Resources:


Install

Try without installing:

npx sigmap

Install globally:

npm install -g sigmap

Install per-project:

npm install --save-dev sigmap

Standalone binary — no Node.js required:

| Platform | Download | |---|---| | macOS Apple Silicon | sigmap-darwin-arm64 | | macOS Intel | sigmap-darwin-x64 | | Linux x64 | sigmap-linux-x64 | | Windows x64 | sigmap-win32-x64.exe |

Each binary ships with a .sha256 checksum. Verify a binary →

Volta:

volta install sigmap

Integrations

AI assistants — one run, all of them:

| Adapter | Output file | Used by | |---|---|---| | copilot | .github/copilot-instructions.md | GitHub Copilot, OpenCode | | claude | CLAUDE.md | Claude / Claude Code | | cursor | .cursorrules | Cursor, Cline | | windsurf | .windsurfrules | Windsurf | | openai | .github/openai-context.md | OpenAI API, Aider, local Ollama/llama.cpp | | gemini | .github/gemini-context.md | Google Gemini | | codex | AGENTS.md | OpenAI Codex (legacy) |

sigmap --adapter copilot   # default — works with Copilot, OpenCode
sigmap --adapter openai    # works with Ollama, llama.cpp, vLLM, Aider
sigmap --adapter claude    # works with Claude Code

Open-source agents & local LLMs:

Use SigMap with open-source tools and fully self-hosted setups:

IDE extensions:

| IDE | Install | Source | Features | |-----|---------|--------|----------| | VS Code | Marketplace · Open VSX | github.com/manojmallick/sigmap-vscode | Status bar health grade, stale context alerts, one-click regen | | JetBrains | Marketplace | github.com/manojmallick/sigmap-jetbrains | IntelliJ IDEA, WebStorm, PyCharm, GoLand — tool window + actions | | Neovim | lazy.nvim / packer / vim-plug | github.com/manojmallick/sigmap.nvim | :SigMap, :SigMapQuery float window, statusline widget |

MCP server — 10 on-demand tools for Claude Code and Cursor:

sigmap --mcp

Try it

# 1. Generate context for your project
npx sigmap

# 2. Ask a question — get ranked files
sigmap ask "Where is auth handled?"

# 3. Validate — confirm the right files are in scope
sigmap validate --query "auth login token"

# 4. Judge — score your AI's answer for groundedness
sigmap judge --response response.txt --context .context/query-context.md

# 5. Inspect health
sigmap --health

Start guide

| Who | Start here | |---|---| | 👶 New | Quick start guide — setup in 60 seconds | | ⚡ Daily | sigmap ask / sigmap validate / sigmap judge | | 🧠 Advanced | Context strategies · MCP setup | | 🏢 Teams | Config reference · CI setup |


Docs

sigmap.io

| Section | Link | |---|---| | CLI reference (32 commands) | cli.html | | Benchmark methodology | benchmark.html | | Config reference | config.html | | Roadmap | roadmap.html | | 31 languages | generalization.html |


Support

If SigMap saves you context or API spend, a ⭐ on GitHub helps others find it.

Report an issue · Changelog


Sponsor

SigMap is built and maintained by one developer, kept zero-dependency, offline, and free. If it saves your team context or API spend, sponsoring keeps it that way — and funds the benchmark CI, the sigmap.io domain, and ongoing supply-chain hardening.

💜 Become a sponsor → · see SPONSOR.md for tiers and exactly where your support goes. Any amount helps — even $1/mo — and a ⭐ or a share counts too.


Contributing

SigMap welcomes contributions!

Before submitting a PR:

  1. Read CONTRIBUTING.md
  2. Check Discussions → Announcements for workflow setup
  3. Target the develop branch (not main)
  4. Follow the contributor checklist

See .github/PULL_REQUEST_TEMPLATE.md for the PR checklist. All contributors are credited in the CHANGELOG and release notes.


Why not embeddings?

| | Embeddings | SigMap | |---|:---:|:---:| | Vector DB required | ✅ | ❌ | | Infrastructure to run | ✅ | ❌ | | Drift over time | ✅ | ❌ | | Deterministic results | ❌ | ✅ | | Zero-config setup | ❌ | ✅ | | Works offline | ❌ | ✅ |

  • No vector DB — signatures are plain text files committed to your repo
  • No infra — runs locally, zero cloud dependencies
  • No drift — regenerating is npx sigmap, not a reindex pipeline
  • Deterministic — same input always produces same ranked output
  • Faster — TF-IDF ranking runs in milliseconds, no embeddings to compute

31 languages

TypeScript · JavaScript · Python · Java · Kotlin · Go · Rust · C# · C/C++ · Ruby · PHP · Swift · Dart · Scala · Vue · Svelte · HTML · CSS/SCSS · YAML · Shell · SQL · GraphQL · Terraform · Protobuf · Dockerfile · TOML · XML · Properties · Markdown · R · GDScript

All implemented with zero external dependencies.

Full language table →


License

MIT © 2026 Manoj Mallick · Made in Amsterdam


Docs · Changelog · Roadmap · npm

Star on GitHub if SigMap saves you tokens.