AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Sigmap Nvim

mcp-manojmallick-sigmap-nvim · by manojmallick

SigMap AI context engine — Neovim plugin. :SigMap, :SigMapQuery, statusline widget, auto-run on save. 96.9% token reduction, 80.0% hit@5.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add mcp-manojmallick-sigmap-nvim

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-manojmallick-sigmap-nvim)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Sigmap Nvim? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

sigmap.nvim

SigMap AI context engine — Neovim plugin

[](https://github.com/manojmallick/sigmap.nvim/releases/latest) [](LICENSE) [](https://neovim.io) [](https://nodejs.org)

80.0% retrieval hit@5 · 96.9% token reduction · 29 languages · Zero npm deps


What is SigMap?

SigMap extracts a compact signature map of your entire codebase — function names, class hierarchies, exported types — and writes it to .github/copilot-instructions.md. Every AI coding assistant reads that file as its first-message context.

This plugin brings SigMap into Neovim with commands, auto-run on save, a statusline widget, and :checkhealth integration.

Before SigMap: "I don't know your codebase — can you share some files?"
After SigMap:  "I can see your AuthService, UserRepository, 47 API routes…"

What's new in v4.0

  • Standalone release — independent version cycle from the SigMap CLI core
  • Compatible with SigMap CLI v6.0 (graph-boosted retrieval, incremental sig cache)
  • Install path corrected: 'manojmallick/sigmap.nvim' (no subdir needed)

Install

lazy.nvim

{
  'manojmallick/sigmap.nvim',
  config = function()
    require('sigmap').setup({
      auto_run    = true,   -- regen on BufWritePost for source files
      float_query = true,   -- show query results in a floating window
    })
  end,
}

packer.nvim

use {
  'manojmallick/sigmap.nvim',
  config = function()
    require('sigmap').setup({ auto_run = true })
  end,
}

vim-plug

Plug 'manojmallick/sigmap.nvim'

Then in your Lua config:

require('sigmap').setup({ auto_run = true })

Commands

| Command | Description | |---|---| | :SigMap [args] | Regenerate AI context file (passes args to the CLI) | | :SigMapQuery | TF-IDF ranked file retrieval in a floating window |


Configuration

require('sigmap').setup({
  auto_run    = false,  -- regen on BufWritePost for *.js/ts/py/go/rs/java/rb/lua
  binary      = nil,    -- nil: auto-detect (sigmap → npx sigmap → local gen-context.js)
  notify      = true,   -- vim.notify on completion
  float_query = true,   -- show :SigMapQuery results in a floating window
})

Statusline widget

Returns sm:✓ when context is

MIT © 2026 Manoj Mallick · Made in Amsterdam 🇳🇱

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.