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

vbgraph

v1.0.0-rc.0

Published

Local-first code intelligence for AI agents, with first-class VB.NET and Delphi support. Fork of codegraph.

Downloads

158

Readme

vbgraph

Local-first code intelligence for AI coding agents — with first-class VB.NET and Delphi support.

vbgraph parses your codebase with tree-sitter (plus optional compiler-grade SCIP indexes), stores every symbol, edge, and file in a local SQLite knowledge graph, and serves it to AI agents over MCP. Agents answer structural questions — what calls this, what breaks if I change it, where is it defined — in one tool call instead of dozens of grep/read round-trips.

vbgraph is a fork of codegraph by Colby Mchenry (MIT), extended with VB.NET and Delphi extraction, SCIP ingestion for legacy .NET codebases, and ongoing divergent development.

  • 100% local — no API keys, no telemetry, no network calls. Your code never leaves your machine.
  • Deterministic — extraction is derived from the AST, not LLM-summarized.
  • Legacy-friendly — VB.NET (tier-0 tree-sitter + scip-dotnet), Delphi/Pascal (including DFM/FMX form files), alongside 18 modern languages.

Install

npx vbgraph

The interactive installer configures the MCP server and instructions for your agents — Claude Code, Cursor, Codex CLI, and opencode are supported.

Then, in each project you want indexed:

cd your-project
vbgraph init -i

What agents get

Nine MCP tools over the graph:

| Tool | Answers | |---|---| | vbgraph_explore | "How does X work?" — line-numbered source across many files in one call | | vbgraph_search | "Where is X defined?" — full-text symbol search (FTS5), filterable by framework tag | | vbgraph_callers / vbgraph_callees | "What calls Y?" / "What does Y call?" — with confidence tiers | | vbgraph_impact | "What would break if I changed Z?" — impact radius | | vbgraph_node | Signature / source / docstring of a symbol | | vbgraph_context | Focused context bundle for a task or area | | vbgraph_files | File listing under a path | | vbgraph_status | Index health |

The graph stays fresh automatically: a native file watcher (FSEvents / inotify / ReadDirectoryChangesW) re-indexes changed files with debounce, zero config.

Languages

TypeScript / TSX, JavaScript / JSX, Python, Go, Rust, Java, C, C++, C#, VB.NET, PHP, Ruby, Swift, Kotlin, Dart, Scala, Svelte, Vue, Liquid, Pascal / Delphi (.pas, .dpr, .dpk, .lpr, plus DFM/FMX form files).

Framework-aware route extraction covers Express, Django, Flask, FastAPI, Laravel, Rails, Spring, Gin, Axum, ASP.NET, Vapor, React Router, SvelteKit, and Vue/Nuxt.

Compiler-grade precision via SCIP

Where a SCIP indexer is installed (scip-dotnet for C#/VB.NET, scip-java, scip-typescript, scip-python, and more), vbgraph ingests its output and layers compiler-accurate symbols and references on top of the tree-sitter baseline:

vbgraph index --scip-auto      # detect installed indexers and run them
vbgraph index --scip out.scip  # or ingest an existing index (CI-friendly)

CLI

vbgraph install     # configure agents (same as bare `npx vbgraph`)
vbgraph init        # initialize .vbgraph/ in a project
vbgraph index       # (re)index
vbgraph sync        # incremental sync
vbgraph status      # index health, backend (native/wasm), SCIP coverage
vbgraph query <q>   # search from the terminal
vbgraph affected <file>  # impact analysis
vbgraph serve --mcp # run the MCP server (agents do this for you)

Requires Node 18–24. SQLite runs on better-sqlite3 (native) with a transparent node-sqlite3-wasm fallback.

License

MIT — see LICENSE. Original work Copyright (c) 2026 Colby Mchenry (codegraph); vbgraph modifications Copyright (c) 2026 Huigang Zuo.