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

@xynogen/pix-graph

v0.2.1

Published

Pi extension — native TS code knowledge graph (extract, cluster, analyze, query)

Downloads

427

Readme

@xynogen/pix-graph

Native-TS code knowledge graph — extract, cluster, analyze, and query a codebase without Python or an external service. TS/JS is parsed with the TypeScript compiler API into a graph of files and symbols; communities are found with Louvain; questions are answered by BFS/DFS traversal over the graph.

Ships three ways: a model-callable graph tool, a CLI, and a library. Standalone/opt-in — not bundled by pix-core, so the one recurring tool schema is only present when you install it.

graph tool

One tool, two modes:

| Call | Effect | |---|---| | graph(action:"build", path?) | (Re)build/update the graph from source into .pi/pix-graph/. Run again after edits to refresh. | | graph(action:"query", question, dfs?) | Answer a codebase question by traversing the existing graph. BFS (default) for broad context, dfs:true to trace a path. |

pix-nudge also drops a one-line reminder to prefer graph(action:"query") over grepping when .pi/pix-graph/graph.json exists (it also detects a legacy graphify-out/graph.json). Output lives under the gitignored .pi/ dir.

CLI

pix-graph build [path] [--out DIR] [--root DIR]   # extract + cluster + analyze
pix-graph query "<question>" [--graph FILE] [--dfs] [--depth N]
pix-graph path "<from>" "<to>" [--graph FILE]      # shortest path between nodes

build writes into --out (default .pi/pix-graph/):

| Output | Description | |---|---| | graph.json | Full graph: nodes, links, community assignments | | graph.cleaned.json | Inferred calls edges validated against real TS bindings; false ones removed | | GRAPH_REPORT.md | Communities, god nodes, surprising cross-file connections |

Library

import { buildCodeGraph, query, analyzeGraph } from "@xynogen/pix-graph";

const result = buildCodeGraph("src", process.cwd(), ".pi/pix-graph");
// → { nodes, links, communities, outputDir }

| Export | Purpose | |---|---| | collectFiles, extract | Walk a tree and parse TS/JS into { nodes, links } | | buildGraph, cluster, cohesionScore, scoreAll | Assemble + Louvain community detection | | godNodes, surprisingConnections | Graph analysis | | query, shortestPath | Traversal over a built graph | | renderGraphReport | Human-readable report | | analyzeGraph, renderPatternReport | Validate/clean an existing graph + extract repeated patterns | | buildCodeGraph | Full pipeline orchestrator |

The graph JSON schema (nodes/links/hyperedges, EXTRACTED/INFERRED confidence) is compatible with external graphify — a graph built by either tool works with the other's query.

Scope ceilings

  • TS/JS only. Other languages need a tree-sitter extractor (not built). Upgrade path: add per-language extractors behind collectFiles.
  • Louvain, not Leiden. Leiden needs the native graspologic library. Upgrade path: add a Leiden refinement pass over the Louvain communities.
  • Lexical query seeds, no embeddings. Upgrade path: rank seed nodes with a similarity model if recall proves weak.
  • Code only. For docs, PDFs, images, or video, use external graphify.

Install

pi install npm:@xynogen/pix-graph

Standalone/opt-in — not bundled by @xynogen/pix-core. Install it directly if you want code-graph Q&A; the one recurring graph tool schema is only present when it's installed.

Full distro

Source: github.com/xynogen/pix-mono

To install the complete pix suite (all packages + Pi itself):

curl -fsSL https://raw.githubusercontent.com/xynogen/pix-mono/main/scripts/install.sh | sh

License

MIT